/********** Template CSS **********/
:root {
	--primary: #1645aa;
	--secondary: #E93C05;
	--tertiary: #555555;
	--light: #DFE4FD;
	--dark: #011A41;
}


.text-main {
	color: var(--primary);
}

.bg-main {
	background-color: var(--primary);
}

.fade-img {
	transition: opacity 1s ease-in-out;
	opacity: 1;
}

.fade-out {
	opacity: 0;
}


.top-bar {
	/* background-color: #f8f9fa; */
	padding: 8px 15px;
	font-size: 14px;
}

.navbar-brand img {
	height: 70px;
	width: auto;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	padding: 0;
	font-size: 14px;
}

.mobile-contact-links {
	display: flex;
	flex-direction: column;
	gap: 10px;

}

.mobile-social-links {
	display: flex;
	/* flex-direction: column; */
	margin-left: -16px;
	align-items: center;
	gap: 10px;
	padding: 10px;
}

@media (max-width: 991.98px) {
	.top-bar {
		display: none !important;
	}

	.navbar-collapse {
		background-color: #fff;
		padding: 10px;
	}

	.navbar-nav {
		margin-bottom: 15px;
	}

	.navbar-nav .nav-link {
		padding: 10px 15px;
	}

	.mobile-contact-links a {
		font-size: 14px;
	}
}

@media (min-width: 992px) {

	.mobile-contact-links,
	.mobile-social-links {
		display: none !important;
	}
}

@media (max-width: 576px) {
	.navbar-brand img {
		height: 50px;
	}

	.navbar-toggler {
		padding: 5px 10px;
	}

	.mobile-contact-links a {
		font-size: 13px;
	}

	.btn-get-quote {
		width: 100%;
		text-align: center;
	}
}


.btn-custom {
	background-color: var(--primary);
	color: #fff;
	padding: 12px 28px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-custom:hover {
	background-color: #133b91;
	/* slightly darker shade */
	color: #ffffff;

	transform: translateY(-1px);
}

.service-button {
	color: var(--primary);
	border: 2px solid var(--primary);
	background-color: transparent;
	transition: all 0.3s ease;
}

.service-button:hover {
	background-color: var(--primary);
	color: white;
	border-color: var(--primary);
}

.card {

	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	/* Ensures content stays within bounds */
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
	width: 100% !important;
	/* Full width of card */
	height: 250px !important;
	/* Fixed height for image section */
	overflow: hidden;
	/* Prevents image overflow */
}

.card-img-top img {
	width: 100% !important;
	/* Image fills container */
	height: 100% !important;
	/* Maintains aspect ratio */
	object-fit: cover;
	/* Ensures image covers area without distortion */
	transition: transform 0.3s ease;
}

.card:hover .card-img-top img {
	transform: scale(1.05);
}

.animate-slide-in {
	opacity: 0;
	transform: translateY(30px);
	animation: slideIn 0.6s ease forwards;
}

.animate-slide-in:nth-child(2) {
	animation-delay: 0.2s;
}

.animate-slide-in:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes slideIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.icon-circle {
	background-color: var(--primary);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.4s ease;
	position: relative;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.icon-circle::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.4s ease;
	z-index: 1;
}

.icon-circle i {
	position: relative;
	z-index: 2;
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.icon-circle:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(212, 167, 98, 0.3);
}

.icon-circle:hover::before {
	opacity: 1;
	transform: scale(1.1);
}

.icon-circle:hover i {
	transform: scale(1.1);
}

.icon-text {
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 0.5rem;
	text-align: center;
	color: #111;
	line-height: 1.2;
}


.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
	font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
	font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
	font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}


/*** Button ***/
.btn {
	transition: .5s;
	font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
	color: var(--light);
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
	transition: .5s;
}

