/* Main Loader Container */
        .professional-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #87CEEB 0%, #E0F7FA 100%);
            z-index: 9999;
            font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
            overflow: hidden;
        }

        /* Connection Animation */
        .connection-ring {
            position: relative;
            width: 180px;
            height: 180px;
            margin-bottom: 40px;
        }

        .ring {
            position: absolute;
            border: 3px solid transparent;
            border-radius: 50%;
            animation: pulse 3s ease-out infinite;
        }

        .ring:nth-child(1) {
            width: 100%;
            height: 100%;
            border-top-color: #2a5bd7;
            border-bottom-color: #2a5bd7;
            animation-delay: 0.1s;
        }

        .ring:nth-child(2) {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-left-color: #2a5bd7;
            border-right-color: #2a5bd7;
            animation-delay: 0.3s;
        }

        .ring:nth-child(3) {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            border-top-color: #2a5bd7;
            border-bottom-color: #2a5bd7;
            animation-delay: 0.5s;
        }

        /* Professional Icon */
        .professional-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: #2a5bd7;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(42, 91, 215, 0.3);
            animation: iconFloat 3s ease-in-out infinite;
        }

        .professional-icon:before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 8px;
            background: #2a5bd7;
            border-radius: 5px 5px 0 0;
        }

        .professional-icon i {
            color: white;
            font-size: 40px;
        }

        /* Loading Text */
        .loader-text {
            margin-top: 20px;
            font-weight: 600;
            color: #2d3748;
            font-size: 22px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .loader-text:after {
            content: '';
            display: inline-block;
            width: 10px;
            animation: ellipsis 1.5s infinite;
        }

        /* Floating Professionals */
        .floating-professionals {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .professional {
            position: absolute;
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            animation: floatUp 4s linear infinite;
        }

        .professional i {
            color: #2a5bd7;
            font-size: 20px;
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(0.8); opacity: 0.7; }
        }

        @keyframes iconFloat {
            0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
            25% { transform: translate(-50%, -55%) rotate(2deg); }
            50% { transform: translate(-50%, -50%) rotate(0deg); }
            75% { transform: translate(-50%, -45%) rotate(-2deg); }
        }

        @keyframes ellipsis {
            0% { content: ''; }
            33% { content: '.'; }
            66% { content: '..'; }
            100% { content: '...'; }
        }

        @keyframes floatUp {
            0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { transform: translateY(-100px) scale(1); opacity: 0; }
        }

        /* Exit Animation */
        .professional-loader.fade-out {
            animation: fadeOut 1s cubic-bezier(0.8, 0, 0.2, 1) forwards;
        }

        @keyframes fadeOut {
            0% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(1.2); visibility: hidden; }
        }

        /* Cloud Background */
        .cloud {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0.7;
        }
                :root {
            --primary: #1e3a8a;
            --secondary: #1e40af;
            --accent: #f97316;
            --light-bg: #E5E7EB;
            --dark: #1f2937;
            --light: #f9fafb;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
        }

        /* Navbar */
        .navbar {
            transition: all 0.3s ease;
            padding: 1rem 2rem;
            background-color: transparent !important;
        }

        .navbar.scrolled {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }

        .navbar.scrolled .navbar-brand {
            color: var(--primary) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: white !important;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .nav-link {
            color: var(--dark) !important;
        }

        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 100%;
        }

        .btn-contact {
            background-color: var(--accent);
            color: white;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }

        .btn-contact:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
        }

        /* Mobile Menu */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 41, 55, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .offcanvas {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
        }

        .offcanvas-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .offcanvas-body {
            padding: 2rem;
        }

        .mobile-nav .nav-link {
            color: white !important;
            padding: 0.75rem 0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: block;
            transition: all 0.3s ease;
        }

        .mobile-nav .nav-link:hover {
            transform: translateX(10px);
            color: var(--accent) !important;
        }

        .mobile-nav .btn-contact {
            margin-top: 1.5rem;
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
            transition: transform 10s ease-in-out;
            transform: scale(1);
        }

        .hero-bg.active {
            transform: scale(1.1);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding-top: 80px;
        }

        .hero-text {
            flex: 1;
        }

        .welcome-text {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: white;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .hero-description {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-view {
            background-color: white;
            color: var(--dark);
            border: 1px solid #d1d5db;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }

        .btn-view:hover {
            background-color: #f3f4f6;
            transform: translateY(-2px);
        }

        /* Search Form */
        .search-section {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: -3rem;
            position: relative;
            z-index: 10;
        }

        .search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }

        .form-select, .form-control {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid #d1d5db;
        }

        .btn-search {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-search:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
        }

        /* Location Flags */
        .country-select {
            position: relative;
        }

        .country-select select {
            padding-left: 40px;
        }

        .country-flag {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 16px;
            background-size: cover;
        }

        /* Chat Assistant */
        .chat-assistant {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
            cursor: pointer;
        }

        .chat-bubble {
            background-color: white;
            border-radius: 50px;
            padding: 1rem 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            max-width: 300px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.5s ease-out forwards;
            animation-delay: 1s;
            transition: all 0.3s ease;
        }

        .chat-bubble:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .chat-text {
            font-size: 0.9rem;
            color: var(--dark);
        }

        /* Chat Modal */
        .chat-modal {
            position: fixed;
            bottom: 6rem;
            right: 2rem;
            width: 350px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            z-index: 101;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
            display: none;
            max-height: 70vh;
            flex-direction: column;
        }

        .chat-modal.active {
            transform: translateY(0);
            opacity: 1;
            display: flex;
        }

        .chat-header {
            padding: 1rem;
            background-color: var(--primary);
            color: white;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }

        .chat-header h5 {
            margin: 0;
            font-weight: 600;
        }

        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .chat-body {
            padding: 1rem;
            overflow-y: auto;
            flex-grow: 1;
        }

        .chat-message {
            margin-bottom: 1rem;
            padding: 0.75rem;
            border-radius: 8px;
            background-color: #f3f4f6;
        }

        .chat-message.bot {
            background-color: var(--light-bg);
        }

        .chat-message.user {
            background-color: var(--primary);
            color: white;
            margin-left: auto;
            max-width: 80%;
        }

        .chat-input {
            display: flex;
            padding: 1rem;
            border-top: 1px solid #e5e7eb;
        }

        .chat-input input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 8px 0 0 8px;
            outline: none;
        }

        .chat-input button {
            padding: 0.75rem 1rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
        }

        .faq-item {
            margin-bottom: 0.5rem;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 6px;
            transition: background-color 0.2s;
        }

        .faq-item:hover {
            background-color: #f3f4f6;
        }

        .contact-form {
            display: none;
        }

        .contact-form.active {
            display: block;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
        }

        .form-group textarea {
            height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 0.75rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: var(--secondary);
        }

        .chat-collapsed {
            height: 50px;
            overflow: hidden;
        }

        .chat-collapsed .chat-body,
        .chat-collapsed .chat-input {
            display: none;
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            .hero-text, .hero-slider {
                width: 100%;
            }
            .search-form {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .search-form {
                grid-template-columns: 1fr;
            }
            .chat-modal {
                width: 300px;
                right: 1rem;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .chat-bubble {
                max-width: 250px;
                padding: 0.75rem 1rem;
            }
            .chat-modal {
                width: 280px;
            }
        }
         @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
    
    .professionals-section {
        padding: 80px 0;
        font-family: 'Inter', sans-serif;
    }
    
    .professional-card {
        min-width: 320px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        margin-right: 24px;
        flex-shrink: 0;
    }
    
    .professional-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1) !important;
    }
    
    .professionals-slider {
        padding: 30px 0;
    }
    
    .professionals-slider-container {
        overflow: hidden;
    }
    
    .professionals-slider-track {
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
    }
    
    .slider-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .professionals-slider:hover .slider-nav {
        opacity: 1;
    }
    
    .slider-nav:hover {
        background-color: #1e3a8a !important;
        color: white !important;
        transform: scale(1.1);
    }
    
    .slider-nav:hover i {
        color: white !important;
    }
    
    .rating i {
        font-size: 0.95rem;
    }
    
    .card {
        border-radius: 12px !important;
        overflow: hidden;
        border: none !important;
        transition: all 0.3s ease;
    }
    
    .card-img-top {
        height: 220px;
        overflow: hidden;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .availability-badge {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .btn-outline-primary {
        border-width: 2px;
        font-weight: 500;
        padding: 0.375rem 1rem;
    }
    
    .btn-primary {
        font-size: 1rem;
        padding: 0.75rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    }
     /* News Section */
        .news-section {
            padding: 6rem 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-subtitle {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 1rem;
            font-weight: 600;
            display: inline-block;
            position: relative;
        }

        .section-subtitle::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background-color: var(--accent);
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .section-description {
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* News Cards */
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background-color: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .news-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.1);
        }

        .news-date {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background-color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .news-content {
            padding: 2rem;
        }

        .news-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .news-card:hover .news-title {
            color: var(--primary);
        }

        .news-meta {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: #6b7280;
        }

        .news-author {
            font-weight: 600;
            color: var(--dark);
            margin-right: 1rem;
        }

        .news-read-time {
            display: flex;
            align-items: center;
        }

        .news-read-time i {
            margin-right: 0.3rem;
            color: var(--accent);
        }

        .news-excerpt {
            color: #6b7280;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .news-card:hover .read-more {
            color: var(--accent);
        }

        .news-card:hover .read-more i {
            transform: translateX(5px);
        }

        .see-all-btn {
            display: inline-flex;
            align-items: center;
            margin-top: 4rem;
            padding: 0.8rem 1.5rem;
            background-color: var(--primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .see-all-btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
        }

        .see-all-btn i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .see-all-btn:hover i {
            transform: translateX(5px);
        }

        /* Decorative Elements */
        .news-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0) 70%);
            z-index: 0;
        }

        .decoration-1 {
            top: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
        }

        .decoration-2 {
            bottom: -100px;
            left: -100px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .news-section {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .news-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            .section-header {
                margin-bottom: 3rem;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.8rem;
            }
            .news-content {
                padding: 1.5rem;
            }
        }
         section.professionals-section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
            overflow: hidden;
        }
        
        /* Centered Header */
        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
            animation: fadeIn 0.8s ease-out;
        }
        
        .section-header h2 {
            font-size: 2.25rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-header p {
            color: var(--secondary);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        
        /* Horizontal Category Panel */
        .category-panel {
            width: 100%;
            margin-bottom: 2rem;
            animation: fadeIn 0.6s ease-out;
        }
        
        .category-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            list-style: none;
            padding: 0.5rem 0;
        }
        
        .category-item {
            flex: 0 0 auto;
        }
        
        .category-btn {
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            background: white;
            border: 1px solid #e5e7eb;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: var(--secondary);
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .category-btn:hover {
            background-color: var(--primary-light);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .category-btn.active {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
            border-color: var(--primary);
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
        }
        
        .category-btn i {
            margin-right: 0.5rem;
            transition: transform 0.3s;
        }
        
        .category-btn:hover i {
            transform: scale(1.2);
        }
        
        /* Professionals Grid */
        .professionals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            width: 100%;
            animation: fadeIn 0.8s ease-out;
        }
        
        .professional-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            opacity: 0;
            transform: translateY(20px);
            animation: cardEntrance 0.6s ease-out forwards;
        }
        
        @keyframes cardEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .professional-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .professional-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .verification-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: var(--success);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .card-content {
            padding: 1.5rem;
        }
        
        .professional-name {
            font-size: 1.15rem;
            margin-bottom: 0.25rem;
            color: var(--dark);
            transition: color 0.3s;
        }
        
        .professional-card:hover .professional-name {
            color: var(--primary);
        }
        
        .professional-title {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        
        .professional-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.25rem;
            font-size: 0.85rem;
        }
        
        .rating {
            color: #f59e0b;
        }
        
        .location {
            color: var(--secondary);
        }
        
        .professional-actions {
            display: flex;
            gap: 0.75rem;
        }
        
        .action-btn {
            flex: 1;
            padding: 0.6rem;
            border-radius: 4px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .contact-btn {
            background: var(--primary);
            color: white;
            border: 1px solid var(--primary);
        }
        
        .contact-btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }
        
        .profile-btn {
            background: white;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        
        .profile-btn:hover {
            background: #eff6ff;
            transform: translateY(-2px);
        }
        
        /* View All Button */
        .view-all-container {
            text-align: center;
            margin-top: 2.5rem;
            animation: fadeIn 0.8s ease-out;
        }
        
        .view-all-btn {
            padding: 0.75rem 2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
        }
        
        .view-all-btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .category-list {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 0.5rem;
                scrollbar-width: none;
                -webkit-overflow-scrolling: touch;
            }
            
            .category-list::-webkit-scrollbar {
                display: none;
            }
            
            .category-item {
                flex: 0 0 auto;
            }
            
            .professionals-grid {
                grid-template-columns: 1fr;
            }
        }
        .platform-team {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
  }

  .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50px;
  }

  h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .team-card {
    perspective: 1000px;
    height: 400px;
  }

  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .team-card:hover .card-inner {
    transform: rotateY(180deg);
  }

  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 16px;
    overflow: hidden;
  }

  .card-back {
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .member-image {
    height: 220px;
    position: relative;
    overflow: hidden;
  }

  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .team-card:hover .member-image img {
    transform: scale(1.05);
  }

  .tech-stack {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
  }

  .tech-tag {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
  }

  .member-info {
    padding: 1.5rem;
  }

  h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }

  .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
  }

  .stats {
    display: flex;
    gap: 1.5rem;
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.7rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .specializations {
    list-style: none;
  }

  .specializations li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
  }

  .specializations li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
  }

  .profile-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }

  .profile-link:hover {
    gap: 1rem;
  }

  .cta-section {
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s 0.6s forwards;
  }

  .cta-section p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  }

  .cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
  }

  .cta-button svg {
    transition: transform 0.3s;
  }

  .cta-button:hover svg {
    transform: translateX(5px);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .platform-team {
      padding: 4rem 1.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .team-grid {
      grid-template-columns: 1fr;
    }
    
    .team-card {
      height: auto;
    }
    
    .card-inner {
      transform: none !important;
      height: auto;
    }
    
    .card-front, .card-back {
      position: relative;
      transform: none;
      height: auto;
    }
    
    .card-back {
      padding: 1.5rem;
    }
  }
   .pro-footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0 30px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
  }

  .pro-footer__wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231a1a2e" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%231a1a2e" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%231a1a2e"/></svg>');
    background-size: cover;
    z-index: 1;
  }

  .pro-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .pro-footer__section {
    margin-bottom: 30px;
  }

  .pro-footer__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #00f5d4;
  }

  .pro-footer__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4cc9f0;
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .pro-footer__section:hover .pro-footer__title::after {
    transform: scaleX(1.5);
  }

  .pro-footer__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Newsletter Form */
  .pro-footer__form {
    margin-top: 25px;
  }

  .pro-footer__input-group {
    position: relative;
    display: flex;
  }

  .pro-footer__input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px 0 0 4px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .pro-footer__input:focus {
    outline: none;
    border-color: #4cc9f0;
    background: rgba(255, 255, 255, 0.15);
  }

  .pro-footer__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .pro-footer__submit-btn {
    width: 50px;
    background: #4361ee;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    position: relative;
    z-index: 0;
    transition: all 0.3s;
  }

  .pro-footer__submit-btn:hover {
    color: white;
  }

  .pro-footer__submit-btn:before {
    content: '';
    background: linear-gradient(45deg, #4361ee, #4cc9f0, #3a0ca3, #7209b7);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 0 4px 4px 0;
  }

  .pro-footer__submit-btn:hover:before {
    opacity: 1;
  }

  /* Lists */
  .pro-footer__info-list, .pro-footer__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pro-footer__info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
  }

  .pro-footer__icon {
    margin-right: 12px;
    color: #4cc9f0;
    font-size: 0.9rem;
    margin-top: 3px;
  }

  .pro-footer__icon--pulse {
    animation: pro-footer-pulse 2s infinite;
  }

  @keyframes pro-footer-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .pro-footer__link-item {
    margin-bottom: 12px;
  }

  .pro-footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
  }

  .pro-footer__link-text {
    position: relative;
  }

  .pro-footer__link-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4cc9f0;
    transition: width 0.3s ease;
  }

  .pro-footer__link:hover .pro-footer__link-text::after {
    width: 100%;
  }

  .pro-footer__link:hover {
    color: white;
  }

  /* Neon Button */
  .pro-footer__neon-btn {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    margin: 10px 0;
    color: #00f5d4;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    transition: 0.5s;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .pro-footer__neon-btn:hover {
    background: #00f5d4;
    color: #1a1a2e;
    box-shadow: 0 0 5px #00f5d4,
                0 0 25px #00f5d4,
                0 0 50px #00f5d4,
                0 0 100px #00f5d4;
  }

  .pro-footer__neon-border {
    position: absolute;
    display: block;
  }

  .pro-footer__neon-border:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f5d4);
    animation: pro-footer-btn-anim1 2s linear infinite;
  }

  @keyframes pro-footer-btn-anim1 {
    0% { left: -100%; }
    50%,100% { left: 100%; }
  }

  .pro-footer__neon-border:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #00f5d4);
    animation: pro-footer-btn-anim2 2s linear infinite;
    animation-delay: .5s;
  }

  @keyframes pro-footer-btn-anim2 {
    0% { top: -100%; }
    50%,100% { top: 100%; }
  }

  .pro-footer__neon-border:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #00f5d4);
    animation: pro-footer-btn-anim3 2s linear infinite;
    animation-delay: 1s;
  }

  @keyframes pro-footer-btn-anim3 {
    0% { right: -100%; }
    50%,100% { right: 100%; }
  }

  .pro-footer__neon-border:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #00f5d4);
    animation: pro-footer-btn-anim4 2s linear infinite;
    animation-delay: 1.5s;
  }

  @keyframes pro-footer-btn-anim4 {
    0% { bottom: -100%; }
    50%,100% { bottom: 100%; }
  }

  /* Footer Bottom */
  .pro-footer__bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pro-footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .pro-footer__social-links {
    display: flex;
    gap: 20px;
  }

  .pro-footer__social-icon {
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .pro-footer__social-icon:hover {
    background: #4361ee;
    transform: translateY(-3px);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .pro-footer__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .pro-footer__container {
      grid-template-columns: 1fr;
    }
    
    .pro-footer__section {
      text-align: center;
    }
    
    .pro-footer__title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .pro-footer__section:hover .pro-footer__title::after {
      transform: translateX(-50%) scaleX(1.5);
    }
    
    .pro-footer__info-item {
      justify-content: center;
    }
    
    .pro-footer__input-group {
      justify-content: center;
    }
  }
  