:root {

	/* #000DFF in decimal RGB */
	--main-color: rgb(0, 13, 255);
	--main-color-rgb: 0, 13, 255;

	/* #C115EC in decimal RGB */
	--color-two: rgb(193, 21, 236);
	--color-two-rgb: 193, 21, 236;

	/* #DDDDDD in decimal RGB */
	--color-three: rgb(221, 221, 221);
	--color-three-rgb: 221, 221, 221;

	/* #F2F2F2 in decimal RGB */
	--color-four: rgb(242, 242, 242);
	--color-four-rgb: 242, 242, 242;




	/* #ffffff in decimal RGB */
	--white-color: rgb(255, 255, 255);
	--white-color-rgb: 255, 255, 255;

	/* #000000 in decimal RGB */
	--black-color: rgb(0, 0, 0);
	--black-color-rgb: 0, 0, 0;

}



* {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
}


/* width */


body {
	font-family: 'Outfit', sans-serif;
	line-height: 1.6em;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

.text-left {
	text-align: left;
}


ul li {
	list-style: none;
}


/* Keyframe Animations */

@keyframes bounce {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.8;
	}

	50% {
		transform: scale(1.5);
		opacity: 0.4;
	}
}

@keyframes tada {
	0% {
		transform: scale(1);
	}

	10%,
	20% {
		transform: scale(0.9) rotate(-3deg);
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale(1.1) rotate(3deg);
	}

	40%,
	60%,
	80% {
		transform: scale(1.1) rotate(-3deg);
	}

	100% {
		transform: scale(1) rotate(0);
	}
}

@keyframes small-bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}


i {
	font-style: normal;
}

.bordered-layout .page-wrapper {
	padding: 0px 50px 0px;
}

a {
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	color: var(--main-color);
}

button,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	margin: 0px;
	background: none;
	font-weight: 700;
	color: var(--black-color);
	font-family: "Outfit", sans-serif;
}


textarea {
	overflow: hidden;
}

.text,
p {
	position: relative;
	line-height: 1.7em;
	color: #666666;
	font-size: 16px;
}

/* Typography */

h1 {
	line-height: 110px;
	font-size: 96px;
}

h2 {
	line-height: 70px;
	font-size: 60px;
}

h3 {
	line-height: 42px;
	font-size: 32px;
}

h4 {
	line-height: 34px;
	font-size: 26px;
}

h5 {
	line-height: 30px;
	font-size: 20px;
}

h6 {
	line-height: 28px;
	font-size: 18px;
}
.xl-container {
	position: static;
	max-width: 1500px;
	padding: 4px 15px;
	margin: 0 auto;
}

.auto-container {
	position: static;
	max-width: 1320px;
	padding: 4px 15px;
	margin: 0 auto;
}

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
}

