html {
	scroll-behavior: smooth;
}

/* header css start */


.main-title-h4 {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
}

.text-p {
	font-family: "Inter", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 20px;
}

.text-orange {
	color: #F05123;
}

.title-white {
	color: #fff;
}

header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
	background-color: transparent;
	transition: all 0.3s ease;
}

.sticky-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	animation: slideSticky 0.3s ease forwards;
}

.sticky-header .navbar-brand svg path {
	fill: #F05123;
}

header .navbar-brand svg {
	height: 35px;
	width: auto;
}

.sticky-header .get-quote-btn {
	background-color: #000;
	color: #fff;
	border: 2px solid #000;
}

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

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


header .navbar .collapse .navbar-nav .nav-item a {
	font-weight: 500;
	font-size: 16px;
	color: #F05123;
	transition: 0.3s ease-in-out;
	padding-right: 1.5rem;
	padding-left: 1.5rem;
	position: relative;
	/* font-family: "JetBrains Mono", monospace; */
	font-family: "Space Grotesk", sans-serif;
}



header .navbar .collapse .navbar-nav .nav-item a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #F05123;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease-in-out;
}

/* Show underline on hover */
header .navbar .collapse .navbar-nav .nav-item a:hover::after {
	transform: scaleX(1);
}

header .navbar .collapse .navbar-nav .nav-item a:hover {
	color: #F05123;
}


.custom-dropdown {
	position: relative;
}

.custom-dropdown .dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 8px;
	min-width: 180px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.custom-dropdown:hover .dropdown-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.custom-dropdown .dropdown-list li {
	list-style: none;
}

.custom-dropdown .dropdown-list li a {
	display: block;
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
	transition: background 0.3s ease;
}

.custom-dropdown .dropdown-list li a:hover {

	color: #fff;
}

header .header-btn {
	background: #F05123;
	color: #fff;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 15px;
	border-radius: 6px;
	margin-left: 15px;
	transition: ease-out 0.5s;
	box-shadow: inset 0 0 0 0 #f47a14;
}

header .header-btn:hover {
	color: white;
	box-shadow: inset 0 -100px 0 0 #f47a14;
}

header .header-btn:active {
	transform: scale(0.9);
}

/* header css end */

/* footer start */
.footer-revol-ai {
	padding-bottom: 0 !important;
	padding-top: 100px;
}

.footer-revol-ai .form .form-group.from_item input {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	border-bottom: 2px solid #fff !important;
	color: #fff;
	height: 60px;
	line-height: 60px;
	padding: 0;
	width: 100%;
	background: transparent;
	border: none;
}

.footer-revol-ai .footer-container {
	display: flex;
	flex-wrap: wrap;
	gap: 90px;
	justify-content: space-between;
}

.footer-revol-ai .footer-section .footer-item {
	margin-top: 30px;
}


.footer-revol-ai a {
	color: white;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 18px;
	line-height: 1.2;
	font-family: "Space Grotesk", sans-serif;
}

.footer-revol-ai a:hover,
.footer-revol-ai .highlight {
	color: #F05123;
}

.footer-revol-ai ul {
	list-style: none;
	padding: 0;
}

.footer-revol-ai ul li {
	margin-bottom: 20px;
}

.footer-revol-ai .footer-section ul li a {
	color: white;
	position: relative;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 18px;
	line-height: 1.2;
	padding-bottom: 5px;
	transition: color 0.3s ease, transform 0.3s ease;
	font-family: "Space Grotesk", sans-serif;
}

.footer-revol-ai .footer-section ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #F05123;
	transition: width 0.3s ease;
}

.footer-revol-ai .footer-section ul li a:hover::after {
	width: 100%;
}

.footer-revol-ai .footer-section ul li a:hover {
	color: #F05123;
}

.footer-revol-ai .social-icons ul {
	display: flex;
	column-gap: 20px;
	margin-top: 10px;
}

