:root {
	--primary-orange: #FF7844;
	/* Adjusted to match image brightness */
	--dark-orange: #f72;
	--btn-orange: #FF7F50;
	--text-dark: #1a1a1a;
	--text-dark: #222;
	--bg-color: #fffbf6;
	--border-orange: #ffab85;
}

body {
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
}

header {
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	box-shadow: rgba(0, 0, 0, .062) 0px 10px 50px;
	border: 1px solid #eee;
}

/* --- Navbar --- */
.text-orange {
	color: var(--dark-orange);
}

.navbar-brand {
	font-weight: 800;
	letter-spacing: -1px;
}

.btn-contact {
	background-color: var(--btn-orange);
	color: white;
	border-radius: 10px;
	padding: 10px 20px;
	font-weight: normal;
	font-size: 14px;
	transition: all 0.3s ease;
}

.card-icon img {
	width: 50px;
}

.btn-contact:hover {
	background-color: var(--dark-orange);
	color: white;
	transform: translateY(-1px);
}

/* --- Hero Section --- */
/* =========================================
   NEW LIGHT HERO SECTION WITH CONNECTED DOTS
   ========================================= */

/* --- 1. Section Container & Main Background --- */
.hero-section {
	/* New Light Gradient: White to very light peach */
	background: linear-gradient(180deg, #FFFFFF 30%, #FFF0E5 100%);
	position: relative;
	padding: 80px 0 100px 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* --- 2. The Connected Dots Network Pattern --- */
.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0.5;
	/* Keep it subtle so text pops */

	/* This is an SVG data-URI defining the connected dots pattern.
       It uses the brand orange color (#F05A22) with low opacity.
    */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cdefs%3E%3Cpattern id='network-grid' width='200' height='200' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='3' fill='%23F05A22' opacity='0.3'/%3E%3Ccircle cx='100' cy='120' r='2.5' fill='%23F05A22' opacity='0.3'/%3E%3Ccircle cx='180' cy='40' r='3' fill='%23F05A22' opacity='0.3'/%3E%3Ccircle cx='80' cy='180' r='2' fill='%23F05A22' opacity='0.3'/%3E%3Cpath d='M20 20 L100 120 M100 120 L180 40 M20 20 L180 40 M100 120 L80 180' stroke='%23F05A22' stroke-width='1' opacity='0.15' fill='none'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23network-grid)'/%3E%3C/svg%3E");

	/* Ensure pattern repeats */
	background-repeat: repeat;

	/* The slow floating animation */
	animation: float-network 80s linear infinite;
}

/* Animation Keyframes to move the pattern slowly */
@keyframes float-network {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 200px 200px;
	}

	/* Move by one tile size for seamless loop */
}

/* --- 3. Hide the Old Chevron Shape --- */
/* The sharp geometric shape doesn't fit the new organic network style */
.hero-chevron {
	display: none;
}

.trasn {
	transform: rotate(3deg);
	z-index: 9;
	position: relative;

}

.stick-label {
	background: #ffbc2b;
	padding: 10px;
	border-radius: 5px;
	z-index: 5;
	position: relative;
	box-shadow: rgba(13, 76, 253, .5607843137) 5px 5px 0px 0px
}

@media screen and (max-width: 760px) {
	.stick-label {
		font-size: 10px;
	}
}

/* Particles Container */
#tsparticles {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	/* Behind content */
}

/* --- Typography (Dark Mode for Light BG) --- */

/* Badge */
.hero-badge {
	background: #ffeee0;
	border: 1px solid #ed6b0b6b;
	color: #f72;
	width: auto;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	display: inline-block;
}


/* Description */
.hero-desc {
	font-size: 18px;
	max-width: 800px;
	display: inline-block;
}

