        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -o-font-smoothing: antialiased;
            -webkit-appearance: none;
            -ms-overflow-style: none;
            /* IE and Edge */
            scrollbar-width: none;
            /* Firefox */
        }

        /* Hide scrollbar for Chrome, Safari and Opera */
        ::-webkit-scrollbar {
            display: none;
        }

        @keyframes float-slow {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }


        /* Hero Section Image Animation */
        .hero_abstruct-image,
        .home_about_image {
            animation: float-slow 6s ease-in-out infinite;
        }

        .home_work_image {
            height: 400px;
        }

        .logo_component {
            flex-direction: row;
            gap: 20px;
            justify-content: space-between;
        }

        .logo_logo-list {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        .logo_logo-list img {
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        @media (max-width: 580px) {
            .section_logo {
                display: none;
            }
        }

        .modal {
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            visibility: visible;
            transition: all 0.3s ease;
        }

        .modal.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            width: 90%;
            max-width: 600px;
            max-height: 95vh;
            overflow-y: auto;
            transform: scale(0.7);
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .modal.show .modal-content {
            transform: scale(1);
        }

        .bg-\[\#010305bd\] {
            padding: 40px;
            background: linear-gradient(135deg, rgba(1, 3, 5, 0.95) 0%, rgba(45, 41, 236, 0.33) 50%, rgba(1, 3, 5, 0.98) 100%);
            position: relative;
            color: white;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .my-4 {
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        .w-52 {
            width: 13rem;
        }

        .text-xl {
            font-size: 1.25rem;
            line-height: 1.75rem;
        }

        .xs\:text-2xl {
            font-size: 1.5rem;
            line-height: 2rem;
        }

        .font-semibold {
            font-weight: 600;
        }

        .my-3 {
            margin-top: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .max-w-\[540px\] {
            max-width: 540px;
        }

        .mb-2 {
            margin-bottom: 0.5rem;
        }

        .bg-\[\#010305bd\] form {
            margin-top: 2rem;
        }

        .bg-\[\#010305bd\] label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.875rem;
            color: #e5e7eb;
        }

        .bg-\[\#010305bd\] input,
        .bg-\[\#010305bd\] select,
        .bg-\[\#010305bd\] textarea {
            width: 100%;
            padding: 12px 16px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .bg-\[\#010305bd\] textarea {
            resize: none;
            min-height: 120px;
        }

        .bg-\[\#010305bd\] input::placeholder,
        .bg-\[\#010305bd\] select::placeholder,
        .bg-\[\#010305bd\] textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Select option styling */
        .bg-\[\#010305bd\] select option {
            background-color: #1a1a1a;
            padding: 8px 12px;
        }

        .bg-\[\#010305bd\] select option:disabled {
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
        }

        .bg-\[\#010305bd\] select option:hover {
            background-color: #2a2a2a;
        }

        .bg-\[\#010305bd\] input:focus,
        .bg-\[\#010305bd\] select:focus,
        .bg-\[\#010305bd\] textarea:focus {
            outline: none;
            border-color: #667eea;
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .bg-\[\#010305bd\] button[type="submit"] {
            width: 100%;
            padding: 14px 24px;
            background: rgb(45, 41, 236);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bg-\[\#010305bd\] button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 20px;
            }

            .bg-\[\#010305bd\] {
                padding: 25px;
            }

            .text-xl {
                font-size: 1.125rem;
            }

            .xs\:text-2xl {
                font-size: 1.25rem;
            }

            .w-52 {
                width: 10rem;
            }
        }

        /* Testimonial Slider Styles */
        .home_testimony_slide-item {
            transition: opacity 0.5s ease-in-out;
        }

        .home_testimony_slide-item[style*="display: none"] {
            opacity: 0;
        }

        .home_testimony_slide-item[style*="display: block"] {
            opacity: 1;
        }

        .home_testimony_arrow {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .home_testimony_arrow:hover {
            transform: scale(1.1);
        }

        .home_testimony_nav .w-slider-dot {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .home_testimony_nav .w-slider-dot.w-active {
            background-color: #667eea;
        }

        /* Multi-Step Form Styles */
        .form-step {
            transition: all 0.3s ease;
        }

        .form-step input,
        .form-step select {
            margin-bottom: 1.2rem;
        }

        .step-buttons {
            display: flex;
            gap: 1rem;
            justify-content: space-between;
            margin-top: 1.4rem;
            align-items: center;
        }

        .btn-next,
        .btn-prev,
        .btn-submit {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-next,
        .btn-submit {
            background: #2D29EC;
            color: white;
        }

        .btn-next:hover,
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .btn-prev {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-prev:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Progress Bar */
        .progress-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 1.5rem 0;
            gap: 0.5rem;
        }

        .progress-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .progress-step.active {
            background: #2c29ec5e;
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .progress-step.completed {
            background: #2D29EC;
            color: white;
        }

        .progress-line {
            width: 60px;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .progress-line.completed {
            background: #2D29EC;
        }

        /* Agreement Section */
        .agreement-section {
            margin-top: 1.5rem;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: 12px;
            height: 12px;
            accent-color: #2D29EC;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .checkbox-group input[type="checkbox"]:checked {
            background-color: #2D29EC;
            border-color: #2D29EC;
        }

        .checkbox-group input[type="checkbox"]:checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .checkbox-group input[type="checkbox"]:hover {
            border-color: #2D29EC;
            background-color: rgba(45, 41, 236, 0.1);
        }

        .checkbox-label {
            font-size: 0.875rem;
            line-height: 1.4;
            cursor: pointer;
            margin-top: 5px;
        }

        .terms-link {
            color: #2D29EC;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .terms-link:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        /* Close Button */
        #closeForm {
            position: absolute;
            top: 8px;
            right: 8px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        #closeForm:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        #closeForm svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 768px) {
            .step-buttons {
                flex-direction: column;
            }

            .btn-next,
            .btn-prev,
            .btn-submit {
                width: 100%;
            }

            .progress-bar {
                margin: 1.5rem 0;
            }

            .progress-step {
                width: 35px;
                height: 35px;
                font-size: 0.75rem;
            }

            .progress-line {
                width: 40px;
            }

            .home_services_accordion-pane {
                padding: 1rem;
            }
        }