ul,
li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.default-btn {
	cursor: pointer;
	display: inline-block;
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

.default-btn a {
	position: relative;
	color: #000;
	padding: 10px 12px;
	text-decoration: none;
	font-size: 16px;
	font-family: 'Outfit', sans-serif;
	text-transform: capitalize;
	padding-right: 35px;
	transition: 0.5s ease-in-out;
}

.default-btn a::after {
	content: '\279A';
	position: absolute;
	top: 8px;
	right: 0;
	bottom: 0;
	font-size: 22px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 10px auto;
	color: #fff;
	background-color: #000f63;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	transition: 0.4s ease-in-out;
}

.default-btn a:hover::after {
	transform: rotate(45deg);
	background-color: #000f63;
	color: #fff;
}

.centered {
	text-align: center;
}

::-webkit-input-placeholder {
	color: inherit;
}

::-moz-input-placeholder {
	color: inherit;
}

::-ms-input-placeholder {
	color: inherit;
}


/* List Style One */

.list-style-one {
	position: relative;
}

.list-style-one li {
	position: relative;
	color: var(--white-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8em;
	margin-bottom: 10px;
	padding-left: 30px;
}

.list-style-one li a {
	position: relative;
	color: var(--white-color);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.list-style-one li a:hover {
	color: var(--main-color);
}

.list-style-one li .icon {
	position: absolute;
	left: 0px;
	top: 5px;
	color: var(--main-color);
	font-size: 18px;
	line-height: 1em;
	font-weight: 300;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

/* Btn Style One */

.btn-style-one {
	position: relative;
	font-weight: 700;
	font-size: 15px;
	overflow: hidden;
	text-align: center;
	border-radius: 50px;
	padding: 10px 34px;
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	font-family: 'Manrope', sans-serif;
	background-color: rgba(0, 13, 255, 1);
	background-image: linear-gradient(90deg, rgba(0, 13, 255, 1) 0%, #000000 100%);
}

.btn-style-one:before {
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 1;
	background-image: linear-gradient(90deg, #000000 0%, rgba(0, 13, 255, 1) 100%);
}

.btn-style-one:hover:before {
	top: 0%;
}

.btn-style-one .btn-wrap {
	position: relative;
	z-index: 1;
	float: left;
	overflow: hidden;
	display: inline-block;
}

.btn-style-one .btn-wrap .text-one {
	position: relative;
	display: block;
	color: var(--white-color);
	transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-one:first-child {
	-webkit-transform: translateY(-150%);
	-ms-transform: translateY(-150%);
	transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two {
	position: absolute;
	top: 100%;
	display: block;
	color: var(--white-color);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two {
	color: var(--white-color);
}


.btn-style-one:hover:before {
	top: -40%;
}

.btn-wrap span{
	font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

img {
	display: inline-block;
	max-width: 100%;
}

/* Section Title */

.sec-title {
	position: relative;
	z-index: 2;
	margin-bottom: 40px;
}

.sec-title_title {
	position: relative;
	font-weight: 400;
	font-size: 18px;
	display: flex;
	gap: 15px;
	align-items: center;
	color: rgb(3 9 109);
	text-transform: uppercase;
}

.sec-title_dots {
	position: relative;
}

.sec-title_dots span:nth-child(1) {
	animation-delay: 0s;
}

.sec-title_dots span:nth-child(2) {
	animation-delay: 0.5s;
}

.sec-title_dots span:nth-child(3) {
	animation-delay: 1s;
}

@keyframes zoom-in-out {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	20% {
		transform: scale(1.2);
		opacity: 1;
	}

	50% {
		transform: scale(1);
		opacity: 1;
	}

	80% {
		transform: scale(0.8);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.sec-title_dots span {
	position: relative;
	width: 6px;
	height: 7px;
	margin-right: 1px;
	border-radius: 50px;
	display: inline-block;
	animation: zoom-in-out 3s infinite;
	opacity: 0;
	background-color: rgba(0, 13, 255, 0);
	background-image: linear-gradient(0deg, rgba(0, 13, 255, 1) 0%, rgb(7 36 79) 100%);
}

.sec-title_heading {
	margin-top: 15px;
	color: rgb(8 14 133);
	font-size: 51px;
	text-transform: capitalize;
	font-family: 'Outfit';
	font-weight: 700;
	text-shadow: 0px 2px 2px #00000059;
}

.sec-title_heading span {
	color: rgb(161 31 6);
}

.sec-title_text {
	line-height: 30px;
	font-size: 16px;
	margin-top: 20px;
	color: #666666;
}

.sec-title.light .sec-title_title {
	color: var(--white-color);
}

.sec-title.light .sec-title_title span {
	background-color: rgba(255, 255, 255, 0);
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.sec-title.light .sec-title_big-title {
	-webkit-text-stroke-color: rgba(var(--color-three-rgb), 0.30);
}

.sec-title.light .sec-title_text {
	opacity: 1;
	color: var(--white-color);
}

.sec-title.light .sec-title_heading {
	color: var(--white-color);
}

.sec-title.centered {
	text-align: center !important;
}

.sec-title.centered .sec-title_title {
	justify-content: center;
}

/* Custom Select */

.xs-sidebar-group .xs-overlay {
	left: 100%;
	top: 0;
	position: fixed;
	z-index: 999999;
	height: 100%;
	opacity: 0;
	width: 100%;
	visibility: hidden;
	-webkit-transition: all 0.4s ease-in 0.8s;
	-o-transition: all 0.4s ease-in 0.8s;
	transition: all 0.4s ease-in 0.8s;
	cursor: url(../images/cross-out.png), pointer;
}

.xs-sidebar-group .close-button {
	position: absolute;
	top: 15px;
	right: 20px;
	z-index: 10;
	cursor: pointer;
	font-size: var(--font-18);
}

.xs-sidebar-group .close-button .mdi {
	color: var(--color-four);
	font-size: var(--font-14);
	font-family: "Material Design Icons";
}

.xs-sidebar-group .close-button .mdi:hover {
	color: var(--black-color);
}

.xs-sidebar-widget:nth-child(2) {
	right: -380px;
}

.xs-sidebar-widget {
	position: fixed;
	right: -100%;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 370px;
	z-index: 999999;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background-color: #ffffff;
	-webkit-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
	-o-transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
	transition: all 0.3s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}

.xs-sidebar-group.isActive .xs-overlay {
	opacity: 0.7;
	visibility: visible;
	-webkit-transition: all 0.8s ease-out 0s;
	-o-transition: all 0.8s ease-out 0s;
	transition: all 0.8s ease-out 0s;
	left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
	opacity: 1;
	visibility: visible;
	right: 0px;
	-webkit-transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
	-o-transition: all 0.7s cubic-bezier(0.8, 0.03, 0, 0.96) 0.4s;
	transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
	padding: 0px;
}

.close-side-widget {
	font-size: rem(15px);
	display: block;
}

.sidebar-widget-container {
	position: relative;
	top: 0px;
	-webkit-transition: all 0.3s ease-in 0.3s;
	-o-transition: all 0.3s ease-in 0.3s;
	transition: all 0.3s ease-in 0.3s;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
	-webkit-transition: all 1s ease-out 1.2s;
	-o-transition: all 1s ease-out 1.2s;
	transition: all 1s ease-out 1.2s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.xs-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.5;
	z-index: 0;
}

.xs-bg-black {
	background-color: #000000;
}

.xs-menu-tools>li {
	display: inline-block;
	margin-right: 15px;
}

.xs-menu-tools>li:last-child {
	margin-right: 0;
}

.xs-menu-tools>li>a {
	color: #000000;
	text-decoration: none;
}

.nav-alignment-dynamic,
.nav-alignment-flex-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}



a.meanmenu-reveal {
	display: none
}

.mean-container .mean-bar {
	float: left;
	width: 100%;
	position: relative;
	background: #0c1923;
	padding: 4px 0;
	min-height: 42px;
	z-index: 999999
}

.mean-container a.meanmenu-reveal {
	width: 22px;
	height: 22px;
	padding: 13px 13px 11px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-indent: -9999em;
	line-height: 22px;
	font-size: 1px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700
}

.mean-container a.meanmenu-reveal span {
	display: block;
	background: #fff;
	height: 3px;
	margin-top: 3px
}

.mean-container .mean-nav {
	float: left;
	width: 100%;
	background: #0c1923;
	margin-top: 44px
}

.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none
}

.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%
}

.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 90%;
	padding: 1em 5%;
	margin: 0;
	text-align: left;
	color: #fff;
	border-top: 1px solid #383838;
	border-top: 1px solid rgba(255, 255, 255, .5);
	text-decoration: none;
	text-transform: uppercase
}

.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 1em 10%;
	border-top: 1px solid #f1f1f1;
	border-top: 1px solid rgba(255, 255, 255, .25);
	opacity: .75;
	filter: alpha(opacity=75);
	text-shadow: none !important;
	visibility: visible
}

.mean-container .mean-nav ul li.mean-last a {
	border-bottom: 0;
	margin-bottom: 0
}

.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 1em 15%
}

.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%
}

.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%
}

.mean-container .mean-nav ul li a:hover {
	background: #252525;
	background: rgba(255, 255, 255, .1)
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 1px;
	width: 26px;
	height: 32px;
	padding: 12px !important;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
	background: rgba(255, 255, 255, .1);
	border: 0 !important;
	border-left: 1px solid rgba(255, 255, 255, .4) !important;
	border-bottom: 1px solid rgba(255, 255, 255, .2) !important
}

.mean-container .mean-nav ul li a.mean-expand:hover {
	background: rgba(0, 0, 0, .9)
}

.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both
}

.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box
}

.mean-remove {
	display: none !important
}


/* Main Slider */
.hero-slider {
	position: relative;
	padding-top: 81px;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-repeat: no-repeat;
}

.hero-slide .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.hero-content {
	position: relative;
	margin: 64px 90px;
	z-index: 2;
	color: #fff;
	max-width: 700px;
}

.hero-content .sub-title {
	font-size: 1.2rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #fff;
}

.hero-content .main-title {
	font-size: 52px;
	font-weight: 700;
	margin-bottom: 20px;
}

.hero-content .main-title span {
    color: transparent;
    font-weight: 400;
    font-family: "Raleway", serif;
    -webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(var(--white-color-rgb), 1);
}

.hero-content .desc {
	font-size: 18px;;
	margin: 0px 55px 39px;
	color: #fff;
	font-weight: 400;
	max-width: 800px;
	font-family: "Outfit", sans-serif;
}

.hero-btns .btn {
	padding: 7px 30px;
	margin: 5px;
	font-size: 1rem;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.hero-btns .btn-primary {
	background: #000c4d;
	color: #fff;
	border: 3px solid #000c4d;
}

.hero-btns .btn-primary:hover {
	background: #fff;
	border: 2px solid #000c4d;
	color:#000c4d;

}

.hero-btns .btn-outline-light {
	border: 2px solid #fff;
	color: #000c4d;
	background-color: #fff;
}

.hero-btns .btn-outline-light:hover {
	background: #000c4d;
	color: #fff;
	border: 2px solid #fff;
}


.hero-slider .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	 
}

.hero-slider .owl-nav button {
	background: rgba(0, 0, 0, 0.5);
	color: #fff !important;
	border: none;
	padding: 15px 20px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: auto;
	 
}

.hero-slider .owl-carousel .owl-nav button.owl-prev {
	background-color: #0000004d;
	color: #fff;
	height: 50px;
	width: 50px;
	margin: 20px;
}

.hero-slider .owl-carousel .owl-nav button.owl-next {
	background-color: #0000004d;
	color: #fff;
	height: 50px;
	width: 50px;
	margin: 20px;
}

.hero-slider .owl-nav button:hover {
	background: #0026ff69 !important;
	color: #fff !important;
}

.hero-slider .owl-dots {
	position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    z-index: 50;
  }
  
  .hero-slider  .owl-dots .owl-dot {
	display: inline-block;
	margin: 0 5px;
  }
  
  .hero-slider .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	display: block;
	background: #d1d5db; 
	border-radius: 50%;
	transition: all 0.3s ease;
  }
  
  .hero-slider .owl-dots .owl-dot:hover span {
	background: #9ca3af;  
  }
  
  .hero-slider .owl-dots .owl-dot.active span {
	background: #030721;  
	width: 16px;
	height: 16px;
  }

.slider-list {
	padding: 0;
	margin:0;
	position: relative;
    margin-top: 79px;
	padding-top:30px;
    list-style: none;
    display: block;  
	background-color: #e6edf3;
}  

.slider-img-list{
	padding: 3px;
	margin:0;
	position: relative;
    margin-top: 77px;
}

.slider-img img{
	 width:100% ;
	 height: 130px;;
	 object-fit: cover;
}

.slider-list ul li {
	position: relative;
    display: flex;
	
    list-style: none;  
}

.slider-list li { 
	border-bottom: 1px dotted #6c757d;
	padding-bottom: 13px;
}

.slider-list li span {
	font-size: 18px;
    font-family: "Outfit", sans-serif;
    color: #555;
}

.slider-list li i {
	padding: 0px 17px;
    margin-right: 0px;
	font-size: 28px;
    color: #0a0f66;
    font-weight: 500;
}
/* Slider Carousel Ends */

/* Counter Section */
.counter-section {
	background: #f8f9fa;
}

.counter-bg {
	background-color: #000f63;
	padding: 20px 30px;
}

.counter {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.counter+p {
	font-size: 1.1rem;
	font-weight: 500;
	color: #fff;
}

/* Counter Section Ends */

/* About Us */

.about-one {
	position: relative;
}

.about-one_image-outer {
	position: relative;
	text-align: right;
}

.about-one_image {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	display: inline-block;
}

.about-one_image-two {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
	margin-left: -197px;
	margin-top: -55px;
	display: inline-block;
}

.about-one_text p {
	position: relative;
	font-size: 16px;
	line-height: 24px;
	color: #333;
	max-width: 520px;
	margin-top: 30px;
}

.about-one_image.now-in-view {
	opacity: 1;
	clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
	-webkit-transition-delay: 250ms;
	-moz-transition-delay: 250ms;
	-ms-transition-delay: 250ms;
	-o-transition-delay: 250ms;
	transition-delay: 250ms;
}

.about-one_pattern-two {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-position: right center;
	background-repeat: no-repeat;
}

.about-one_pattern-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-position: right top;
	background-repeat: no-repeat;
}

/* About Us Ends */

/* Services Started */
.service-section {
	position: relative;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
}

.service-block-image::before {
	position: absolute;
	content: '';
	left: 0px;
	bottom: 0px;
	width: 78px;
	height: 76px;
	z-index: 1;
	background: url(../img/shape/vector-6.png);
}

.service-block {
	position: relative;
	padding: 0px 10px;
	display: inline-block;
}

.service-block-inner {
	position: relative;
	padding: 10px 10px 20px;
	border-radius: 30px;
	border: 3px solid #000f63;
	background-color: #fff;

}

.service-block-image {
	position: relative;
	overflow: hidden;
	border-radius: 25px;
}

.service-block-image img {
	position: relative;
	width: 100%;
	display: block;
	height: 250px;
	object-fit: cover;
}

.service-block-icon {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 50px;
	height: 50px;
	z-index: 2;
	padding: 12px 12px;
	border-radius: 50px;
	display: inline-block;
	background-color: rgba(0, 13, 255, 1);
	background-image: linear-gradient(180deg, rgba(0, 13, 255, 1) 0%, rgb(2, 7, 48) 100%);
}

.service-block-icon i {
	color: #fff;
	text-align: center;
	font-size: 24px;
	margin: 0 auto;
}

.service-block-icon img {
	height: 30px;
}

.service-block_bg {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 119px;
}

.service-content {
	position: relative;
	padding: 25px 10px 20px;
}

.service-title a {
	position: relative;
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: none;
	font-size: 22px;
	color: #000f63;
	font-family: "Outfit", sans-serif;
}

.service-text {

	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: var(--black-color);
}


/* Services Ends */

/* Gallery css Started */

.our-gallery-page {
	padding: 50px 0 50px;
}

.photo-gallery {
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}


.photo-gallery figure {
	position: relative;
}

.photo-gallery figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #00000094;
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.photo-gallery:hover figure::before {
	opacity: 80%;
	visibility: visible;
	transform: scale(1);
}

.photo-gallery figure::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(-50%);
	width: 65px;
	height: 65px;
	margin: 0 auto;
	background: #000f63 url("../img/icon/eye.png") no-repeat;
	background-position: center center;
	background-size: 40px auto;
	border-radius: 50%;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.photo-gallery:hover figure::after {
	opacity: 1;
	visibility: visible;
}

.photo-gallery img {
	position: relative;
	aspect-ratio: 1 / 0.95;
	object-fit: cover;
	border-radius: 20px;
}


/* Gallery Section Ends */

/* Get A Quotes */
.call-action-section {
	background-position: center center;
	background-repeat: repeat;
	position: relative;
	padding: 0;
	background-color: #000f63;
}


.call-action-section .call-content h2 {
	color: #fff;
	padding: 100px 0 21px;
	font-size: 45px;
}

.cta-image img {
	margin-top: -80px;
}

.call-action-section .call-content h6 {
	color: #fff;
}

.call-action-section .call-wrap,
.call-action-section .call-details1,
.call-action-section .call-details2 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-top: 24px;
}


.call-action-section .call-details2 {
	margin-left: 25px;
}

.call-action-section .call-icon {
	margin-right: 25px;
	font-size: 28px;
	width: 58px;
	height: 58px;
	line-height: 58px;
	color: var(--bs-white);
	background-color: #0a8ba5;
	box-shadow: 7px 5px 30px 0 rgb(72 73 121);
	border-radius: 50%;
	text-align: center;
	display: inline-block;
	animation: tada 2s infinite ease-in-out;
	-webkit-animation: tada 2s infinite;
	-webkit-transition: all ease 0.35s;
	-moz-transition: all ease 0.35s;
	transition: all ease 0.35s;
}

.call-action-section .call-body a {
	color: var(--bs-white);
	text-decoration: none;
	font-weight: 700;
	font-size: 30px;
	line-height: 48px;
}

/* Get Quotes Ends */


/* Testimonial Css */
.testimonial-section {
	position: relative;
	padding: 80px 0;
}

.testimonial-section .sin-testiImage {
	display: inline-block;
	margin-bottom: 11px;
	outline: medium none;
}

.testimonial-section .sin-testiImage img {
	border: 5px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block !important;
	height: 100px;
	margin-bottom: 30px;
	margin-top: 36px;
	outline: 0 none;
	width: 100px;
}

.testimonial-section .sin-testiImage.slick-current img {
	height: 145px;
	margin-top: 0;
	opacity: 1;
	width: 146px;
	border: 5px solid #fff;
	border-radius: 50%;
	margin-bottom: 35px;
}

.testimonial-section .testimonial-text-slider h2 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #fff;
	font-family: "Outfit", sans-serif;
}

