/* Premium Reviews Carousel Styles */
.src-review-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}
.src-review-form h2 {
    margin-bottom: 15px;
    color: #333;
}
.src-review-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}
.src-review-form input, 
.src-review-form select, 
.src-review-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.src-review-form button {
    margin-top: 15px;
    padding: 12px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}
.src-review-form button:hover {
    background: #005bb5;
}
.src-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px;
}
.src-review-card {
    min-width: 250px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    text-align: center;
}
.src-review-content {
    font-style: italic;
    margin-bottom: 10px;
    color: #444;
}
.src-review-rating {
    color: #ff9800;
    font-size: 18px;
    margin-bottom: 5px;
}
.src-review-author {
    font-weight: bold;
    color: #333;
}
.src-thankyou {
    text-align: center;
    padding: 50px;
}
.src-thankyou h2 {
    font-size: 28px;
    color: #0073e6;
}
.src-home-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #0073e6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}
.src-home-link:hover {
    background: #005bb5;
}

/* Premium File Upload Box */
.src-file-upload {
    border: 2px dashed #3b82f6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.src-file-upload:hover {
    background: #eef6ff;
    border-color: #2563eb;
}

.src-file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.src-file-upload i {
    font-size: 28px;
    color: #3b82f6;
}

.src-file-upload strong {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    color: #333;
}

.src-file-upload span {
    font-size: 13px;
    color: #666;
}

.src-preview-img {
    margin-top: 12px;
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ✅ Carousel में Review Image हमेशा Small Circular */
.src-review-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
