 /* Report Fraud Section */
        #report-fraud {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 20px;
            background-image: url(../img/food-bg.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
        }

        .report-fraud-container {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            max-width: 700px;
            width: 100%;
            text-align: center;
            backdrop-filter: blur(8px);
            position: relative;
            overflow: hidden;
        }

        .report-fraud-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(108, 92, 231, 0.1));
            z-index: -1;
            animation: subtlePulse 5s infinite ease-in-out;
        }

        @keyframes subtlePulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .report-fraud-container h2 {
            font-size: 32px;
            font-weight: 700;
            color: #2f3542;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .report-fraud-container h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #e74c3c, #6c5ce7);
            border-radius: 2px;
        }

        .report-fraud-container p {
            font-size: 16px;
            color: #747d8c;
            margin-bottom: 30px;
        }

        #report-fraud-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        /* Colorful Input Styling */
        .form-group {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        #report-fraud-form input,
        #report-fraud-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid transparent;
            border-radius: 8px;
            font-size: 15px;
            background: #f8f8f8;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }


         #report-fraud-form select {
            width: 107%;
            padding: 12px 15px;
            border: 2px solid transparent;
            border-radius: 8px;
            font-size: 15px;
            background: #f8f8f8;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }


        #report-fraud-form input:focus,
        #report-fraud-form textarea:focus,
        #report-fraud-form select:focus {
            outline: none;
            border: 2px solid transparent;
            background: #fff;
            box-shadow: 0 0 10px rgba(108, 92, 231, 0.4);
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(45deg, #e74c3c, #6c5ce7) border-box;
        }

        .form-group::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #e74c3c, #6c5ce7);
            transition: width 0.3s ease, left 0.3s ease;
            transform: translateX(-50%);
        }

        .form-group:focus-within::after {
            width: 80%;
        }

        #report-fraud-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Shake Animation for Invalid Submission */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            50% { transform: translateX(5px); }
            75% { transform: translateX(-5px); }
        }

        .shake {
            animation: shake 0.3s ease;
        }

        /* Unique Button with Ripple Effect */
        .btn-report {
            position: relative;
            padding: 12px 30px;
            background: linear-gradient(45deg, #e74c3c, #6c5ce7);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-report i {
            font-size: 18px;
        }

        .btn-report:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(108, 92, 231, 0.4);
        }

        .btn-report::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .btn-report:hover::before {
            left: 100%;
        }

        .btn-report .ripple {
            position: absolute;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        #report-success {
            display: none;
            color: #2ecc71;
            font-weight: 600;
            font-size: 16px;
            margin-top: 15px;
            padding: 10px;
            border-radius: 8px;
            background: rgba(46, 204, 113, 0.1);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .report-fraud-container {
                padding: 25px;
            }

            .report-fraud-container h2 {
                font-size: 28px;
            }

            .report-fraud-container p {
                font-size: 14px;
            }

            .form-group {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            #report-fraud {
                padding: 60px 10px;
            }

            .report-fraud-container {
                padding: 15px;
            }

            .btn-report {
                padding: 10px 20px;
                font-size: 14px;
            }

            .btn-report i {
                font-size: 16px;
            }
        }