.testimonial-section .testimonial-text-slider span {
	font-size: 14px;
	display: inline-block;
	margin-bottom: 15px;
	color: #fff;
}

.testimonial-section .testimonial-text-slider {
	margin: auto;
	padding: 0;
	position: relative;
	width: unset;
	z-index: 9;
}

.testimonial-section .sin-testiText {
	outline: 0;
}

.testimonial-section .sin-testiText p {
	max-width: 700px;
	margin: 15px auto;
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-style: italic;
	font-weight: 300;
}

.testimonial-slider {
	position: relative;
}

.testimonial-slide {
	position: relative;
}

/* Owl Nav */
.testimonial-slider .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	width: 100%;
	pointer-events: none;
	/* prevents blocking clicks inside */
}

/* Buttons */
.testimonial-slider .owl-nav button {
	background: rgba(0, 0, 0, 0.6) !important;
	color: #fff !important;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 18px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	/* clickable */
	transition: 0.3s;
}

/* Prev Button */
.testimonial-slider .owl-nav .owl-prev {
	left: -60px;
}

/* Next Button */
.testimonial-slider .owl-nav .owl-next {
	right: -60px;
}

/* Hover effect */
.testimonial-slider .owl-nav button:hover {
	background: #ff5722 !important;
}

.sin-testiText h2 {
	color: #fff;
	font-size: 32px;
	font-family: "Outfit", sans-serif;
	font-style: italic;
}