.footer-revol-ai .social-icons ul li a svg {
	transition: 0.3s ease-in-out;
	padding-bottom: 5px;
}

.footer-revol-ai .social-icons ul li a:hover svg path {
	fill: #F05123;
}


.footer-revol-ai .footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #333;
	padding: 20px 0 30px 0;
	font-size: 0.9rem;
	color: white;
	flex-wrap: wrap;
}

.footer-revol-ai .footer-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.footer-revol-ai .footer-links a {
	color: white;
	position: relative;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 18px;
	line-height: 1.2;
	transition: color 0.3s;
	padding-bottom: 5px;
	font-family: "Space Grotesk", sans-serif;
}

.footer-revol-ai .footer-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #F05123;
	transition: width 0.3s ease;
}

.footer-revol-ai .footer-links a:hover::after {
	width: 100%;
}


.footer-revol-ai .footer-links a:hover {
	color: #F05123;
}

/* footer end */



header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 999;
	background-color: transparent;
	transition: all 0.3s ease;
}

.sticky-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	animation: slideSticky 0.3s ease forwards;
}

.sticky-header .get-quote-btn {
	background-color: #000;
	color: #fff;
	border: 2px solid #000;
}

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

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



@media (min-width: 1600px) and (max-width: 1800px) {
	.footer-revol-ai {
		padding-top: 90px;
	}

	.main-title-h3 {
		font-size: 35px;
	}


	.main-title-h4 {
		font-size: 28px;

	}

	.main-title-h5 {
		font-size: 23px;
	}

	.short-title {
		font-size: 18px;
	}

	.tiny-title {
		font-size: 17px;
		padding: 0 30px;
	}

	.text-p {
		font-size: 17px;
	}

	header .header-btn {
		font-size: 14px;
		height: 38px;
		padding: 0 15px;
		margin-left: 15px;
	}

	header .navbar-brand svg {
		height: 30px;
		width: auto;
	}


	header .navbar .collapse .navbar-nav .nav-item a {
		font-size: 15px;
		padding-right: 1.3rem;
		padding-left: 1.3rem;
	}


	.footer-revol-ai .footer-container {
		gap: 80px;
	}

	.footer-revol-ai .footer-section .footer-item {
		margin-top: 30px;
	}

	.footer-revol-ai a {
		font-size: 16px;
	}

	.footer-revol-ai ul li {
		margin-bottom: 15px;
	}

	.footer-revol-ai .footer-section ul li a {
		font-size: 16px;
	}

	.footer-revol-ai .footer-bottom {
		padding: 20px 0 25px 0;
		font-size: 16px;
	}

	.footer-revol-ai .footer-links {
		gap: 10px;
	}

	.footer-revol-ai .footer-links span {
		font-size: 14px;
		margin-top: -2px;
	}

	.footer-revol-ai .footer-links a {
		font-size: 16px;
	}

}



@media (min-width: 1400px) and (max-width: 1599px) {
	.footer-revol-ai {
		padding-top: 80px;
	}

	.main-title-h3 {
		font-size: 30px;
	}

	.main-title-h4 {
		font-size: 23px;

	}

	.main-title-h5 {
		font-size: 20px;
	}

	.short-title {
		font-size: 17px;
	}

	.tiny-title {
		font-size: 16px;
		padding: 0 25px;
	}

	.text-p {
		font-size: 16px;
	}

	header .header-btn {
		font-size: 14px;
		height: 35px;
		padding: 0 10px;
		margin-left: 15px;
	}

	header .navbar-brand svg {
		height: 30px;
		width: auto;
	}


	header .navbar .collapse .navbar-nav .nav-item a {
		font-size: 14px;
		padding-right: 1.1rem;
		padding-left: 1.1rem;
	}


	.footer-revol-ai .footer-container {
		gap: 60px;
	}

	.footer-revol-ai .footer-section .footer-item {
		margin-top: 30px;
	}

	.footer-revol-ai a {
		font-size: 15px;
	}

	.footer-revol-ai ul li {
		margin-bottom: 15px;
	}

	.footer-revol-ai .footer-section ul li a {
		font-size: 15px;
	}

	.footer-revol-ai .footer-bottom {
		padding: 20px 0 25px 0;
		font-size: 15px;
	}

	.footer-revol-ai .footer-links {
		gap: 10px;
	}

	.footer-revol-ai .footer-links span {
		font-size: 14px;
		margin-top: -2px;
	}

	.footer-revol-ai .footer-links a {
		font-size: 15px;
	}

}

