	/* Launch Announcement Banner */
		.launch_banner {
			background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
			color: #fff;
			text-align: center;
			padding: 12px 20px;
			font-size: 15px;
			font-weight: 500;
			position: relative;
			z-index: 1000;
		}
		
		.launch_banner a {
			color: #fff;
			text-decoration: underline;
			font-weight: 600;
			margin-left: 8px;
		}
		
		.launch_banner a:hover {
			text-decoration: none;
		}
		
		.launch_banner .launch_icon {
			display: inline-block;
			margin-right: 8px;
			animation: pulse-icon 2s ease-in-out infinite;
		}
		
		@keyframes pulse-icon {
			0%, 100% { transform: scale(1); }
			50% { transform: scale(1.2); }
		}
		
		@media (max-width: 768px) {
			.launch_banner {
				font-size: 13px;
				padding: 10px 15px;
			}
		}
		
		/* Mobile Hero Devices Slider */
		@media (max-width: 768px) {
			.hero_sec .terminal_info {
				display: flex !important;
				flex-direction: row !important;
				flex-wrap: nowrap !important;
				justify-content: flex-start !important;
				align-items: flex-end !important;
				overflow-x: auto !important;
				overflow-y: hidden !important;
				scroll-snap-type: x mandatory;
				-webkit-overflow-scrolling: touch;
				gap: 20px !important;
				padding: 20px 20px 25px !important;
				margin: 0 -15px !important;
				scrollbar-width: none;
				-ms-overflow-style: none;
			}
			
			.hero_sec .terminal_info::-webkit-scrollbar {
				display: none;
			}
			
			.hero_sec .terminal_info .terminal_block {
				flex: 0 0 auto !important;
				width: auto !important;
				min-width: 220px !important;
				max-width: 280px !important;
				scroll-snap-align: center;
				position: relative !important;
				margin: 0 !important;
			}
			
			.hero_sec .terminal_info .terminal_block figure {
				margin: 0 !important;
				padding: 0 !important;
				position: relative !important;
			}
			
			.hero_sec .terminal_info .terminal_block figure img {
				max-height: 320px !important;
				width: auto !important;
				height: auto !important;
				object-fit: contain !important;
				max-width: 100% !important;
			}
			
			/* Uniform play button size on mobile */
			.hero_sec .terminal_block .device_play_btn {
				width: 32px !important;
				height: 32px !important;
				margin-top: 0 !important;
				opacity: 0.7;
			}
			
			.hero_sec .terminal_block .device_play_btn svg {
				width: 12px !important;
				height: 12px !important;
			}
		}
		
		/* Mobile Scroll Hint */
		.mobile_scroll_hint {
			display: none;
			justify-content: center;
			align-items: center;
			gap: 8px;
			margin-top: 10px;
			color: rgba(0, 0, 0, 0.4);
			font-size: 12px;
			transition: opacity 0.3s ease;
		}
		
		.mobile_scroll_hint svg {
			width: 16px;
			height: 16px;
			animation: swipe-hint 2s ease-in-out infinite;
		}
		
		@keyframes swipe-hint {
			0%, 100% { transform: translateX(0); opacity: 0.4; }
			50% { transform: translateX(5px); opacity: 1; }
		}
		
		@media (max-width: 768px) {
			.mobile_scroll_hint {
				display: flex;
			}
		}
		
		/* Device Play Button Styles */
		.terminal_block {
			position: relative;
		}
		
		.device_play_btn {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 36px;
			height: 36px;
			border-radius: 50%;
			border: 1.5px solid rgba(255, 255, 255, 0.4);
			background: rgba(0, 0, 0, 0.2);
			backdrop-filter: blur(4px);
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 10;
			transition: all 0.3s ease;
			opacity: 0.6;
		}
		
		.device_play_btn svg {
			width: 14px;
			height: 14px;
			color: rgba(255, 255, 255, 0.8);
			margin-left: 2px;
			transition: all 0.3s ease;
		}
		
		.device_play_btn:hover {
			transform: translate(-50%, -50%) scale(1.1);
			background: rgba(59, 130, 246, 0.5);
			border-color: rgba(255, 255, 255, 0.7);
			opacity: 1;
		}
		
		.device_play_btn:hover svg {
			color: #fff;
		}
		
		/* Smaller play buttons for smaller devices */
		.terminal_block:nth-child(2) .device_play_btn,
		.terminal_block:nth-child(4) .device_play_btn,
		.terminal_block:nth-child(5) .device_play_btn,
		.terminal_block:nth-child(6) .device_play_btn {
			width: 28px;
			height: 28px;
		}
		
		.terminal_block:nth-child(2) .device_play_btn svg,
		.terminal_block:nth-child(4) .device_play_btn svg,
		.terminal_block:nth-child(5) .device_play_btn svg,
		.terminal_block:nth-child(6) .device_play_btn svg {
			width: 10px;
			height: 10px;
			margin-left: 1px;
		}
		
		/* Video Modal Styles */
		.video_modal {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: rgba(0, 0, 0, 0.95);
			z-index: 99999;
			align-items: center;
			justify-content: center;
			opacity: 0;
			transition: opacity 0.3s ease;
		}
		
		.video_modal.active {
			display: flex;
			opacity: 1;
		}
		
		.video_modal_backdrop {
			position: absolute;
			inset: 0;
			cursor: pointer;
		}
		
		.video_modal_container {
			position: relative;
			width: 90%;
			max-width: 1000px;
			background: #000;
			border-radius: 16px;
			overflow: hidden;
			box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
			transform: scale(0.9) translateY(20px);
			transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
		}
		
		.video_modal.active .video_modal_container {
			transform: scale(1) translateY(0);
		}
		
		.video_modal_header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 16px 20px;
			background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		}
		
		.video_modal_title {
			display: flex;
			align-items: center;
			gap: 12px;
			color: #fff;
			font-size: 16px;
			font-weight: 600;
			margin: 0;
		}
		
		.video_modal_title_icon {
			width: 36px;
			height: 36px;
			background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
			border-radius: 10px;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		
		.video_modal_title_icon svg {
			width: 20px;
			height: 20px;
			color: #fff;
		}
		
		.video_modal_close {
			width: 40px;
			height: 40px;
			border: none;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 10px;
			color: #fff;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}
		
		.video_modal_close:hover {
			background: rgba(255, 255, 255, 0.2);
			transform: rotate(90deg);
		}
		
		.video_modal_close svg {
			width: 20px;
			height: 20px;
		}
		
		.video_modal_content {
			position: relative;
			width: 100%;
			padding-top: 56.25%; /* 16:9 aspect ratio */
			background: #000;
		}
		
		.video_modal_content video {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: contain;
		}
		
		@media (max-width: 768px) {
			.device_play_btn {
				width: 28px;
				height: 28px;
				opacity: 0.5;
			}
			
			.device_play_btn svg {
				width: 10px;
				height: 10px;
			}
			
			.terminal_block:nth-child(2) .device_play_btn,
			.terminal_block:nth-child(4) .device_play_btn,
			.terminal_block:nth-child(5) .device_play_btn,
			.terminal_block:nth-child(6) .device_play_btn {
				width: 22px;
				height: 22px;
			}
			
			.terminal_block:nth-child(2) .device_play_btn svg,
			.terminal_block:nth-child(4) .device_play_btn svg,
			.terminal_block:nth-child(5) .device_play_btn svg,
			.terminal_block:nth-child(6) .device_play_btn svg {
				width: 8px;
				height: 8px;
			}
			
			.video_modal_container {
				width: 95%;
				border-radius: 12px;
			}
			
			.video_modal_header {
				padding: 12px 16px;
			}
			
			.video_modal_title {
				font-size: 14px;
				gap: 10px;
			}
			
			.video_modal_title_icon {
				width: 30px;
				height: 30px;
				border-radius: 8px;
			}
			
			.video_modal_title_icon svg {
				width: 16px;
				height: 16px;
			}
		}
		
		/* AI Models Section Styles */
		.models_sec { padding: 80px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
		.models_sec .inner { text-align: center; }
		.models_sec .global_title { margin-bottom: 10px; }
		.models_subtitle { font-size: 18px; color: #6b7280; margin-bottom: 40px; }
		.klono_featured { max-width: 700px; margin: 0 auto 40px; position: relative; }
		.klono_model { display: flex; align-items: center; padding: 24px 30px; background: #fff; border-radius: 16px; box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15); border: 2px solid transparent; background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #3b82f6, #8b5cf6); background-origin: border-box; background-clip: padding-box, border-box; transition: all 0.3s ease; text-decoration: none; }
		.klono_model:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25); }
		.klono_icon { width: 60px; height: 60px; flex-shrink: 0; margin-right: 20px; }
		.klono_icon svg { width: 100%; height: 100%; }
		.klono_info { flex: 1; text-align: left; }
		.klono_name { display: block; font-size: 20px; font-weight: 700; margin-bottom: 6px; background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
		.klono_desc { display: block; font-size: 14px; color: #6b7280; line-height: 1.5; }
		.klono_arrow { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); border-radius: 50%; color: #fff; flex-shrink: 0; margin-left: 20px; transition: transform 0.3s ease; }
		.klono_model:hover .klono_arrow { transform: translateX(5px); }
		.models_divider { display: flex; align-items: center; justify-content: center; margin: 40px 0; }
		.models_divider::befor
	/* Documentation Banner Styles */
		.docs_banner_sec { padding: 60px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
		.docs_banner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 50px 60px; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: 24px; position: relative; overflow: hidden; }
		.docs_banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%); pointer-events: none; }
		.docs_content { display: flex; align-items: center; gap: 25px; position: relative; z-index: 1; }
		.docs_icon { width: 80px; height: 80px; background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
		.docs_text h3 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px; }
		.docs_text p { font-size: 16px; color: #94a3b8; margin: 0; max-width: 500px; line-height: 1.6; }
		.docs_btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; background: #fff; color: #1e293b; text-decoration: none; border-radius: 12px; font-weight: 600; font-size: 16px; transition: all 0.3s ease; flex-shrink: 0; position: relative; z-index: 1; }
		.docs_btn:hover { background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); }
		@media (max-width: 992px) { .docs_banner { flex-direction: column; text-align: center; padding: 40px 30px; } .docs_content { flex-direction: column; } }
		
		/* Language Switcher Styles */
		.lang_switcher { display: flex; align-items: center; gap: 8px; }
		.lang_link { color: #94a3b8; text-decoration: none; font-weight: 500; font-size: 14px; padding: 6px 12px; border-radius: 6px; transition: all 0.3s ease; }
		.lang_link:hover { color: #fff; background: rgba(255,255,255,0.1); }
		.lang_link.active { color: #fff; background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); }
		.lang_divider { color: #475569; font-size: 14px; }

	/* Video Sections Shared Styles */
		.video_hero_sec {
			position: relative;
			width: 100%;
			height: 85vh;
			min-height: 600px;
			overflow: hidden;
			display: flex;
			align-items: flex-end;
			justify-content: center;
		}

		.video_hero_sec video {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			z-index: 1;
		}

		.video_hero_sec::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 250px;
			background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
			z-index: 2;
			pointer-events: none;
		}

		.video_hero_sec .video_title {
			position: relative;
			z-index: 3;
			max-width: 900px;
			padding: 0 30px 60px;
			text-align: center;
			color: #fff;
			font-size: 28px;
			font-weight: 600;
			line-height: 1.5;
			text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
		}

		/* Video Sound Controls - Center Unmute Button */
		.video_unmute_center {
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			z-index: 4;
			width: 100px;
			height: 100px;
			border-radius: 50%;
			border: 3px solid rgba(255, 255, 255, 0.8);
			background: rgba(0, 0, 0, 0.5);
			backdrop-filter: blur(10px);
			color: #fff;
			cursor: pointer;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			gap: 6px;
			transition: all 0.3s ease;
		}

		.video_unmute_center:hover {
			background: rgba(255, 255, 255, 0.2);
			border-color: #fff;
			transform: translate(-50%, -50%) scale(1.1);
		}

		.video_unmute_center svg {
			width: 36px;
			height: 36px;
		}

		.video_unmute_center span {
			font-size: 11px;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 1px;
		}

		/* Video Sound Controls - Corner Mute Button */
		.video_mute_corner {
			position: absolute;
			bottom: 30px;
			right: 30px;
			z-index: 4;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			border: 2px solid rgba(255, 255, 255, 0.5);
			background: rgba(0, 0, 0, 0.4);
			backdrop-filter: blur(10px);
			color: #fff;
			cursor: pointer;
			display: none;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.video_mute_corner:hover {
			background: rgba(255, 255, 255, 0.2);
			border-color: #fff;
			transform: scale(1.1);
		}

		.video_mute_corner svg {
			width: 24px;
			height: 24px;
		}

		/* Show/hide states */
		.video_hero_sec.playing .video_unmute_center {
			display: none;
		}

		.video_hero_sec.playing .video_mute_corner {
			display: flex;
		}

		@media (max-width: 768px) {
			.video_hero_sec {
				height: 50vh;
				min-height: 300px;
				max-height: 350px;
			}
			
			.video_hero_sec .video_title {
				font-size: 14px;
				padding: 0 15px 50px;
				line-height: 1.4;
			}
			
			.video_hero_sec::after {
				height: 150px;
			}
			
			.video_unmute_center {
				width: 60px;
				height: 60px;
			}
			
			.video_unmute_center svg {
				width: 22px;
				height: 22px;
			}
			
			.video_unmute_center span {
				font-size: 8px;
			}
			
			.video_mute_corner {
				bottom: 15px;
				right: 15px;
				width: 36px;
				height: 36px;
			}
			
			.video_mute_corner svg {
				width: 16px;
				height: 16px;
			}
		}

		/* Clickable video when unmuted */
		.video_hero_sec.playing video {
			cursor: pointer;
		}

		.video_hero_sec:not(.playing) video {
			cursor: default;
		}

		/* Restart button */
		.video_restart_btn {
			position: absolute;
			bottom: 30px;
			right: 90px;
			z-index: 4;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			border: 2px solid rgba(255, 255, 255, 0.5);
			background: rgba(0, 0, 0, 0.4);
			backdrop-filter: blur(10px);
			color: #fff;
			cursor: pointer;
			display: none;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.video_restart_btn:hover {
			background: rgba(255, 255, 255, 0.2);
			border-color: #fff;
			transform: scale(1.1);
		}

		.video_restart_btn svg {
			width: 22px;
			height: 22px;
		}

		.video_hero_sec.playing .video_restart_btn {
			display: flex;
		}

		@media (max-width: 768px) {
			.video_restart_btn {
				bottom: 15px;
				right: 58px;
				width: 36px;
				height: 36px;
			}
			
			.video_restart_btn svg {
				width: 14px;
				height: 14px;
			}
			
			/* Reduce spacing before video sections on mobile */
			.video_hero_sec {
				margin-top: -20px;
			}
			
			h2.global_title.text-center {
				font-size: 20px;
				margin-bottom: 10px;
			}
		}
		
		/* FORCE Mobile Horizontal Slider - Final Override */
		@media screen and (max-width: 768px) {
			section.hero_sec .terminal_info {
				display: flex !important;
				flex-direction: row !important;
				flex-wrap: nowrap !important;
				overflow-x: scroll !important;
				overflow-y: hidden !important;
				scroll-snap-type: x mandatory !important;
				-webkit-overflow-scrolling: touch !important;
				gap: 15px !important;
				padding: 15px 20px 20px !important;
				margin-left: -15px !important;
				margin-right: -15px !important;
				width: calc(100% + 30px) !important;
				scrollbar-width: none !important;
			}
			
			section.hero_sec .terminal_info::-webkit-scrollbar {
				display: none !important;
				width: 0 !important;
				height: 0 !important;
			}
			
			section.hero_sec .terminal_info > .terminal_block {
				flex: 0 0 auto !important;
				width: 75vw !important;
				max-width: 280px !important;
				min-width: 200px !important;
				scroll-snap-align: center !important;
				margin: 0 !important;
				padding: 0 !important;
			}
			
			section.hero_sec .terminal_info > .terminal_block > figure {
				width: 100% !important;
				display: flex !important;
				justify-content: center !important;
				align-items: flex-end !important;
				margin: 0 !important;
			}
			
			section.hero_sec .terminal_info > .terminal_block > figure > img {
				max-height: 300px !important;
				width: auto !important;
				height: auto !important;
				object-fit: contain !important;
			}
		}
ansform: translateY(-5px); box-shadow: 0 12px 30px rgba(59, 130, 246, 0.18); border-color: rgba(59, 130, 246, 0.2); }
		.model_item .model_icon { width: 32px; height: 32px; margin-right: 12px; display: flex; align-items: center; justify-content: center; }
		.model_item .model_icon svg { width: 100%; height: 100%; }
		.model_item .model_name { font-weight: 600; font-size: 16px; color: #1f2937; }
		@media (max-width: 768px) { .models_sec { padding: 50px 0; } .klono_model { flex-direction: column; text-align: center; padding: 20px; } .klono_icon { margin-right: 0; margin-bottom: 15px; } .klono_info { text-align: center; margin-bottom: 15px; } .klono_arrow { margin-left: 0; } .models_grid { gap: 15px; } .model_item { padding: 12px 20px; min-width: 130px; } .model_item .model_icon { width: 26px; height: 26px; margin-right: 10px; } }
	/* Case Studies Gallery Styles */
		.case_studies_sec { padding: 80px 0; background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
		.case_studies_sec .inner { text-align: center; }
		.case_studies_sec .global_title { margin-bottom: 10px; }
		.case_studies_subtitle { font-size: 18px; color: #6b7280; margin-bottom: 50px; }
		.gallery_wrapper { display: flex; align-items: center; gap: 20px; max-width: 1100px; margin: 0 auto; }
		.gallery_arrow { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #e5e7eb; background: #fff; color: #374151; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0; }
		.gallery_arrow:hover { border-color: #3b82f6; color: #3b82f6; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2); }
		.gallery_container { flex: 1; overflow: hidden; position: relative; }
		.gallery_track { display: flex; gap: 20px; transition: transform 0.5s ease; will-change: transform; }
		.gallery_item { flex-shrink: 0; width: 320px; height: 220px; border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transition: all 0.3s ease; }
		.gallery_item:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
		.gallery_item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
		.gallery_item:hover img { transform: scale(1.1); }
		.gallery_overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; color: #fff; }
		.gallery_item:hover .gallery_overlay { opacity: 1; }
		.gallery_video .gallery_play { opacity: 1; background: transparent; }
		.gallery_video:hover .gallery_play svg circle { fill: rgba(255,255,255,1); }
		.gallery_video .gallery_play svg { transition: transform 0.3s ease; }
		.gallery_video:hover .gallery_play svg { transform: scale(1.1); }
		.lightbox_modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; }
		.lightbox_modal.active { display: flex; }
		.lightbox_close { position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; border: none; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 10; }
		.lightbox_close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
		.lightbox_content { max-width: 90vw; max-height: 85vh; display: flex; align-items: center; justify-content: center; }
		.lightbox_content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
		.lightbox_nav { position: absolute; top: 50%; transform: translateY(-50%); width: 60px; height: 60px; border: none; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
		.lightbox_nav:hover { background: rgba(255,255,255,0.2); }
		.lightbox_prev { left: 30px; }
		.lightbox_next { right: 30px; }
		.lightbox_counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 16px; font-weight: 500; background: rgba(0,0,0,0.5); padding: 8px 20px; border-radius: 20px; }
		@media (max-width: 768px) { .case_studies_sec { padding: 50px 0; } .gallery_wrapper { gap: 10px; } .gallery_arrow { width: 40px; height: 40px; } .gallery_track { gap: 15px; } .gallery_item { width: 260px; height: 180px; } .lightbox_nav { width: 45px; height: 45px; } .lightbox_prev { left: 10px; } .lightbox_next { right: 10px; } }
	/* Integrations Carousel Styles */
		.integrations_sec { padding: 80px 0; background: #fff; overflow: hidden; }
		.integrations_sec .inner { text-align: center; }
		.integrations_sec .global_title { margin-bottom: 10px; }
		.integrations_subtitle { font-size: 18px; color: #6b7280; margin-bottom: 50px; }
		.carousel_wrapper { display: flex; align-items: center; gap: 20px; max-width: 1100px; margin: 0 auto; }
		.carousel_arrow { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #e5e7eb; background: #fff; color: #374151; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; flex-shrink: 0; }
		.carousel_arrow:hover { border-color: #3b82f6; color: #3b82f6; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2); }
		.carousel_container { flex: 1; overflow: hidden; position: relative; }
		.carousel_track { display: flex; gap: 30px; transition: transform 0.5s ease; will-change: transform; }
		.integration_item { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 20px; min-width: 120px; background: #f9fafb; border-radius: 12px; transition: all 0.3s ease; }
		.integration_item:hover { background: #f3f4f6; transform: translateY(-3px); }
		.integration_item svg { width: 48px; height: 48px; }
		.integration_item span { font-size: 14px; font-weight: 500; color: #374151; }
		.integrations_link { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; padding: 14px 28px; background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%); color: #fff; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 15px; transition: all 0.3s ease; }
		.integrations_link:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35); }
		@media (max-width: 768px) { .integrations_sec { padding: 50px 0; } .carousel_wrapper { gap: 10px; } .carousel_arrow { width: 40px; height: 40px; } .carousel_track { gap: 15px; } .integration_item { min-width: 100px; padding: 15px; } .integration_item svg { width: 36px; height: 36px; } }
/* Top Alert Banner */
.top_alert_slim {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: #fff;
    padding: 8px 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
}
.top_alert_slim_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.top_alert_slim_text {
    font-size: 14px;
    font-weight: 500;
}
.top_alert_slim_text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}
.top_alert_slim_text a:hover {
    text-decoration: none;
}
.countdown_slim {
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
}
.countdown_slim span:not(.countdown_slim_separator) {
    background: none;
    padding: 2px 4px;
    border-radius: 3px;
    min-width: 20px;
    text-align: center;
    font-size: 11px;
}
.countdown_slim_separator {
    opacity: 0.6;
    font-size: 10px;
}
@media (max-width: 768px) {
    .top_alert_slim { padding: 6px 15px; }
    .top_alert_slim_content { gap: 10px; }
    .top_alert_slim_text { font-size: 12px; }
    .countdown_slim { font-size: 10px; padding: 3px 8px; }
    .countdown_slim span:not(.countdown_slim_separator) { font-size: 10px; padding: 1px 3px; min-width: 18px; background: none; }
}
@media (max-width: 480px) {
    .top_alert_slim_content { flex-direction: column; gap: 6px; }
    .top_alert_slim_text { font-size: 11px; }
}

/* Signup Modal */
.signup_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.signup_modal.active { display: flex; }
.signup_modal_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}
.signup_modal_container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}
.signup_modal.active .signup_modal_container {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.signup_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.signup_modal_close:hover { background: #e5e7eb; transform: rotate(90deg); }
.signup_modal_close svg { width: 18px; height: 18px; color: #6b7280; }
.signup_modal_header { text-align: center; margin-bottom: 30px; }
.signup_modal_icon { font-size: 48px; margin-bottom: 15px; }
.signup_modal_title { font-size: 24px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.signup_modal_subtitle { font-size: 14px; color: #6b7280; line-height: 1.6; }
.signup_form_group { margin-bottom: 20px; }
.signup_form_group label { display: block; font-size: 14px; font-weight: 600; color: #374151; margin-bottom: 8px; }
.signup_form_group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.2s;
    box-sizing: border-box;
}
.signup_form_group input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.signup_submit_btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}
.signup_submit_btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35); }
.signup_submit_btn svg { width: 18px; height: 18px; }
.signup_note { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 15px; }
.signup_note a { color: #3b82f6; text-decoration: none; }
.signup_success { display: none; text-align: center; padding: 20px 0; }
.signup_success.active { display: block; }
.signup_form.hidden { display: none; }
.signup_success_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.signup_success_icon svg { width: 35px; height: 35px; color: #fff; }
.signup_success_title { font-size: 22px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.signup_success_text { font-size: 14px; color: #6b7280; line-height: 1.6; }

/* Compact header */
.header_sec.header_compact {
	padding: 10px 0;
	position: sticky;
	top: 0;
	background: transparent;
	z-index: 10000;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header_sec.header_compact.scrolled {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header_sec.header_compact .inner {
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
}
.header_sec.header_compact .logo img {
	max-height: 30px;
}
.nav_link {
	color: #1f2937;
	font-weight: 500;
	text-decoration: none;
	margin-right: 20px;
	transition: color 0.2s;
	font-size: 14px;
}
.nav_link:hover {
	color: #3b82f6;
}
.btn_info {
	display: flex;
	align-items: center;
	gap: 8px;
}
.btn_info .btns.primary {
	padding: 10px 18px;
	font-size: 14px;
}
/* Mobile menu button */
.mobile_menu_btn {
	display: none;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	z-index: 10001;
	position: relative;
}
.mobile_menu_btn svg {
	width: 24px;
	height: 24px;
	color: #1f2937;
}
.mobile_menu_btn .icon_close {
	display: none;
}
.mobile_menu_btn.active .icon_menu {
	display: none;
}
.mobile_menu_btn.active .icon_close {
	display: block;
}
/* Mobile responsive header */
@media (max-width: 768px) {
	.header_sec.header_compact {
		padding: 8px 0;
		position: sticky;
		top: 0;
		background: transparent;
		z-index: 10000;
	}
	.header_sec.header_compact.scrolled {
		background: #fff;
	}
	.header_sec.header_compact .logo img {
		max-height: 26px;
	}
	.mobile_menu_btn {
		display: block;
	}
	.btn_info {
		position: fixed;
		top: 0;
		right: -100%;
		width: 260px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 70px 20px 20px;
		gap: 0;
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 10002;
	}
	.btn_info.active {
		right: 0;
	}
	.btn_info .nav_link {
		margin-right: 0;
		padding: 15px 0;
		border-bottom: 1px solid #e5e7eb;
		font-size: 16px;
	}
	.btn_info .btns.primary {
		margin-top: 20px;
		text-align: center;
		padding: 14px 20px;
	}
	/* Mobile menu overlay */
	.mobile_menu_overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 10001;
	}
	.mobile_menu_overlay.active {
		display: block;
	}
}
/* Terminal block setup */
.terminal_block {
	position: relative;
}

.terminal_block figure {
	position: relative;
}

/* Introduce Button - Material Design Overlay from Bottom */
.device_play_btn {
	position: absolute !important;
	bottom: 0 !important;
	left: 0 !important;
	right: 0 !important;
	top: auto !important;
	transform: none !important;
	width: 100% !important;
	height: auto !important;
	border-radius: 0 0 12px 12px !important;
	border: none !important;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%) !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 35px 20px 18px !important;
	z-index: 10;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1 !important;
	color: #fff;
}

.device_play_btn svg {
	width: 18px !important;
	height: 18px !important;
	color: #fff !important;
	margin-left: 0 !important;
	flex-shrink: 0;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
	transition: transform 0.3s ease;
}

.device_play_btn::after {
	content: 'Introduce';
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.3px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
	transition: all 0.3s ease;
}

/* Hover effect - Material Design ripple-like */
.device_play_btn:hover {
	background: linear-gradient(to top, rgba(59, 130, 246, 0.95) 0%, rgba(59, 130, 246, 0.7) 50%, transparent 100%) !important;
	padding-bottom: 22px !important;
}

.device_play_btn:hover svg {
	transform: scale(1.2);
}

.device_play_btn:hover::after {
	letter-spacing: 1px;
}

/* Active/click effect */
.device_play_btn:active {
	padding-bottom: 16px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.device_play_btn {
		padding: 30px 15px 14px !important;
		gap: 8px;
	}
	
	.device_play_btn svg {
		width: 14px !important;
		height: 14px !important;
	}
	
	.device_play_btn::after {
		font-size: 13px;
	}
	
	.device_play_btn:hover {
		padding-bottom: 18px !important;
	}
}

/* Terminal block setup */
.terminal_block {
	position: relative;
}

.terminal_block figure {
	position: relative;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

/* Remove gap between hero section and next section */
.hero_sec {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.terminal_info {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

/* Introduce Button - Small Pill at Bottom */
.device_play_btn {
	position: absolute !important;
	bottom: 8px !important;
	left: 50% !important;
	right: auto !important;
	top: auto !important;
	transform: translateX(-50%) !important;
	width: auto !important;
	height: auto !important;
	border-radius: 20px !important;
	border: none !important;
	background: rgba(0, 0, 0, 0.9) !important;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 7px 14px !important;
	z-index: 10;
	transition: background 0.2s ease;
	opacity: 1 !important;
	color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.device_play_btn svg {
	width: 11px !important;
	height: 11px !important;
	color: #fff !important;
	margin-left: 0 !important;
	flex-shrink: 0;
}

.device_play_btn::after {
	content: 'Introduce';
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}

/* Hover effect - blue color */
.device_play_btn:hover {
	background: rgba(59, 130, 246, 0.9) !important;
	transform: translateX(-50%) !important;
	padding: 7px 14px !important;
	width: auto !important;
	height: auto !important;
}

/* Active/click effect */
.device_play_btn:active {
	background: rgba(59, 130, 246, 1) !important;
	transform: translateX(-50%) !important;
}

/* Mobile - same pill button at bottom */
@media (max-width: 768px) {
	.device_play_btn,
	.terminal_block .device_play_btn,
	.hero_sec .device_play_btn,
	.hero_sec .terminal_block .device_play_btn {
		bottom: 8px !important;
		top: auto !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		padding: 6px 12px !important;
		border-radius: 18px !important;
		background: rgba(0, 0, 0, 0.9) !important;
		gap: 5px !important;
		width: auto !important;
		height: auto !important;
		display: inline-flex !important;
	}
	
	.device_play_btn svg,
	.terminal_block .device_play_btn svg,
	.hero_sec .device_play_btn svg {
		width: 10px !important;
		height: 10px !important;
		margin-left: 0 !important;
	}
	
	.device_play_btn::after,
	.terminal_block .device_play_btn::after,
	.hero_sec .device_play_btn::after {
		content: 'Introduce' !important;
		display: inline !important;
		font-size: 11px !important;
	}
	
	.device_play_btn:hover,
	.terminal_block .device_play_btn:hover {
		background: rgba(59, 130, 246, 0.9) !important;
		transform: translateX(-50%) !important;
		border-radius: 18px !important;
	}
	
	.device_play_btn:active,
	.terminal_block .device_play_btn:active {
		background: rgba(59, 130, 246, 1) !important;
		transform: translateX(-50%) !important;
	}
}
/* ============================================
   MODELS SECTION FIX - Add this to new.css
   Replace the broken models_divider line
   ============================================ */

/* Models Divider */
.models_divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
}
.models_divider::before,
.models_divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e5e7eb;
	max-width: 200px;
}
.models_divider span {
	padding: 0 20px;
	font-size: 14px;
	color: #6b7280;
	font-weight: 500;
}

/* Models Grid */
.models_grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}
.model_item {
	display: flex;
	align-items: center;
	padding: 16px 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border: 1px solid #f3f4f6;
	transition: all 0.3s ease;
	min-width: 150px;
}
.model_item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(59, 130, 246, 0.18);
	border-color: rgba(59, 130, 246, 0.2);
}
.model_item .model_icon {
	width: 32px;
	height: 32px;
	margin-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.model_item .model_icon svg {
	width: 100%;
	height: 100%;
}
.model_item .model_name {
	font-weight: 600;
	font-size: 16px;
	color: #1f2937;
}

@media (max-width: 768px) {
	.models_grid {
		gap: 15px;
	}
	.model_item {
		padding: 12px 20px;
		min-width: 130px;
	}
	.model_item .model_icon {
		width: 26px;
		height: 26px;
		margin-right: 10px;
	}
}
/* ============================================
   FOOTER SPACING FIX - Add to new.css
   ============================================ */

/* Add gap before footer */
.docs_banner_sec {
	margin-bottom: 60px;
}

.footer_sec {
	margin-top: 60px;
}

@media (max-width: 768px) {
	.docs_banner_sec {
		margin-bottom: 40px;
	}
	
	.footer_sec {
		margin-top: 40px;
	}
}
.docs_banner_sec {
	margin-top: 60px;
	margin-bottom: 60px;
}
@media (max-width: 768px) {
	.hero_sec .container {
		position: relative;
		overflow: hidden;
	}
	
	.mobile_slider_arrow {
		display: none !important;
	}
}
/* ============================================
   MOBILE SLIDER FIX - Add to new.css
   Arrows + First element alignment
   ============================================ */

@media (max-width: 768px) {
	/* Container positioning for arrows */
	.hero_sec .container {
		position: relative;
	}
	
	/* Mobile Slider Arrows */
	.mobile_slider_arrow {
		display: flex !important;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.95);
		border: 1px solid #e5e7eb;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 100;
		transition: all 0.2s ease;
	}
	
	.mobile_slider_arrow:hover {
		background: #fff;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}
	
	.mobile_slider_arrow svg {
		width: 18px;
		height: 18px;
		color: #374151;
	}
	
	.mobile_slider_prev {
		left: 5px;
	}
	
	.mobile_slider_next {
		right: 5px;
	}
	
	/* First element padding fix - align first item properly */
	.hero_sec .terminal_info {
		scroll-padding-left: 20px;
		padding-left: 20px !important;
	}
	
	/* Snap to first element */
	.hero_sec .terminal_info > .terminal_block:first-child {
		scroll-snap-align: start;
	}
	
	/* Serve section slider arrows */
	.serve_slider_arrow {
		display: flex !important;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.2);
		border: 1px solid rgba(255, 255, 255, 0.3);
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 100;
		transition: all 0.2s ease;
	}
	
	.serve_slider_arrow svg {
		width: 18px;
		height: 18px;
		color: #fff;
	}
	
	.serve_slider_prev {
		left: 10px;
	}
	
	.serve_slider_next {
		right: 10px;
	}
	
	.serve_sec .inner {
		position: relative;
	}
}
/* ============================================
   MOBILE SLIDER FIX - Add to new.css
   Arrows + First element alignment
   ============================================ */

@media (max-width: 768px) {
	/* Container positioning for arrows */
	.hero_sec .container {
		position: relative;
	}
	
	/* Mobile Slider Arrows */
	.mobile_slider_arrow {
		display: flex !important;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.95);
		border: 1px solid #e5e7eb;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 100;
		transition: all 0.2s ease;
	}
	
	.mobile_slider_arrow:hover {
		background: #fff;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}
	
	.mobile_slider_arrow svg {
		width: 18px;
		height: 18px;
		color: #374151;
	}
	
	.mobile_slider_prev {
		left: 5px;
	}
	
	.mobile_slider_next {
		right: 5px;
	}
	
	/* Center first element - add padding on both sides */
	.hero_sec .terminal_info {
		padding-left: calc((100vw - 280px) / 2) !important;
		padding-right: calc((100vw - 280px) / 2) !important;
		scroll-snap-type: x mandatory;
	}
	
	/* All items snap to center */
	.hero_sec .terminal_info > .terminal_block {
		scroll-snap-align: center !important;
	}
	
	/* Serve section slider arrows */
	.serve_slider_arrow {
		display: flex !important;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.2);
		border: 1px solid rgba(255, 255, 255, 0.3);
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 100;
		transition: all 0.2s ease;
	}
	
	.serve_slider_arrow svg {
		width: 18px;
		height: 18px;
		color: #fff;
	}
	
	.serve_slider_prev {
		left: 10px;
	}
	
	.serve_slider_next {
		right: 10px;
	}
	
	.serve_sec .inner {
		position: relative;
	}
}
@media (max-width: 768px) {
	/* Serve section horizontal slider */
	.serve_sec .serve_info {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 20px !important;
		padding: 20px calc((100vw - 200px) / 2) !important;
		scrollbar-width: none;
	}
	
	.serve_sec .serve_info::-webkit-scrollbar {
		display: none;
	}
	
	.serve_sec .serve_info .serve_block {
		flex: 0 0 auto !important;
		min-width: 200px !important;
		scroll-snap-align: center;
	}
}
@media (max-width: 768px) {
	.hero_sec .terminal_info {
		padding-left: calc(50vw - 110px) !important;
		padding-right: calc(50vw - 110px) !important;
		scroll-snap-type: x mandatory;
	}
	
	.hero_sec .terminal_info > .terminal_block {
		scroll-snap-align: center !important;
	}
}