/* CTA Button (Black for Contrast) */
.btn-cta {
	background-color: #111111;
	color: white;
	padding: 16px 36px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
	color: white;
	background-color: #333;
	transform: translateY(-2px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

#particles {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
}

/* Micro Copy */
.hero-micro {
	font-size: 0.85rem;
	color: #888;
	margin-top: 15px;
	font-weight: 500;
}

/* --- Original Stacked Images Style --- */
.image-stack {
	position: relative;
	height: 500px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.img-card {
	position: absolute;
	width: 320px;
	height: 380px;
	border-radius: 24px;
	border: 8px solid #ffffff;
	/* Thick White Border */
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	background-color: #eee;
}

.img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Top Card: Rotated Right */
.card-top {
	z-index: 4;
	top: 18px;
	left: 100px;
	transform: rotate(3deg);
}

/* Bottom Card: Rotated Left */
.card-bottom {
	z-index: 3;
	top: 225px;
	left: -20px;
	transform: rotate(-3deg);
}

.white-desc {
	padding: 10px;
    border: solid 1px #fff;
    border-radius: 10px;
    color: #fff;
	font-size: 13px !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.hero-title {
		font-size: 2.2rem;
	}

	.hero-section {
		padding: 60px 0;
	}

	.hero-content {
		text-align: left;
	}

	/* Adjust image stack for smaller screens if needed */
	.image-stack {
		height: 450px;
	}

	.img-card {
		width: 280px;
		height: 340px;
	}

	.card-top {
		left: 50%;
		transform: translateX(-40%) rotate(3deg);
	}

	.card-bottom {
		left: 50%;
		transform: translateX(-60%) rotate(-3deg);
	}
}

.patn_strip {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	margin: 0;
	padding: 0;
}

.patn_strip li {
	height: 6px;
	margin-bottom: 1px;
	list-style-type: none;
}

/* --- Hero Text Content --- */

/* Update this specific class in your style.css */


.hero-title {
	font-weight: 600;
	/* font-size: 3rem; */
	line-height: 1.2;
	/* letter-spacing: -1px; */
	/* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	font-size: 40px;
	line-height: 60px;
}

.hero-title span {
	font-size: 50px;
	color: #f72;
}


.hero-micro {
	font-size: 0.8rem;
	opacity: 0.7;
	margin-top: 15px;
}


/* --- Animation Utilities --- */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.delay-200 {
	transition-delay: 0.2s;
}


/* new sections */


.welcome-spt {
	padding: 100px 0 100px 0
}

.welcome-spt .arrow {
	width: 136px;
	height: 62px;
	position: relative;
	right: -35px
}

.welcome-spt h2 {
	font-weight: 600;
	font-size: 35px
}

.orange-text {
	color: #ff7f27;
}

.submit-btn {
	border: none;
	font-size: 18px
}

.submit-btn:hover {
	background-color: #000;
	border-color: #000
}


.right-panel {
	background-color: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0px 0rem 2rem 10px rgba(0, 0, 0, .23);
	max-width: 600px
}

.form-col {
	position: relative;
	top: auto;
	/* bottom: -50px */
}
.form-col h3{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px
}

.form-col h5{
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f72
}

.form-control {
	border-radius: .375rem;
	padding: .75rem 1rem;
	border-color: #f72
}


.underline-svg {
	position: relative;
	display: inline-block
}

.arrow-svg {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 80px;
	height: 80px
}

.orange_txt {
	color: #ff7f27;
}

.accordion-body {
	font-size: 18px;
	color: #212529bf;
}

.accordion-button {
	font-size: 18px;
	background-color: none;
	border: #ff7f27 solid 1px;
	padding: 15px 10px;
	color: #212529bf;
}

.accordion-button:not(.collapsed) {
	background-color: #ff7f27;
	border: #ff7f27 solid 1px;
	color: #fff;
	box-shadow: none;
}

@media(max-width: 991.98px) {
	.left-panel {
		margin-bottom: 2rem
	}

	.right-panel {
		margin-bottom: 2rem;
		padding: 2rem
	}
}


/* midd2 */
.lead {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
}


.middle-bef-after {
	background: linear-gradient(180deg, #fff3ed 0%, #fff 74%);
	padding: 100px 0
}

.title span {
	color: #f72
}

.col-bfaf {
	position: relative;
	box-shadow: rgba(0, 0, 0, .1) 0px 4px 12px
}

.text-acc {
	font-size: 20px
}

.text-acc span {
	color: #f72
}

.col-bfaf .label-bf {
	position: absolute;
	top: -34px;
	left: 23px
}

.list-stars li {
	position: relative;
	list-style-type: none;
	padding: 10px 30px;
	font-size: 18px
}

.list-stars li::before {
	content: "";
	position: absolute;
	background: url(../img/li_icon.png) no-repeat;
	display: block;
	width: 25px;
	height: 25px;
	left: -4px
}

.list-stars.star-white li::before {
	background: url(../img/choice_li.png) no-repeat
}

.comm_text h2 {
	font-size: 35px;
	font-weight: 600;
	color: #000;
	margin-bottom: 20px;
}

.comm_text span {
	font-weight: 400;
	color: #f72;
}

.btn_com {
	background: #f72;
	padding: 15px 30px;
	color: #fff;
	border-radius: 10px;
	transition: ease-in .5s;
	transition: ease-in .5s;
	position: relative;
	z-index: 9;
	font-size: 16px
}

.btn_com:hover {
	color: #fff;
	background: #000;
	transition: ease-in .5s
}

/* choic sec */

.choice-section {
	background: #000 url(../img/choicebg.jpg);
	padding: 100px 0
}

.our-promise {
	padding: 100px 0
}

.choice-box {
	background: #fff;
	padding: 50px;
	position: relative
}

.choice-box.choice1 {
	border: 1px solid #ff7f27;
	background: #fff url(../img/choice1.svg) no-repeat;
	background-position: right bottom
}

.choice-box.choice2 {
	background: #e64830;
	background: linear-gradient(0deg, rgb(230, 72, 48) 0%, rgb(233, 105, 11) 100%)
}

.choice-box.choice2 .img-get {
	position: absolute;
	right: 0;
	bottom: -8px
}

.choice-box .title {
	font-size: 26px
}

/*  */

@media screen and (max-width: 768px) {
	.welcome-spt {
		padding: 60px 0;
	}

	.welcome-spt h2 {
		font-weight: 600;
		font-size: 25px;
	}

	.welcome-spt .right-panel.form-col {
		bottom: 0px;
	}

	.lead {
		font-size: 14px;
		font-weight: 400;
	}


	.form-label {
		font-weight: 600;
		font-size: .9rem;
	}


	.middle-bef-after {
		padding: 60px 0;
	}

	.comm_text h2 {
		font-size: 25px;
	}

	.list-stars li {
		font-size: 14px;
	}

	.btn_com {
		width: 100%;
		display: block;
		font-size: 1rem;
	}


	.choice-section {
		padding: 60px 0;
	}

	.choice-box .title {
		font-size: 20px;
	}

	.choice-box.choice1 {
		background-size: 200px;
		background-position: right -40px bottom 0;
	}

	.header-text p {
		font-size: 14px !important;
	}

	.pill-banner p {
		font-size: 14px !important;
	}

	.img-get img {
		height: 135px;
	}

	.accordion-body {
		font-size: 14px;
	}

	.accordion-button {
		font-size: 14px;
	}
}


@media screen and (max-width: 890px) {
	.right-panel {
		max-width: initial;
	}
}


/* new sections end */


/* --- 8 Interfaces Section --- */
.interfaces-section {
	position: relative;
	padding: 80px 0;
	/* Dark overlay + Background Image */
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
		url('../img/team-bg1.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	/* Optional: creates parallax feel */
	color: white;
}

.interfaces-title {
	font-size: 35px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 40px;
}

/* --- Card Design --- */
.interface-card {
	background: white;
	border-radius: 15px;
	padding: 40px 25px 30px;
	/* Top padding creates space for number */
	text-align: center;
	color: #333;
	position: relative;
	height: 100%;
	/* Makes all cards same height */
	margin-top: 25px;
	/* Space for the floating number to stick out */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.interface-card:hover {
	transform: translateY(-5px);
}

/* Floating Number Badge */
.card-number {
	position: absolute;
	top: -25px;
	/* Moves it halfway out the top */
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
	background-color: #f72;
	/* Brand Orange */
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 4px solid #fff;
	/* White ring around it */
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Icon */
.card-icon {
	font-size: 2.5rem;
	color: transparent;
	/* Use stroke effect or just orange color */
	/* To mimic the line-art style in image, we just use orange text for FontAwesome */
	color: #f72;
	margin-bottom: 20px;
	margin-top: 10px;
}

.card-title {
	font-size: 1.1rem;
	font-weight: 500;
	color: #f72;
	margin-bottom: 15px;
}

.card-desc {
	font-size: 0.9rem;
	color: #555;
	line-height: 1.5;
	margin-bottom: 0;
}

/* Animation State */
.fade-in-card {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-card.visible {
	opacity: 1;
	transform: translateY(0);
}

/* --- Benefits / "What You'll Get" Section --- */
.benefits-section {
	padding: 100px 0;
	background-color: #fff;
	overflow-x: hidden;
}

.benefits-title {
	font-size: 35px;
	font-weight: 600;
	color: #000;
}

/* --- Benefit List Item Layout --- */
.benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	position: relative;
}

/* 1. Large Left Icon */
.benefit-icon {
	width: 70px;
	height: 70px;
	background-color: #f72;
	/* Brand Orange */
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1.8rem;
	flex-shrink: 0;
	/* Prevents shrinking */
	box-shadow: 0 5px 15px rgba(240, 90, 34, 0.3);
	z-index: 2;
}

/* 2. Dashed Connector Line */
.benefit-connector {
	width: 40px;
	/* Length of the line */
	height: 2px;
	border-top: 2px dashed #FDB58C;
	/* Light orange dashed line */
	flex-shrink: 0;
}

/* 3. The Content Card */
.benefit-card {
	background-color: #FFF0E6;
	/* Light Peach Background */
	padding: 25px 30px 25px 40px;
	/* Left padding accommodates the badge */
	border-radius: 12px;
	position: relative;
	flex-grow: 1;
	/* Takes remaining width */
	transition: transform 0.3s ease;
}

.benefit-card:hover {
	transform: translateX(5px);
}

/* The Number Badge (1, 2, 3) attached to the card */
.step-badge {
	position: absolute;
	left: -18px;
	/* Pulls it slightly outside the card */
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background-color: #f72;
	color: white;
	border: 3px solid #FFF0E6;
	/* Matches card bg to blend */
	border-radius: 50%;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}

.b-card-title {
	font-size: 1.1rem;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.b-card-text {
	font-size: 0.95rem;
	color: #444;
	margin-bottom: 0;
	line-height: 1.5;
}

/* CTA Button Specifics */
.btn-cta-orange {
	background: #f72;
	padding: 15px 30px;
	color: #fff;
	border-radius: 10px;
	transition:
		ease-in 0.5s;
	transition:
		ease-in 0.5s;
	position: relative;
	z-index: 999;
}

.btn-cta-orange:hover {
	background-color: #D14912;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(232, 93, 36, 0.4);
}

/* --- Right Side Images --- */
.benefits-image-stack {
	position: relative;
	padding: 20px;
}

/* The Main Background Image (Dark Kiosk Style) */
.img-kiosk {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	/* Aspect ratio to mimic the poster */
	aspect-ratio: 3/4;
}

.img-kiosk img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8);
	/* Darkens it slightly like the example */
}

/* The Floating Overlay Image */
.img-overlay {
	position: absolute;
	bottom: -30px;
	right: -20px;
	width: 60%;
	border-radius: 20px;
	border: 5px solid #fff;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.img-overlay img {
	width: 100%;
	height: auto;
	display: block;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
	.benefit-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.benefit-connector {
		width: 2px;
		height: 30px;
		border-top: none;
		border-left: 2px dashed #FDB58C;
		margin-left: 35px;
		/* Center with icon */
	}

	.benefit-card {
		width: 100%;
	}

	.step-badge {
		left: 20px;
		top: -18px;
		/* Move to top on mobile */
		transform: none;
	}

	.img-overlay {
		position: relative;
		bottom: 0;
		right: 0;
		width: 90%;
		margin-top: -50px;
		margin-left: auto;
	}
}

/* --- Base Quiz Styles --- */

/* --- Exact Testimonial CSS --- */


footer {
	padding-bottom: 0;
	background: #1a1a1a;
	color: #fff;
}


footer {
	padding: 100px 0
}

@media screen and (max-width: 960px) {
	footer {
		padding: 50px 0
	}
}

footer {
	padding-bottom: 0;
	background: #1a1a1a;
	color: #fff
}

footer ul {
	padding: 0
}

footer ul li {
	list-style: none
}

footer ul li a {
	padding: 5px 0;
	transition: .3s ease-in;
	display: block;
	color: #fff;
	text-decoration: none;
}

footer ul li a:hover {
	transform: translateX(5px);
	color: #f72;
	transition: .3s ease-in
}

footer .footer_widget h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 23px
}

footer .footer_widget p {
	font-size: 12px;
	margin-bottom: 20px;
	line-height: 22px
}

footer .footer_widget .info-address h3 {
	margin-bottom: 0
}

footer .footer_widget .info-address p {
	font-size: 14px
}

footer .footer_info .info {
	font-weight: bold;
	font-size: 15px
}

footer .footer_info .info.info_mail {
	font-weight: inherit
}

footer .footer_info .info a {
	color: #fff !important
}

footer .copy .inner {
	border-top: 1px solid #f72
}

footer .copy .inner ul li {
	padding-right: 20px;
	display: inline-block
}

footer .copy .inner ul li a {
	text-decoration: none;
	color: #fff;
	font-size: 13px
}

footer .copy .inner ul li:last-child {
	padding-right: 0px
}

.back-to-top {
	background: #f72;
	padding: 10px;
	border-radius: 10px;
	width: 100px;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 5px;
	font-size: 12px;
	position: absolute;
	right: 0;
	top: -123px;
	transition:
		ease-in-out .5s;
	cursor: pointer;
	z-index: 99;
}

.social_icon {
	display: flex;
	gap: 20px;
	justify-content: flex-end;
	align-items: center;
}

a {
	text-decoration: none;

}


@media screen and (max-width: 490px) {
	.hero-title {
		font-size: 31px;
		text-align: center;
	}


	.subpill {

		text-align: center;
	}

	.orange-hero-title {

		text-align: center;
	}

	.orange-hero-desc {
		text-align: center;
	}

	.btn_mob_al {
		display: flex !important;
		align-items: center !important;
	}

	.orange-hero-micro {

		text-align: center;
	}


	.image-stack {
		position: relative;
		height: 327px;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 74px;
	}

	.img-card {
		position: absolute;
		width: 214px;
		height: 229px;
		border-radius: 24px;
		border: 6px solid #fff;
		overflow: hidden;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
		padding: 6px;
	}

	.hero-badge {

		font-weight: 600;
		font-size: 12px;

		text-align: center;
		width: 80%;
		margin-left: auto;
		display: flex;
		margin-right: auto;
	}

	.hero-desc {
		font-size: 12px;
		max-width: 100%;

	}

	.hero-micro {
		font-size: 0.8rem;
		opacity: 0.7;
		margin-top: 6px;
		text-align: center;
	}


	.hero-section {
		padding: 75px 0px 50px;

	}

	.gap-title {
		font-size: 25px;
		font-weight: 600;
		text-align: center;
	}

	.system-gap-section {
		padding: 80px 0;
		background-color: #fff;
		overflow: hidden;
	}

	.gap-illustration-wrapper {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 335px;
	}

	.gap-text {
		font-size: 1px;
		color: #444;
		line-height: 1.6;
		text-align: center;
		font-weight: 400;
	}

	.interfaces-title {
		font-weight: 600;
		font-size: 25px;
		color: #fff;
		margin-bottom: 0px;
	}

	.benefits-title {
		font-weight: 600;
		font-size: 25px;
		color: #000;
		text-align: center;
	}

	.text-orange {
		color: #f72;
		text-align: center;
	}

	.benefit-item {
		display: flex;
		align-items: center;
	}

	.benefit-connector {
		margin-left: 0px;
	}

	.btn-cta-orange {
		background-color: #f72;
		color: white;
		font-weight: 700;
		padding: 17px 29px;
		border-radius: 50px;
		font-size: 16px;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		transition: all 0.3s ease;
		box-shadow: 0 10px 20px rgba(232, 93, 36, 0.3);
		margin: 0 auto;
		display: flex;
		width: 90%;
		justify-content: center;
	}

	.checkup-section {
		padding: 40px 0;
		background-color: #FFF5EF;
		overflow: hidden;
	}

	.checkup-title {
		font-weight: 600;
		font-size: 25px;

		text-align: center;
	}

	.checkup-sub {
		color: #f72;
		font-weight: 500;
		font-size: 1.2rem;
		margin-bottom: 5px;
		text-align: center;
	}

	.checkup-desc {
		color: #555;
		font-size: 1rem;
		line-height: 1.5;
		max-width: 100%;
		text-align: center;
	}

	.illustration-container {
		position: relative;
		display: inline-block;
		padding: 0px;
	}

	.section-heading {
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		font-size: 25px;
		color: #000;
		margin-bottom: 0px;
	}


	.bg-strip {
		height: 200px;
		top: 155px;
	}


	.back-to-top {

		top: -71px;

	}

	.img-kiosk {
		aspect-ratio: 3 / 3;
	}

	.img-overlay {
		width: 60%;
		margin-top: -70px;
	}


	.benefits-section {
		padding: 80px 0;
	}

	.logo-mob {
		width: 30px;
	}

}


/* --- New Section Styling --- */

/* new added section */


.jobcost-template {
	background: url('../img/table.jpg') repeat-x center bottom #fef4eb;
	padding: 60px 0 70px 0;
}

.banner-wrapper {
	margin-top: 40px;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
}

.cartoon-man {
	position: absolute;
	left: 30px;
	top: -39px;
	/* bottom: 0; */
	width: 203px;
	height: 120px;
	background: url(../img/loud.webp) no-repeat center center / contain;
	filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.2));
	transform: rotate(0deg);
	z-index: 9;
}

.pill-banner {
	background-color: var(--primary-orange);
	color: white;
	padding: 12px 50px 12px 235px;
	border-radius: 50px;
	box-shadow: 0 10px 20px rgba(255, 118, 56, 0.25);
	position: relative;
	display: flex;
	flex-direction: column;
}

.pill-banner h2 {
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.1;
}

.pill-banner p {
	font-size: 0.95rem;
	font-weight: 400;
	opacity: 0.95;
	margin-bottom: 0px;
}


/* --- 2. Text Content --- */
.header-text {
	text-align: center;
	margin-top: 35px;
	margin-bottom: 20px;
	z-index: 10;
}

.header-text h2 {
	font-size: 35px;
	font-weight: 600;

	color: var(--primary-orange);
	line-height: 1.3;
}

.header-text h2 span {
	display: block;
	color: #000;
}

.header-text p {
	margin-top: 15px;
	color: #555;
	font-size: 18px;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
}

/* --- 3. Diagram Area --- */
.diagram-container {
	position: relative;
	width: 100%;
	max-width: 1100px;
	height: 500px;
	margin-top: 10px;
	display: flex;
	justify-content: center;
	/* Align items so laptop sits at bottom */
	align-items: flex-end;
	padding-bottom: 0;
}

/* SVG Lines Layer */
.connector-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.line {
	stroke: var(--primary-orange);
	stroke-width: 1.5;
	fill: none;
}

/* The Issue Labels (Floating Boxes) */
.issue-card {
	position: absolute;
	background: white;
	border: 1px solid var(--border-orange);
	padding: 10px 10px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: #333;
	box-shadow: 0 4px 12px rgba(255, 118, 56, 0.15);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 250px;
	z-index: 5;
}

.issue-card i {
	background-color: var(--primary-orange);
	color: white;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	margin-left: 10px;
}

.issue-card i img {
	height: 25px
}

/* Specific Positioning of Cards */
/* Top Center */
.card-top {
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	flex-direction: row-reverse;
	width: 300px;
}

.card-top i {
	margin-left: 0;
	margin-right: 10px;
}

/* Left Side */
.card-left-1 {
	top: 120px;
	left: 50px;
}

.card-left-2 {
	top: 210px;
	left: 20px;
}

.card-left-3 {
	top: 300px;
	left: 50px;
}

/* Right Side (Icon on left for symmetry if desired, or right as per image) */
/* Image shows icons on right side of text for all boxes except top.
           Actually, image shows icons on the outer edge. */
.card-right-1 {
	top: 120px;
	right: 50px;
	flex-direction: row-reverse;
}

.card-right-1 i {
	margin-left: 0;
	margin-right: 10px;
}

.card-right-2 {
	top: 210px;
	right: 20px;
	flex-direction: row-reverse;
}

.card-right-2 i {
	margin-left: 0;
	margin-right: 10px;
}

.card-right-3 {
	top: 300px;
	right: 50px;
	flex-direction: row-reverse;
}

.card-right-3 i {
	margin-left: 0;
	margin-right: 10px;
}


/* --- 4. CSS Laptop & Excel Sheet --- */
.laptop-wrapper {
	position: relative;
	z-index: 5;
	width: 440px;
	/* Sitting on the table */
	margin-bottom: 25px;
}

.laptop-screen {
	background: #333;
	border-radius: 12px 12px 0 0;
	padding: 12px 12px 0 12px;
	height: 280px;
	width: 100%;
	position: relative;
}

@media screen and (max-width: 768px) {}

/* --- Responsive Mobile --- */
@media (max-width: 950px) {
	.diagram-container {
		flex-direction: column;
		height: auto;
		align-items: center;
		margin-bottom: 0px;
		/* Space for wood */
	}

	.issue-card {
		position: relative;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
		margin: 10px 0;
		width: 90%;
		max-width: 350px;
		flex-direction: row-reverse;
		font-size: 14px;
	}

	.issue-card i {

		margin-right: 10px !important;
	}

	.connector-lines {
		display: none;
	}

	/* Hide lines on mobile */
	.pill-banner {
		min-width: auto;
		padding: 12px 30px;
		text-align: center;
	}

	.pill-banner h2 {
		font-size: 18px;
	}

	.header-text {
		margin-bottom: 0px;
	}

	.header-text h2 {
		font-size: 25px;
	}

	.cartoon-man {
		position: absolute;
		left: 78px;
		top: -118px;
	}

	.jobcost-template {
		padding: 90px 0 70px 0;
	}

	/* Hide complicated graphics on mobile */
}

/*  */

.dedicated-orange-hero {
	position: relative;
	/* This creates the orange overlay blending into an image */
	background: linear-gradient(223deg, rgba(237, 105, 11, 0.533333) 0%, #ed6b0b 63%),
		/* Replace the URL below with your actual background image of the person/office */
		url('../img/ban.webp');
	background-size: cover;
	background-position: center right;
	color: #ffffff;
	padding: 117px 0 83px;
	font-family: 'Poppins', system-ui, -apple-system, sans-serif;
	overflow: hidden;
	margin-top: 50px;
}

/* Badge Styling */
.orange-hero-badge {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 16px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Headline Styling */
.orange-hero-title {
	font-size: 45px;
	/* Large and bold like reference */
	font-weight: bold;
	line-height: 1.2;
	color: #ffffff;
}

.orange-hero-title span {
	display: block;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.95);
	/* Slight opacity difference for contrast if needed */
}

/* Description Text */
.orange-hero-desc {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
	/* Keeping regular weight from original UI */
	color: #ffffff;
	max-width: 600px;
	margin-bottom: 30px;
}

/* CTA Button - White pill shape */
.btn-orange-cta {
	background-color: #ffffff;
	color: #000;
	/* Matches the orange background for brand consistency */
	font-weight: 700;
	padding: 15px 32px;
	border-radius: 10px;
	/* Pill shape */
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid #ffffff;
	display: inline-block;
	white-space: nowrap;
}

.btn-orange-cta:hover {
	background-color: #000;
	color: #ffffff;
}

/* Micro copy text */
.orange-hero-micro {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.4;
	font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.dedicated-orange-hero {

		text-align: left;
		padding: 20px 0 5px;
	}

	.orange-hero-title {
		font-size: 32px;
		margin-bottom: 10px;
		margin-top: -8px;
	}

	.orange-hero-desc {
		font-size: 14px;
		/* line-height: 1.6; */
		font-weight: 400;
		color: #ffffff;
		max-width: 600px;
		margin-bottom: 22px;
	}
}

@media screen and (max-width: 990px) {
	header {
		box-shadow: rgba(0, 0, 0, .2) 0px 12px 28px 0px, rgba(0, 0, 0, .1) 0px 2px 4px 0px, hsla(0, 0%, 100%, .05) 0px 0px 0px 1px inset !important;
	}
}


.gap-list li::before {
	content: "";
	position: absolute;
	background: url('../img/li_icon.png') no-repeat;
	display: block;
	width: 25px;
	height: 25px;
	left: -4px;
}

.gap-list li span {
	margin-left: 10px;
	font-size: 14px;
}

.subpill {
	background: #ffeee0;
	border: 1px solid #c3530063;
	color: #f72;
	font-size: 14px;
	display: inline-block;
}


/* --- Mobile Button Visibility --- */
@media (max-width: 991px) {

	/* Hide the original button on mobile */
	.hide-on-mobile {
		display: none !important;
	}

	.hide-on-desk {
		display: block !important;
	}

	/* Sticky Button Styles */
	.mobile-sticky-btn {
		position: fixed;
		bottom: 20px;
		left: 20px;
		right: 20px;
		z-index: 9999;
		/* Start visible */
		opacity: 1;
		transform: translateY(0);
		transition: opacity 0.4s ease, transform 0.4s ease;
		/* Animation applied continuously */
		animation: zoom-pulse 2s infinite ease-in-out;
	}

	/* Hidden state class applied via JS */
	.mobile-sticky-btn.hidden {
		opacity: 0;
		transform: translateY(20px);
		pointer-events: none;
	}

	/* Ensure button looks good */
	.mobile-sticky-btn .btn-orange-cta {
		box-shadow: 0 10px 25px rgba(232, 93, 36, 0.5);
		/* Stronger shadow */
		font-size: 1rem;
		padding: 15px;
		background-color: #000000 !important;
		border: none;
		color: #ffffff !important;
		white-space: normal;
	}
}

/* Hide sticky button on desktop */
@media (min-width: 992px) {
	.mobile-sticky-btn {
		display: none !important;
	}
}

/* Zoom In/Out Animation */
@keyframes zoom-pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
		/* Slight zoom in */
	}

	100% {
		transform: scale(1);
	}
}


.hide-on-desk {
	display: none;
}


.patn_strip {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	margin: 0;
	padding: 0
}

.patn_strip li {
	height: 6px;
	margin-bottom: 1px;
	list-style-type: none
}

header {
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	box-shadow: rgba(0, 0, 0, .062) 0px 10px 50px;
	border: 1px solid #eee
}

header .header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center
}

header .header_inner .btn_com {
	padding: 10px 20px;
	font-size: 14px
}

header .header_inner .logo {
	order: 1
}

header .header_inner .logo .logo_desk {
	height: 60px
}

header .header_inner .header_info {
	order: 3
}

header .header_inner .header_info .to_call {
	padding-right: 20px;
	font-weight: bold
}

header .header_inner .nav_wraper {
	margin-left: auto;
	padding-right: 30px;
	order: 2
}

header .header_inner .nav_wraper .submenu {
	display: none
}

header .header_inner .nav_wraper .has-submenu:hover .submenu {
	display: block
}

header .header_inner .nav_wraper .has-submenu:hover .dropdown-toggle svg {
	transform: rotate(180deg);
	fill: #f72
}

header .header_inner .nav_wraper .nav-link {
	padding: 30px 20px;
	color: #000
}

header .header_inner .nav_wraper .nav-link:hover,
header .header_inner .nav_wraper .nav-link:focus {
	color: #f72
}

header .header_inner .nav_wraper .has-submenu {
	position: relative
}

header .header_inner .nav_wraper .dropdown-menu-custom {
	border: 0;
	font-size: 14px;
	padding: 10px;
	box-shadow: rgba(0, 0, 0, .25) 0px 14px 28px, rgba(0, 0, 0, .22) 0px 10px 10px;
	border-radius: 10px;
	position: absolute;
	-webkit-animation: slide-bottom .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: slide-bottom .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

header .header_inner .nav_wraper .dropdown-menu-custom li a {
	display: flex;
	align-items: center;
	gap: 10px
}

header .header_inner .nav_wraper .dropdown-menu-custom li a svg {
	height: 20px;
	width: 20px;
	fill: #f72
}

header .header_inner .nav_wraper .dropdown-menu-custom li:last-child {
	border-bottom: none
}

header .header_inner .nav_wraper .dropdown-menu-custom li .dropdown-item {
	padding: 10px;
	font-size: 14px
}

header .header_inner .nav_wraper .dropdown-menu-custom li .dropdown-item:hover,
header .header_inner .nav_wraper .dropdown-menu-custom li .dropdown-item:active {
	background: rgba(0, 0, 0, 0);
	color: #f72
}

header .header_inner .nav_wraper .dropdown-menu-custom.mega-menu {
	width: 700px;
	padding: 20px;
	left: -60%
}

header .header_inner .nav_wraper .dropdown-menu-custom.mega-menu .mega-menu-body {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap
}

header .header_inner .nav_wraper .dropdown-menu-custom.mega-menu .mega-menu-body li {
	width: 50%;
	list-style-type: none
}

header .header_inner .nav_wraper .dropdown-menu-custom.megamenu-two {
	left: -160%;
	width: 550px
}

@-webkit-keyframes slide-bottom {
	0% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px)
	}

	100% {
		-webkit-transform: translateY(2px);
		transform: translateY(2px)
	}
}