.top-bar {
	height: 45px;
	border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
	padding: 25px 15px;
	color: var(--tertiary);
	font-weight: 500;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--primary);
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav {
		margin-top: 10px;
		border-top: 1px solid rgba(0, 0, 0, .07);
		background: #FFFFFF;
	}

	.navbar .navbar-nav .nav-link {
		padding: 10px 0;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		visibility: hidden;
		top: 100%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
		transition: .5s;
		opacity: 0;
	}

	.navbar .nav-item:hover .dropdown-menu {
		transform: rotateX(0deg);
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: start;
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
	background-color: var(--primary);
	border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
	border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
	border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.page-header {
	padding-top: 12rem;
	padding-bottom: 6rem;
	background: url(../img/header.jpg) top left no-repeat;
	background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
	font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	color: var(--tertiary);
}


/*** Facts ***/
.facts {
	background: linear-gradient(rgba(22, 69, 170, 0.95), rgba(22, 69, 170, 0.95)), url(../img/bg.png);
	background-size: cover;
	background-position: center;
}


/*** Callback ***/
.callback {
	position: relative;
}

.callback::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 50%;
	top: 0;
	left: 0;
	background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
	z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
	transition: .5s;
}

.feature .feature-box:hover {
	background: var(--primary);
	border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
	color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
	transition: .5s;
}

.service .nav .nav-link.active {
	border-color: var(--primary) !important;
	background: var(--primary);
}

.service .nav .nav-link.active h5 {
	color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
	color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
	position: relative;
}

.project-item .project-img a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	opacity: 0;
	transition: .5s;
}

.project-item:hover .project-img a {
	opacity: 1;
}

.project-item .project-title {
	position: absolute;
	top: 3rem;
	right: 0;
	bottom: 0;
	left: 3rem;
	border: 1px solid var(--light);
	border-radius: 8px;
	display: flex;
	align-items: flex-end;
	padding: 18px;
	z-index: -1;
	transition: .5s;
}

.project-item:hover .project-title {
	background: var(--primary);
	border-color: var(--primary);
}

.project-item .project-title h4 {
	transition: .5s;
}

.project-item:hover .project-title h4 {
	color: #FFFFFF;
}

.project-carousel .owl-nav {
	margin-top: 25px;
	display: flex;
	justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
	margin: 0 12px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	background: var(--light);
	border-radius: 45px;
	font-size: 22px;
	transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
	background: var(--primary);
	color: var(--light);
}


/*** Team Start ***/

.team-item {
	position: relative;
	text-align: center;
	box-shadow: 0 0 45px rgba(0, 0, 0, .07);
	border-radius: 10px;
}

.team-item .team-social {
	position: absolute;
	padding: 0;
	top: 15px;
	left: 0;
	overflow: hidden;
}

.team-item .team-social li {
	list-style-type: none;
	margin-bottom: 10px;
	margin-left: -50px;
	opacity: 0;
	transition: .5s;
}

.team-item:hover .team-social li {
	margin-left: 15px;
	opacity: 1;
}

.team-item .team-social li .btn {
	background: #FFFFFF;
	color: var(--primary);
	border-radius: 40px;
	transition: .5s;
}

.team-item .team-social li .btn:hover {
	color: #FFFFFF;
	background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
	transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
	transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
	transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
	transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
	transition-delay: .5s;
}


/*** Team End ***/

/*** Testimonial ***/
.testimonial-item {
	position: relative;
	text-align: center;
	padding-top: 30px;
	min-height: 280px;
	/* or set a fixed height */

}

.testimonial-item .testimonial-text {
	position: relative;
	text-align: center;
	min-height: 200px;
	/* or set a fixed height */

}

.testimonial-item .testimonial-text .btn-square {
	position: absolute;
	width: 60px;
	height: 60px;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
	position: absolute;
	content: "";
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	border: 30px solid;
	border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
	position: absolute;
	content: "";
	bottom: -59px;
	left: 50%;
	transform: translateX(-50%);
	border: 30px solid;
	border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
	margin: 0 auto;
	width: 100px;
	height: 100px;
}

.testimonial-carousel .owl-dots {
	margin-top: 25px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.testimonial-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--light);
	border-radius: 30px;
	transition: .5s;
}

.testimonial-carousel .owl-dot::after {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	top: 6px;
	left: 6px;
	border-radius: 16px;
	background: var(--light);
	transition: .5s;
}

.testimonial-carousel .owl-dot.active {
	border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
	background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: var(--light);
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	letter-spacing: 1px;
	box-shadow: none;
}

.copyright {
	color: var(--light);
	background: #000B1C;
}

.copyright a {
	color: var(--light);
}

.copyright a:hover {
	color: var(--primary);
}