@media screen and (min-width:1024px) {
		.hp-3 .how-it-works .working-content {
    margin-top: 100px!important;
    padding-top: 0px;!important
    display: flex!important;
    flex-wrap: wrap!important;
    gap: 30px!important;
    background-color: #fff!important;
    justify-content: center!important;
    text-align: center!important;
}
@media screen and (min-width:1024px) {
		.hidden.pc {
		display:none!important;
			
			
			
			}
	
		}

/* Top row - 3 cards */
.hp-3 .how-it-works .working-content .work-card:nth-child(-n+3) {
    width: calc(33% - 20px)!important;
    max-width: 350px!important;
}

/* Bottom row - 2 cards */
.hp-3 .how-it-works .working-content .work-card:nth-child(n+4) {
    width: calc(50% - 15px)!important;
    max-width: 525px!important;
    margin-top: 15px!important;
}

/* Make sure the border-radius is preserved */
.how-it-works .working-content {
    border-radius: 25px!important;
    position: relative!important;
}
		}		


.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    width: 100%;
}

.form-status.success {
    background-color: rgba(72, 187, 120, 0.2);
    color: #2F855A;
    border: 1px solid rgba(72, 187, 120, 0.5);
}

.form-status.error {
    background-color: rgba(245, 101, 101, 0.2);
    color: #C53030;
    border: 1px solid rgba(245, 101, 101, 0.5);
}

.input-container input:focus,
.input-container button:focus {
    outline: 2px solid #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.input-container button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
        
        :root {
            --primary-color: #4361ee;
            --primary-light: #4895ef;
            --primary-dark: #3f37c9;
            --accent-color: #f72585;
            --text-light: #f8f9fa;
            --text-dark: #212529;
            --bg-light: #ffffff;
            --bg-medium: #f8f9fa;
            --bg-dark: #343a40;
            --success-color: #4cc9f0;
            --border-radius: 16px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-medium);
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        /* Chat container */
        #chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 380px;
            max-width: 90vw;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            transition: transform var(--transition-normal), opacity var(--transition-normal);
        }
        
        /* Chat toggle button */
        #chatbot-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--text-light);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 28px;
            z-index: 1001;
            box-shadow: var(--shadow-lg);
            transition: transform var(--transition-fast), background var(--transition-fast);
            overflow: hidden;
        }
        
        #chatbot-toggle::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }
        
        #chatbot-toggle:hover {
            transform: scale(1.05);
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
        }
        
        #chatbot-toggle:hover::after {
            opacity: 1;
        }
        
        #chatbot-toggle i {
            position: relative;
            z-index: 1;
        }
        
        /* Notification dot */
        #notification-dot {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 18px;
            height: 18px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: block;
            box-shadow: var(--shadow-sm);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.7);
            }
            
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
            }
            
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
            }
        }
        
        /* Chat box */
        #chatbot-box {
            display: none;
            background-color: var(--bg-light);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform-origin: bottom right;
            animation: scaleIn 0.3s forwards;
            max-height: 600px;
            transition: all var(--transition-normal);
        }
        
        @keyframes scaleIn {
            from {
                transform: scale(0.5);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        /* Chat header */
        #chatbot-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--text-light);
            padding: 18px 20px;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        #chatbot-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--success-color));
        }
        
        #chatbot-title {
            display: flex;
            align-items: center;
            font-size: 18px;
        }
        
        #chatbot-title i {
            margin-right: 10px;
            font-size: 22px;
        }
        
        #close-chatbot {
            cursor: pointer;
            font-size: 24px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color var(--transition-fast);
        }
        
        #close-chatbot:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Chat messages */
        #chatbot-messages {
            height: 320px;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            background-color: var(--bg-medium);
            scroll-behavior: smooth;
        }
        
        #chatbot-messages::-webkit-scrollbar {
            width: 6px;
        }
        
        #chatbot-messages::-webkit-scrollbar-track {
            background: var(--bg-medium);
        }
        
        #chatbot-messages::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
        }
        
        .message {
            margin-bottom: 16px;
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 18px;
            position: relative;
            word-wrap: break-word;
            animation: fadeIn 0.3s forwards;
            box-shadow: var(--shadow-sm);
            font-size: 15px;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .bot-message {
            background-color: var(--bg-light);
            align-self: flex-start;
            border-bottom-left-radius: 6px;
            color: var(--text-dark);
        }
        
        .bot-message::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -8px;
            width: 16px;
            height: 16px;
            background-color: var(--bg-light);
            border-radius: 50%;
            z-index: -1;
        }
        
        .user-message {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--text-light);
            align-self: flex-end;
            border-bottom-right-radius: 6px;
        }
        
        .user-message::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: -8px;
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            z-index: -1;
        }
        
        .bot-message-content, .user-message-content {
            position: relative;
            z-index: 1;
        }
        
        /* Typing indicator */
        .typing-indicator {
            display: inline-block;
            padding: 0 5px;
        }
        
        .typing-indicator span {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.3);
            margin: 0 2px;
            animation: blink 1.4s infinite both;
        }
        
        .typing-indicator span:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .typing-indicator span:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        @keyframes blink {
            0% { opacity: 0.4; }
            20% { opacity: 1; }
            100% { opacity: 0.4; }
        }
        
        /* Option buttons */
        .options-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
            align-self: flex-start;
            animation: fadeIn 0.3s forwards;
            max-width: 85%;
        }
        
        .option-button {
            background-color: rgba(67, 97, 238, 0.1);
            color: var(--primary-color);
            border: 1px solid rgba(67, 97, 238, 0.3);
            border-radius: 20px;
            padding: 10px 16px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
            white-space: nowrap;
        }
        
        .option-button:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .option-button:active {
            transform: translateY(0);
        }
        
        /* Success message */
        #success-message {
            color: var(--success-color);
            font-weight: 500;
            text-align: center;
            margin: 12px 0;
            display: none;
            padding: 8px 16px;
            animation: fadeIn 0.5s forwards;
            font-size: 15px;
        }
        
        /* Chat input area */
        #chatbot-input-container {
            display: flex;
            padding: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            background-color: var(--bg-light);
            position: relative;
        }
        
        #chatbot-input-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, 
                rgba(67, 97, 238, 0),
                rgba(67, 97, 238, 0.3),
                rgba(67, 97, 238, 0));
        }
        
        #chatbot-input {
            flex-grow: 1;
            padding: 12px 16px;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 24px;
            outline: none;
            font-size: 15px;
            font-family: 'Roboto', sans-serif;
            transition: all var(--transition-fast);
            background-color: var(--bg-medium);
        }
        
        #chatbot-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }
        
        #chatbot-submit {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            margin-left: 12px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all var(--transition-fast);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        
        #chatbot-submit::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }
        
        #chatbot-submit:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-md);
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
        }
        
        #chatbot-submit:hover::after {
            opacity: 1;
        }
        
        #chatbot-submit i {
            font-size: 18px;
            position: relative;
            z-index: 1;
        }
        
        /* Animation for input container */
        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 480px) {
            #chatbot-container {
                width: 80%!important;
                max-width: 100%;
                bottom: 0;
                right: 0;
            }
            
            #chatbot-box {
                border-radius: var(--border-radius) var(--border-radius) 0 0;
                max-height: 80vh;
            }
        }

@media screen and (max-width:1023px) {	
	a.btn-contact {
    display: block;
	margin-bottom:10px;
	font-size: 22px;
}
	.hidden.pc {
	 width: 75%!important;
	}
	}