@media (min-width: 1200px) and (max-width: 1399px) {

	.footer-revol-ai {
		padding-top: 60px;
	}

	.main-title-h2 {
		font-size: 40px;
	}

	.main-title-h3 {
		font-size: 27px;
	}

	.main-title-h4 {
		font-size: 22px;

	}

	.main-title-h5 {
		font-size: 19px;
	}

	.text-p {
		font-size: 15px;
	}

	.short-title {
		font-size: 16px;
	}

	header .header-btn {
		font-size: 14px;
		height: 35px;
		padding: 0 10px;
		margin-left: 10px;
	}

	header .navbar-brand svg {
		height: 30px;
		width: auto;
	}


	header .navbar .collapse .navbar-nav .nav-item a {
		font-size: 14px;
		padding-right: 1.1rem;
		padding-left: 1.1rem;
	}


	.footer-revol-ai .footer-container {
		gap: 40px;
	}

	.footer-revol-ai .footer-section .footer-item {
		margin-top: 30px;
	}

	.footer-revol-ai a {
		font-size: 15px;
	}

	.footer-revol-ai ul li {
		margin-bottom: 15px;
	}

	.footer-revol-ai .footer-section ul li a {
		font-size: 15px;
	}

	.footer-revol-ai .footer-bottom {
		padding: 20px 0 25px 0;
		font-size: 15px;
	}

	.footer-revol-ai .footer-links {
		gap: 10px;
	}

	.footer-revol-ai .footer-links span {
		font-size: 14px;
		margin-top: -2px;
	}

	.footer-revol-ai .footer-links a {
		font-size: 15px;
	}

	.alert-success {
		font-size: 14px;
	}

}


@media (min-width: 992px) and (max-width: 1199px) {
	.footer-revol-ai {
		padding-top: 50px;
	}

	.main-title-h2 {
		font-size: 32px;
	}

	.main-title-h3 {
		font-size: 24px;
	}

	.main-title-h4 {
		font-size: 20px;

	}

	.main-title-h5 {
		font-size: 18px;
	}

	.text-p {
		font-size: 15px;
	}

	.short-title {
		font-size: 15px;
	}

	header .header-btn {
		font-size: 14px;
		height: 35px;
		padding: 0 10px;
		margin-left: 10px;
	}

	header .navbar-brand svg {
		height: 25px;
		width: auto;
	}

	header .navbar .collapse .navbar-nav .nav-item a {
		font-size: 14px;
		padding-right: 0.9rem;
		padding-left: 0.9rem;
	}

	.footer-revol-ai .footer-container {
		gap: 40px;
	}

	.footer-revol-ai .footer-section .footer-item {
		margin-top: 25px;
	}

	.footer-revol-ai a {
		font-size: 14px;
	}

	.footer-revol-ai ul li {
		margin-bottom: 14px;
	}

	.footer-revol-ai .footer-section ul li a {
		font-size: 14px;
	}

	.footer-revol-ai .footer-bottom {
		padding: 20px 0 20px 0;
		font-size: 14px;
	}

	.footer-revol-ai .footer-links {
		gap: 10px;
	}

	.footer-revol-ai .footer-links span {
		font-size: 13px;
		margin-top: -2px;
	}

	.footer-revol-ai .footer-links a {
		font-size: 14px;
	}

}