.testimonial-bg {
	background-image: url(../img/bg/testimonial.jpg);
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 0;
	background-attachment: fixed;
}

.testimonial-bg::before {
	position: absolute;
	content: "";
	background: #000;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.8;
	z-index: -1;
}

/* Testimonial Css Ends */

/* Get In Touch Section */

.contactus-section {
	padding-top: 40px;
	padding-bottom: 50px;
	position: relative;
	/*    background: #f9f9f9;*/
}

.contact-detailsbox {
	position: relative;
	display: inline-flex;
	gap: 15px;
}

.contact_iconbox i {
	font-size: 29px;
	color: #061771;
}

.contact_contentbox h5 {
	font-size: 24px;
	font-weight: 700;
	color: #030a33;
}

.contact_contentbox p {
	font-size: 18px;
	font-weight: 400;
	margin-top: 12px;
	text-decoration: none;
	color: #333;
}

.contact_contentbox p a {
	text-decoration: none;
	color: #333;
}

.phonebox2 {
	border-bottom: 1px solid #000;
	margin-bottom: 20px;
}

.addressbox {
	border-bottom: 1px solid #000;
	margin-bottom: 20px;
}

.contactus-section .trans_heading {
	bottom: 45px;
}

.contactus-section .content-heading1 {
	color: #00aeef;
}

