.elementor-15736 .elementor-element.elementor-element-cd924d8{margin-top:50px;margin-bottom:0px;}/* Start custom CSS for html, class: .elementor-element-260773b *//* ⭐⭐⭐ FEEDBACK FORM RESPONSIVE + DARK RED RATINGS ⭐⭐⭐ */

/* Form Box */
.feedback-box {
    max-width: 1200px;
    margin: 25px auto;
    padding: 60px;
    background: #fff;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0px 0px 15px #eee;
}

/* Mobile Responsive Padding */
@media (max-width: 768px) {
    .feedback-box {
        padding:30px 20px;
    }
}

/* Form Heading */
.feedback-box h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Form Rows */
.form-row {
    display: flex;
    flex-wrap: wrap; /* Stack columns on mobile */
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .col {
    flex: 1;
    min-width: 250px; /* Ensure mobile stacking */
}

/* Inputs & Textarea */
.feedback-box input,
.feedback-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

/* Rating Section */
.rating-section {
    text-align: center;
    margin: 40px 0 25px;
}

.rating-section h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Rating Row */
.rating-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Stack on mobile */
}

.rate-item {
    text-align: center;
}

.rate-item input {
    display: none;
}

.rate-item img {
    width: 60px; /* Adjust size */
    cursor: pointer;
    transition: 0.3s;
}

/* Clicked Star - Dark Red */
.rate-item input:checked + label img {
    filter: invert(19%) sepia(90%) saturate(700%) hue-rotate(-10deg) brightness(80%);
    transform: scale(1.15);
}

/* Hover Star - Dark Red */
.rate-item img:hover {
    transform: scale(1.15);
   
}

.rate-item span {
    margin-top: 8px;
    display: block;
    font-weight: 500;
    font-size: 14px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #d60000;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Mobile Font Adjustment */
@media (max-width: 480px) {
    .feedback-box h2 {
        font-size: 24px;
    }
    .rating-section h3 {
        font-size: 20px;
    }
    .rate-item img {
        width: 50px;
    }
}/* End custom CSS */