@media (min-width: 768px) and (max-width: 991px) {
	.offcanvas .navbar-nav .nav-item a {
		font-weight: 500;
		font-size: 13px;
		color: #F05123;
		transition: 0.3s ease-in-out;
		padding-right: 0rem;
		padding-left: 0.5rem;
		position: relative;
		/* font-family: "JetBrains Mono", monospace; */
		font-family: "Space Grotesk", sans-serif;
	}



	.offcanvas .navbar-nav .nav-item a::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #F05123;
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.3s ease-in-out;
	}

	/* Show underline on hover */
	.offcanvas .navbar-nav .nav-item a:hover::after {
		transform: scaleX(1);
	}

	.offcanvas .navbar-nav .nav-item a:hover {
		color: #F05123;
	}

	.offcanvas .header-btn {
		font-size: 14px;
		height: 35px;
		padding: 0 10px;
		margin-left: 0px;
		display: inline-block;
		line-height: 35px;
		margin-left: 0;
	}

	.offcanvas .header-btn {
		background: #F05123;
		color: #fff;
		border-radius: 6px;
		margin-left: 0px;
		transition: ease-out 0.5s;
		box-shadow: inset 0 0 0 0 #f47a14;
		font-size: 17px;
		height: 35px;
		padding: 0 10px;
		display: inline-block;
		line-height: 35px;
	}

	.offcanvas .header-btn:hover {
		color: white;
		box-shadow: inset 0 -100px 0 0 #f47a14;
	}

	.offcanvas .header-btn:active {
		transform: scale(0.9);
	}

	header .navbar-brand svg {
		height: 25px;
		width: auto;
	}


	header .navbar .collapse .navbar-nav .nav-item a {
		font-size: 14px;
		padding-right: 1.1rem;
		padding-left: 1.1rem;
	}

	.footer-revol-ai {
		padding-top: 40px;
	}

	.main-title-h3 {
		font-size: 20px;
	}

	.main-title-h4 {
		font-size: 19px;

	}

	.main-title-h5 {
		font-size: 17px;
	}

	.text-p {
		font-size: 14px;
	}

	.short-title {
		font-size: 15px;
	}

	.offcanvas .offcanvas-body .navbar-nav ul li a {
		font-size: 14px;
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}


	header .header-btn {
		font-size: 14px;
		height: 35px;
		padding: 0 10px;
		margin-left: 10px;
	}

	header .offcanvas .header-btn {
		font-size: 14px;
		height: 35px;
		padding: 0 10px;
		margin-left: 0px;
		display: inline-block;
		line-height: 35px;
	}

	header .navbar-brand svg {
		height: 25px;
		width: auto;
	}


	header .navbar .collapse .navbar-nav .nav-item a {
		font-size: 14px;
		padding-right: 1.1rem;
		padding-left: 1.1rem;
	}


	.footer-revol-ai .footer-container {
		gap: 30px;
		justify-content: start;
	}

	.footer-revol-ai .footer-section {
		flex: 0 0 47.88%;
	}

	.footer-revol-ai .footer-section .footer-item {
		margin-top: 20px;
	}

	.footer-revol-ai a {
		font-size: 14px;
	}

	.footer-revol-ai ul li {
		margin-bottom: 14px;
	}

	.footer-revol-ai .footer-section ul li a {
		font-size: 14px;
	}

	.footer-revol-ai .footer-bottom {
		padding: 20px 0 20px 0;
		font-size: 14px;
	}

	.footer-revol-ai .footer-links {
		gap: 10px;
	}

	.footer-revol-ai .footer-links span {
		font-size: 13px;
		margin-top: -2px;
	}

	.footer-revol-ai .footer-links a {
		font-size: 14px;
	}


	.navbar-toggler {
		background-color: #F05123;
		padding: 3px 8px;
	}

	.navbar-toggler-icon {
		filter: brightness(0) invert(1);
		font-size: 16px;
	}

	button:focus:not(:focus-visible) {
		outline: 0;
		color: #F0512300;
		border: none;
	}
}