.contactus-section .content-heading1::after {
	left: -160px;
	right: 0;
	margin: 0 auto;
	text-align: center;
	border-bottom: 2px solid #00aeef;
}

.contactus-section .content-heading2 {
	color: #111;
	font-size: 30px;
	line-height: 36px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif !important;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 0px;
}

.small-heading1 {
	color: #e81921;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	margin-bottom: 12px;
}

.contact-imagebox {
	width: 100%;
	height: auto;
}

.contact-imagebox img {
	width: 100%;
	height: auto;
}


.contact-imagebox {
	width: 100%;
	height: auto;
}

.contact-imagebox img {
	width: 100%;
	height: auto;
}

.form-box {
	padding-top: 40px;
	padding-left: 45px;
	padding-right: 45px;
	padding-bottom: 30px;
	background: #000c4d;
}

.contact-form-heading {
	color: #2a2a2a;
	font-size: 36px;
	line-height: 42px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}

.form-details {
	color: #8c8c8c;
	font-size: 14px;
	text-align: center;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 30px;
}

.contact-form-heading2 {
	color: #232323;
	text-align: left;
	font-size: 36px;
	line-height: 44px;
	font-weight: 800;
}


.contact-form {
	width: 100%;
}

.contact-form .form-control {
	height: 52px;
	color: #454545 !important;
	background-color: #d5d5d5 !important;
	border: 1px solid #d5d5d5 !important;
	border-radius: 0px !important;
	padding-left: 20px;
}

