.reviews-section {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    text-align: center;
    position: relative;
    padding: 100px 30px;
    background: linear-gradient(to bottom, rgba(5, 5, 20, 0.9), rgba(10, 10, 30, 0.7));
    border-radius: 20px;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/grid1.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.reviews-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #8a84ff, #64ffda);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #64ffda, #8a84ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid rgba(100, 255, 218, 0.3);
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-header h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.review-header p {
    font-size: 14px;
    color: #a0a0a0;
}

.rating {
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.rating i {
    color: #ffca28;
    font-size: 18px;
}

.review-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}