@media (min-width: 0px) and (max-width: 767px) {
	.footer-revol-ai {
		background: #000;
		background-image: none;
		padding-top: 30px;
	}

	.main-title-h3 {
		font-size: 19px;
	}

	.main-title-h4 {
		font-size: 16px;

	}

	.main-title-h5 {
		font-size: 15px;
	}

	.text-p {
		font-size: 13px;
	}

	.short-title {
		font-size: 14px;
	}

	.tiny-title {
		font-size: 13px;
		padding: 0 20px;
	}

	.offcanvas .navbar-nav .nav-item a {
		font-weight: 500;
		font-size: 13px;
		color: #F05123;
		transition: 0.3s ease-in-out;
		padding-right: 0rem;
		padding-left: 0.5rem;
		position: relative;
		/* font-family: "JetBrains Mono", monospace; */
		font-family: "Space Grotesk", sans-serif;
	}



	.offcanvas .navbar-nav .nav-item a::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #F05123;
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.3s ease-in-out;
	}

	/* Show underline on hover */
	.offcanvas .navbar-nav .nav-item a:hover::after {
		transform: scaleX(1);
	}

	.offcanvas .navbar-nav .nav-item a:hover {
		color: #F05123;
	}

	.offcanvas .header-btn {
		font-size: 14px;
		height: 35px;
		padding: 0 10px;
		margin-left: 0px;
		display: inline-block;
		line-height: 35px;
		margin-left: 0;
	}

	.offcanvas .header-btn {
		background: #F05123;
		color: #fff;
		border-radius: 6px;
		margin-left: 0px;
		transition: ease-out 0.5s;
		box-shadow: inset 0 0 0 0 #f47a14;
		font-size: 13px;
		height: 35px;
		padding: 0 10px;
		display: inline-block;
		line-height: 35px;
	}

	.offcanvas .header-btn:hover {
		color: white;
		box-shadow: inset 0 -100px 0 0 #f47a14;
	}

	.offcanvas .header-btn:active {
		transform: scale(0.9);
	}

	header .navbar-brand svg {
		height: 25px;
		width: auto;
	}


	header .navbar .collapse .navbar-nav .nav-item a {
		font-size: 14px;
		padding-right: 1.1rem;
		padding-left: 1.1rem;
	}

	.footer-revol-ai {
		background: #000;
		background-image: none;
	}

	.footer-revol-ai .footer-container {
		column-gap: 0px;
		row-gap: 30px;
		justify-content: start;
	}

	.footer-revol-ai .footer-section {
		flex: 0 0 100%;
	}

	.footer-revol-ai .footer-section .footer-item {
		margin-top: 20px;
	}

	.footer-revol-ai .social-icons a svg {
		height: 20px;
		width: auto;
	}

	.footer-revol-ai a {
		font-size: 14px;
	}

	.footer-revol-ai ul li {
		margin-bottom: 10px;
	}

	.footer-revol-ai .footer-section ul li a {
		font-size: 13px;
	}

	.footer-revol-ai .footer-bottom {
		padding: 20px 0 20px 0;
		font-size: 13px;
	}

	.footer-revol-ai .footer-links {
		gap: 5px;
	}

	.footer-revol-ai .footer-links span {
		font-size: 11px;
		margin-top: -2px;
	}

	.footer-revol-ai .footer-links a {
		font-size: 11px;
	}

	.footer-revol-ai .footer-copy {
		margin-top: 10px;
	}

	.navbar-toggler {
		background-color: #F05123;
		padding: 3px 8px;
	}

	.navbar-toggler-icon {
		filter: brightness(0) invert(1);
		font-size: 16px;
	}

	button:focus:not(:focus-visible) {
		outline: 0;
		color: #F0512300;
		border: none;
	}

}