@keyframes slide-bottom {
	0% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px)
	}

	100% {
		-webkit-transform: translateY(2px);
		transform: translateY(2px)
	}
}

header .header_inner .nav_wraper .nav_hamburger svg {
	width: 30px;
	height: 30px;
	cursor: pointer;
	fill: #000
}

.mobile_menu {
	position: fixed;
	height: 100%;
	background-color: #fff;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 99;
	top: 55px;
	padding: 20px;
	width: 250px;
	transition: ease-in-out .5s;
	transform: translateX(-250px);
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12)
}

.mobile_menu.is_open {
	transform: translateX(0px)
}

.mobile_menu .close_btn {
	display: inline-block;
	width: 30px;
	height: 30px;
	padding: 4px;
	line-height: 18px;
	text-align: center;
	cursor: pointer
}

.mobile_menu .close_btn svg {
	width: 100%;
	height: 100%;
	color: #f72
}

.mobile_menu .m_nav {
	padding: 0;
	margin-top: 10px
}

.mobile_menu .m_nav li {
	list-style-type: none;
	border-bottom: 1px solid #eee
}

.mobile_menu .m_nav li:nth-last-child {
	border-bottom: 0
}

.mobile_menu .m_nav li a {
	padding: 8px 5px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.mobile_menu .m_nav li a i {
	font-size: 20px
}

.mobile_menu .m_nav li a:hover {
	color: #f72
}

.mobile_menu .m_nav li a.active .fa-angle-down {
	transform: rotate(180deg)
}

.mobile_menu .m_nav .has_sub {
	display: none;
	padding: 0;
	padding-left: 5px
}

.mobile_menu .m_nav .has_sub a {
	font-size: 13px
}

header .header_inner .header_info {
	order: 3;
}

header .header_inner .btn_com {
	padding: 10px 20px;
	font-size: 14px;
}

.btn_com {
	background: #f72;
	padding: 15px 30px;
	color: #fff;
	border-radius: 10px;
	transition:
		ease-in .5s;
	transition:
		ease-in .5s;
	position: relative;
	z-index: 9;
	font-size: 16px;
}

body {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	overflow-x: hidden;
}

.dropdown-toggle::after {
	display: none;
}

@media screen and (max-width: 790px) {
	header .header_inner .logo_mobile {
		display: block;
		width: 30px;
	}
}

@media screen and (min-width: 790px) {
	header .header_inner .logo_mobile {
		display: none;
	}
}

@media screen and (max-width: 790px) {
	header .header_inner .logo_desk {
		display: none;
	}
}

@media screen and (max-width: 990px) {
	header .header_inner {
		padding: 10px 0;
	}
}

@media screen and (max-width: 790px) {
	header .header_inner .btn_com {
		padding: 7px 15px;
		font-size: 12px;
	}
}

@media screen and (max-width: 990px) {
	header .header_inner .nav_wraper {
		order: 3;
		margin-left: initial;
		padding-right: 0;
	}
}


@media screen and (max-width: 990px) {
	header .header_inner .header_info {
		order: 2;
		margin-left: auto;
		margin-right: 30px;
	}
}

@media screen and (min-width: 990px) {
	.nav_hamburger {
		display: none;
	}
}

@media screen and (max-width: 490px) {
	header .header_inner {
		padding: 5px 0;
	}

	.patn_strip {

		margin-bottom: 4px;
	}
}

/* --- Multi-Step Quiz Form Styles --- */
#frm_contact {
	background: #fff;

	border-radius: 20px;

	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.quiz-step {
	display: none;
	animation: fadeIn 0.5s ease-in-out;
}

.quiz-step.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.quiz-question {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 25px;
	color: #333;
}

.options-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.quiz-option {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	border: 2px solid #eee;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quiz-option:hover {
	border-color: #ffab85;
	background-color: #fffbf6;
}

.quiz-option.selected {
	border-color: #f72;
	background-color: #fff0e5;
}

.quiz-option input {
	display: none;
}

/* Custom Radio */
.custom-radio {
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-radius: 50%;
	margin-right: 15px;
	position: relative;
	flex-shrink: 0;
}

.quiz-option.selected .custom-radio {
	border-color: #f72;
	background-color: #f72;
}

.quiz-option.selected .custom-radio::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background-color: white;
	border-radius: 50%;
}

.quiz-option label {
	font-size: 1rem;
	color: #444;
	cursor: pointer;
	margin: 0;
}

/* Buttons */
.btn-quiz-back {
	background-color: #eee;
	color: #555;
	margin-top: 20px;
	width: 100%;
	padding: 12px 25px;
	border-radius: 10px;
	font-weight: 600;
	border: none;
	transition: all 0.3s ease;
}

.btn-quiz-back:hover {
	background-color: #ddd;
}

/* Custom Checkbox */
.custom-checkbox {
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-radius: 4px;
	margin-right: 15px;
	position: relative;
	flex-shrink: 0;
}

.quiz-option.selected .custom-checkbox {
	border-color: #f72;
	background-color: #f72;
}

.quiz-option.selected .custom-checkbox::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -60%) rotate(45deg);
}