.contact-form .form-control::placeholder {
	color: #454545 !important;
}

.contact-form textarea {
	height: 120px !important;
}

.submit-button {
	margin-top: 30px;
}


.form-detailsbox {
	padding: 50px 40px;
	background: #fff;
	position: relative;
	height: 100%;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
/* Ends */

/* Pricing Section */

/* Section Styles */
.service-pricing {
  padding: 50px 0;
  background-color: #ffffff;
}

.service-pricing .container {
  width: 80%;
  margin: 0 auto;
}

.service-pricing .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.service-pricing .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.service-pricing .pricing-table-wrapper {
  overflow-x: auto;
}

.service-pricing .pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.pricing-table th,
.pricing-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.pricing-table th {
  background-color: #000f63;
  color: white;
  font-weight: 700;
}

.pricing-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.pricing-table tbody tr:hover {
  background-color: #e4e4e4;
}
 
.testimonial-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.testimonial-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
 
.testimonial-content {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}
.testimonial-content h4 {
  font-size: 20px;
  color: #000f63;
  margin-bottom: 15px;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.star {
  color: #FFD700;  /* Gold color for stars */
  font-size: 20px;
}

.testimonial-slide{
	position: relative;
	display: block;
}

/* Rating Stars */
.rating-stars {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  margin-left: 18px;
}

.star-label {
  font-size: 30px;
  color: #ccc;  
  cursor: pointer;
  transition: color 0.3s ease;
}

.testimonial-content p{
	    font-family: 'Outfit';
    color: #000;
    text-align: justify;
    font-style: italic;
	display: -webkit-box;
	-webkit-line-clamp: 6;   /* Show only 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis; /* Adds "..." at the end */
}

input[type="radio"]:checked  .rating-stars .star-label {
  color: #FFD700;  
}

/* Hide the actual radio buttons */
input[type="radio"] {
  display: none;
}

.star-label:hover,
input[type="radio"]:checked .rating-stars .star-label:hover {
  color: #FFD700;
}

.review-form-box {
    padding-top: 50px;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 40px;
    background: #000c4d;
}

.form-detailsbox1 {
	padding: 15px 40px;
	background: #fff;
	position: relative;
	height: 100%;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.btn-submit {
  background-color: #030721;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  float: inline-end;
  gap: 8px;
}

.btn-submit:hover {
  background-color: #0056b3; /* Darker blue */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-slider .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	width: 100%;
	pointer-events: none;
	/* prevents blocking clicks inside */
}

/* Buttons */
.testimonial-slide .owl-nav button {
    background: rgb(0 0 0 / 4%) !important;
    color: #000f63 !important;
    border-radius: 0;
    border: 2px solid #030721 !important;
    width: 23px;
    height: 23px;
    z-index: 999;
    float: inline-start;
    margin-right: 93px;
    margin-top: -44px;
    position: absolute;
    font-size: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: 0.3s;
}

/* Prev Button */
.testimonial-slide .owl-nav .owl-prev {
	right: -16px !important;
}

/* Next Button */
.testimonial-slide .owl-nav .owl-next {
	right: -60px;
}


/* pricing Section ends */

/* Footer Started */

.footerbg {
	margin: 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #030a33;
	position: relative;
	z-index: 1;
}

.footerbg::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	z-index: -1;
}

.footerleft {
	margin: 0px;
	padding: 0px;
	width: 100%;
	display: block;
}

.footerleft p {
	color: #fff;
	font-size: 16px;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	margin-top: 20px;
}

.footermiddle {
	margin: 0px;
	padding: 0px;
	margin-left: 20%;
}

.footermiddle h2 {
	color: #fff;
	font-size: 24px;
	display: inline-block;
	font-family: "Outfit", sans-serif;
	position: relative;
	z-index: 1;
}

.footermiddle h2::before {
	position: absolute;
	content: "";
	top: 140%;
	left: 0;
	background-color: #0dcaf0;
	width: 50%;
	height: 2px;
	z-index: -1;
}

.footernav {
	margin-top: 20px;
	padding: 0px;
}

.footernav ul {
	margin: 0px;
	padding: 0px;
	display: block;
}

.footernav ul li {
	content: '';
	margin: 0px;
	padding: 5px 0px;
	list-style: none;
}

.footernav ul li a {
	margin: 0px;
	padding: 0px;
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

.footernav ul li a:hover {
	color: #0dcaf0;
}

.footerright {
	margin: 0px;
	padding: 0px;
}

.footerright h2 {
	color: #fff;
	font-size: 24px;
	display: inline-block;
	position: relative;
	z-index: 1;
}

.footerright h2::before {
	position: absolute;
	content: "";
	top: 140%;
	left: 0;
	background-color: #e11c09;
	width: 50%;
	height: 2px;
	z-index: -1;
}

.footerrightmain {
	margin: 0px;
	padding: 0px;
	margin-top: 35px;
}

.footerrightmainicon {
	margin: 8px 0px;
	display: flex;
	gap: 10px;
}

.footerrightmainicon i {
	color: #e11c09;
	line-height: 30px;
}

.footerrightmainicon p,
.footerrightmainicon p a {
	font-size: 16px;
	color: white;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	text-decoration: none;
}

.footercopyright {
	margin: 0px;
	padding: 5px px;
	background-color: #050d3b;
	border-top: solid 1px #5e5e5e;
}


.footercopyrighttext {
	margin: 0px;
	padding: 0px;
	text-align: center;
	margin-top: 10px;
}

.footercopyrighttext p,
.footercopyrighttext p a {
	color: #fefefe;
	font-size: 14px;
	text-decoration: none;
	font-family: "Inter", sans-serif;
	font-weight: 500;
}

.responsivelogobox {
	margin: 0px;
	padding: 0px;
	display: none;
	width: 100%;
	display: block;
	background-color: #fff;

}

.responsivelogoboxmainlogo {
	display: none;
}

/* Footer Ends */

/* Page Title Started */

.page-title {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 230px 0px 25px;
}

.page-title_big-title {
	position: absolute;
	left: 49px;
	bottom: 47px;
	z-index: 10;
	color: transparent;
	font-weight: 800;
	font-size: 44px;
	text-transform: uppercase;
	/*font-family: "Raleway", serif;*/
	/*-webkit-text-stroke-width: 1px;*/
	/*-webkit-text-stroke-color: rgba(var(--white-color-rgb), 0.40);*/
}

.page-title_bg-image {
	position: absolute;
	left: 0px;
	top: 20px;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-title_bg-image:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0.70;
	background-color: #030721;
}

.page-title h1 {
	color: var(--white-color);
	text-transform: capitalize;
	font-size: 50px;
	font-weight: 500;
	text-shadow: 0px 2px 2px rgb(0 0 0 / 38%);
	font-family: "Outfit", sans-serif;
}

.page-title .bread-crumb {
	position: relative;
	margin-top: 20px;
	margin-bottom: 95px;
}

.page-title .bread-crumb li {
	position: relative;
	font-weight: 500;
	font-size: 18px;
	margin-right: 15px;
	padding-right: 15px;
	display: inline-block;
	color: var(--white-color);
	text-transform: uppercase;
}

.page-title .bread-crumb li:first-child::before {
	position: absolute;
	right: -6px;
	top: -4px;
	content: "/";
	font-size: 22px;
	font-family: 'Font Awesome 6 Free';
}

.page-title .bread-crumb li:last-child {
	padding-right: 0;
	margin-right: 0;
}

.page-title .bread-crumb li:last-child:before {
	display: none;
}

.page-title .bread-crumb li a {
	color: var(--white-color);
	text-decoration: none;
}

.page-title .bread-crumb li a:hover {
	color: var(--main-color);
}

/* Page Title Ends */

/* About Us Page */

.process-one {
	position: relative;
	padding: 200px 0px 120px;
	background-image: url(..//img/bg/work.png);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
}

.process-one.style-two {
	padding-bottom: 0px;
}

.process-one .step-block_one:nth-child(2) {

	top: 30px;
}

.process-one .step-block_one:nth-child(2) .step-block_one-inner:before {
	bottom: auto;
	top: 20%;
}

.process-one .step-block_one:nth-child(3) {

	top: -160px;
}

.process-one .step-block_one:nth-child(3) .step-block_one-inner:before {
	bottom: auto;
	top: 30%;
}

.process-one .step-block_one:nth-child(4) {
	top: -325px;

}

.step-block_one:last-child .step-block_one-inner:before {
	display: none;
}

.step-block_one {
	position: relative;
}

.step-block_one-inner {
	position: relative;
	padding: 29px 20px;
	border-radius: 20px;
	border: 2px solid #000f63;
}

.step-block_one-inner:before {
	position: absolute;
	content: '';
	right: -29px;
	bottom: 60px;
	width: 30px;
	height: 90px;
	z-index: 1;
	background: url(../img/shape/curve.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.step-block_one:last-child .step-block_one-inner::before {
	display: none;
}

.step-block_one-bg {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	background-size: cover;
}

.step-block_one-inner:hover .step-block_one-bg {
	opacity: 1;
}

.step-block_one-number {
	position: relative;
	font-size: 16px;
}

.step-block_one-number span {
	position: relative;
	line-height: 1em;
	font-weight: 800;
	font-size: 75px;
	background: linear-gradient(to bottom, #020dff, #000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.step-block_one-inner:hover .step-block_one-number span {
	color: var(--black-color);
	-webkit-text-fill-color: inherit;
}

.step-block_one-inner:hover .step-block_one-heading {
	color: #e81921;
}

.step-block_one-heading {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	margin-top: 73px;
	font-family: "Outfit", sans-serif;
	color: var(--black-color);
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.step-block_one-text {
	position: relative;
	font-size: 16px;
	color: #333;
	line-height: 30px;
	margin-top: 15px;
}

.process-one_content {
	position: relative;
	text-align: right;
	margin-top: -140px;
}

.process-one_button {
	position: relative;
}

/* Contact Us Page */

.contactusbox {
	margin: 0px;
	padding: 0px;
	width: 100%;
	display: block;
}

.contactusboximg {
	margin: 0px;
	padding: 0px;
}

.contactusboximg img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.contactustext {
	margin: 0px;
	padding: 20px;
	width: 100%;
	display: block;
	position: relative;
}

.contactustext1 {
	width: 15%;
	margin: 0 auto;
	background-color: #000c4d;
	border: solid 5px #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 35px;
	position: absolute;
	top: -20px;
	z-index: 10;
	left: 40%;

}

.contactustext1 i {

	color: #fff;
	font-size: 20px;
	animation: tada 2s infinite ease-in-out;
	-webkit-animation: tada 2s infinite;
	-webkit-transition: all ease 0.35s;
	-moz-transition: all ease 0.35s;
	transition: all ease 0.35s;
}


.contactustext2 {

	margin-top: 50px;
	padding: 0px;
	text-align: center;
}

.contactustext2 h4 {

	color: #e11c09;
	font-size: 24px;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
}

.contactustext2 p,
.contactustext2 p a {

	color: #1b1b23;
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	text-decoration: none;
}

/* Cntact Us Page ENds */

/* service Sidebar Started */
.service-sidebar-area .service-details-title {
	background-color: #000f63;
	color: #ffffff;
	padding: 10px 20px;
	margin-bottom: 20px;
}

.service-sidebar-area .service-card {
	margin-bottom: 30px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.service-sidebar-area .service-list ul li {
	border-bottom: 1px dashed #eeeeee;
	padding: 18px 20px;
	font-weight: 500;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.service-sidebar-area .service-list ul li:last-child {
	border-bottom: none;
}

.service-sidebar-area .service-list ul li a {
	color: #333;
	display: block;
	font-weight:400;
	text-decoration: none;
}

.service-sidebar-area .service-list ul li i {
	float: right;
	width: 35px;
	height: 35px;
	line-height: 36px;
	background-color: #e81921;
	border-radius: 50%;
	color: #ffffff;
	font-size: 15px;
	text-align: center;
	animation: tada 2s infinite ease-in-out;
	-webkit-animation: tada 2s infinite;
	-webkit-transition: all ease 0.35s;
	-moz-transition: all ease 0.35s;
	transition: all ease 0.35s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.service-sidebar-area .service-list ul li:hover {
	background-color: #3c7dee;
	color: #ffffff;
}

.service-sidebar-area .service-list ul li:hover i {
	background-color: #ffffff;
	color: #3c7dee;
}

.service-sidebar-area .service-list ul li:hover a {
	color: #ffffff;
}

.service-sidebar-area .service-faq .faq-accordion {
	position: unset;
	padding: 0;
	background-color: #000c4d;
}

.service-sidebar-area .service-faq .faq-accordion .accordion .accordion-item {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.service-sidebar-area .service-faq .faq-accordion .accordion .accordion-title {
	font-size: 15px;
	font-weight: 600;
}

.service-sidebar-area .service-faq .faq-accordion .accordion .accordion-title span {
	top: 11px;
}

.service-sidebar-area .paint {
	margin-bottom: 15px;
}
.serviceleftimage{
	height: 20rem;
    width: 95%;
    margin: 10px 0px 10px 10px;
}
/* Service Sidebar Ends */
.service-faq {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-details-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: left;
	color: #222;
}

.service-details-wrap h3{
	    margin-top:30px;
		font-size: 40px;
		font-weight:500;
		font-family: "Outfit", sans-serif;
		color:#000c4d
}

.service-details-wrap ul li {
	position: relative;
	padding: 10px 15px 10px 35px; 
	margin-bottom: 10px;
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.service-details-wrap ul li::before {
	content: "\27A3"; 
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #000c4d; 
	font-size: 14px;
  }

/* Accordion */
.faq-accordion ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.accordion-item {
	margin-bottom: 10px;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.accordion-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #f9f9f9;
	font-weight: 600;
	cursor: pointer;
	color: #333;
	transition: background 0.3s ease;
	text-decoration: none;
}

.accordion-title:hover {
	background: #f1f1f1;
}

.accordion-title i {
	margin-right: 10px;
	transition: transform 0.3s ease;
}

.accordion-title.active i {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
	background: #fff;
	transition: max-height 0.4s ease, padding 0.3s ease;
	border-top: 1px solid #eee;
}

.accordion-content.show {
	max-height: 500px;
	padding: 15px 20px;
}

.service-img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

/* Service Page Ends */

/* Floating Buttons Wrapper */
.floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 9999;
}
 
.floating-buttons a {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #217f53;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px rgb(0 0 0 / 61%);
	animation: tada 2s infinite ease-in-out;
	-webkit-animation: tada 2s infinite;
	-webkit-transition: all ease 0.35s;
	-moz-transition: all ease 0.35s;
	transition: all ease 0.35s;
	transition: transform 0.2s;
}

.floating-buttons a img {
	width: 28px;
	height: 28px;
}

.floating-buttons a:hover {
	transform: scale(1.1);
}

/* Call button style */
.floating-buttons .call-float {
	background: #038ff1;
	/* blue for call */
}

.whatsapp-float i {
	margin-top: 3px;
	color: #fff;
	font-size: 29px;
}