        /* Main Container Styling */
        .search_result_area {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
            padding: 80px 0;
            min-height: 100vh;
            position: relative;
        }

        .search_result_area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #22336a, #4a6bff, #22336a);
            background-size: 200% 100%;
            animation: shimmer 3s infinite linear;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        /* Form Container */
        .search_result_box {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(34, 51, 106, 0.1);
            border: 1px solid rgba(34, 51, 106, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .search_result_box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #4a6bff, #22336a);
        }

        .search_result_box:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(34, 51, 106, 0.15);
        }

        /* Title Styling */
        .section__title {
            position: relative;
            padding-bottom: 25px;
        }

        .section__title h5 {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }

        .section__title h5::before,
        .section__title h5::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #4a6bff);
            transform: translateY(-50%);
        }

        .section__title h5::before {
            left: -70px;
        }

        .section__title h5::after {
            right: -70px;
            background: linear-gradient(90deg, #4a6bff, transparent);
        }

        /* Form Labels */
        .primary_label2 {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding-left: 12px;
        }

        .primary_label2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 14px;
            background: #4a6bff;
            border-radius: 2px;
        }

        .primary_label2 .text-danger {
            color: #ff4757 !important;
            font-weight: bold;
            margin-left: 2px;
        }

        /* Input Fields */
        .ot-input,
        .form-control {
            border: 2px solid #eef2ff;
            border-radius: 12px;
            padding: 14px 20px;
            font-size: 1rem;
            color: #2c3e50;
            background: #f8faff;
            transition: all 0.3s ease;
            /* height: auto; */
        }

        .ot-input:focus,
        .form-control:focus {
            border-color: #4a6bff;
            background: white;
            box-shadow: 0 0 0 4px rgba(74, 107, 255, 0.1);
            outline: none;
            transform: translateY(-1px);
        }

        .ot-input::placeholder {
            color: #a0a7c2;
            opacity: 0.7;
        }

        /* Select2 Customization */
        .select2-container--default .select2-selection--single {
            border: 2px solid #eef2ff;
            border-radius: 12px;
            height: auto;
            padding: 12px 20px;
            background: #f8faff;
            transition: all 0.3s ease;
        }

        .select2-container--default .select2-selection--single .select2-selection__rendered {
            color: #2c3e50;
            line-height: 1.5;
            padding-left: 0;
        }

        .select2-container--default .select2-selection--single .select2-selection__arrow {
            height: 100%;
            right: 12px;
        }

        .select2-container--default.select2-container--focus .select2-selection--single {
            border-color: #4a6bff;
            background: white;
            box-shadow: 0 0 0 4px rgba(74, 107, 255, 0.1);
        }

        .select2-dropdown {
            border: 2px solid #eef2ff;
            border-radius: 12px;
            margin-top: 5px;
            box-shadow: 0 10px 30px rgba(34, 51, 106, 0.1);
        }

        /* File Upload Styling */
        .form-control[type="file"] {
            padding: 12px;
            background: white;
            cursor: pointer;
            height: auto;
            /* width: fit-content; */
            max-width: 100%;
        }

        .form-control[type="file"]::-webkit-file-upload-button {
            background: linear-gradient(135deg, #4a6bff, #22336a);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            margin-right: 12px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-control[type="file"]::-webkit-file-upload-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
        }

        /* Error Messages */
        .text-danger.small {
            font-size: 0.85rem;
            margin-top: 6px;
            padding: 6px 12px;
            background: linear-gradient(90deg, rgba(255, 71, 87, 0.1), transparent);
            border-left: 3px solid #ff4757;
            border-radius: 0 4px 4px 0;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Submit Button */
        .theme_btn2 {
            background: linear-gradient(135deg, #4a6bff 0%, #22336a 100%);
            border: none;
            border-radius: 12px;
            padding: 20px 40px;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 60px;
        }

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

        .theme_btn2:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(74, 107, 255, 0.3);
        }

        .theme_btn2:hover::before {
            left: 100%;
        }

        .theme_btn2:active {
            transform: translateY(-1px);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .search_result_box {
                padding: 30px;
            }

            .section__title h5 {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 768px) {
            .search_result_area {
                padding: 40px 0;
            }

            .search_result_box {
                padding: 25px;
                border-radius: 20px;
            }

            .section__title {
                margin-bottom: 30px !important;
            }

            .section__title h5 {
                font-size: 1.4rem;
            }

            .section__title h5::before,
            .section__title h5::after {
                width: 30px;
            }

            .section__title h5::before {
                left: -40px;
            }

            .section__title h5::after {
                right: -40px;
            }

            .theme_btn2 {
                padding: 16px 30px;
                font-size: 1rem;
                min-height: 55px;
            }
        }

        @media (max-width: 576px) {
            .search_result_box {
                padding: 20px;
                border-radius: 16px;
            }

            .section__title h5 {
                font-size: 1.2rem;
                padding: 0 10px;
            }

            .section__title h5::before,
            .section__title h5::after {
                display: none;
            }

            .primary_label2 {
                font-size: 0.85rem;
            }

            .ot-input,
            .form-control {
                padding: 12px 16px;
            }
        }

        /* Form Row Animation */
        .row>div {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Apply staggered animation to form fields */
        .row>div:nth-child(1) {
            animation-delay: 0.1s;
        }

        .row>div:nth-child(2) {
            animation-delay: 0.15s;
        }

        .row>div:nth-child(3) {
            animation-delay: 0.2s;
        }

        .row>div:nth-child(4) {
            animation-delay: 0.25s;
        }

        .row>div:nth-child(5) {
            animation-delay: 0.3s;
        }

        .row>div:nth-child(6) {
            animation-delay: 0.35s;
        }

        .row>div:nth-child(7) {
            animation-delay: 0.4s;
        }

        .row>div:nth-child(8) {
            animation-delay: 0.45s;
        }

        .row>div:nth-child(9) {
            animation-delay: 0.5s;
        }

        .row>div:nth-child(10) {
            animation-delay: 0.55s;
        }

        .row>div:nth-child(11) {
            animation-delay: 0.6s;
        }

        .row>div:nth-child(12) {
            animation-delay: 0.65s;
        }

        .row>div:nth-child(13) {
            animation-delay: 0.7s;
        }

        .row>div:nth-child(14) {
            animation-delay: 0.75s;
        }

        .row>div:nth-child(15) {
            animation-delay: 0.8s;
        }

        .row>div:nth-child(16) {
            animation-delay: 0.85s;
        }

        .row>div:nth-child(17) {
            animation-delay: 0.9s;
        }

        .row>div:nth-child(18) {
            animation-delay: 0.95s;
        }

        .row>div:nth-child(19) {
            animation-delay: 1s;
        }

        .row>div:nth-child(20) {
            animation-delay: 1.05s;
        }

        .row>div:nth-child(21) {
            animation-delay: 1.1s;
        }

        .row>div:nth-child(22) {
            animation-delay: 1.15s;
        }

        .row>div:nth-child(23) {
            animation-delay: 1.2s;
        }
