/* Component Styles */

/* Microservice Node */
.microservice-node {
    transition: all 0.3s ease;
}

.microservice-node:hover {
    transform: scale(1.1);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
}

/* Tech Cards */
.tech-card {
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* Expertise Section */
.expertise-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews */
.reviews-container {
    position: relative;
    overflow: hidden;
    height: 200px;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    padding-top: 10px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    animation: scroll 120s linear infinite;
    width: max-content;
}

.review-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.5);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    justify-content: center;
}

.star {
    width: 20px;
    height: 20px;
    background: #fbbf24;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e2e8f0;
    text-align: center;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.review-button {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .expertise-intro {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .review-card {
        width: 250px;
    }
}

