/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
/********** style CSS **********/
body {
	font-family:  "Roboto Condensed", serif;
	font-size: 16px;
	letter-spacing: 0.8px;
	color: #000;
}

#scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #3F5BA9;
}

#scrollbar::-webkit-scrollbar {
	width: 5px;
	background-color: #3F5BA9;
}

#scrollbar::-webkit-scrollbar-thumb {
	background-color: #555;
	border-left: 1px solid #555;
}

:root {
	--primary: #3F5BA9;
	--secondary: #F68B1F;
	--light: #77C0B9;
	--dark: #000000;
}

.bg-primary {
	background-color: #3F5BA9 !important
}

.bg-secondary {
	background-color: #F68B1F !important
}

.py-6 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.my-6 {
	margin-top: 6rem;
	margin-bottom: 6rem;
}

.fw-3 {
	font-weight: 300 !important;
}

.fw-4 {
	font-weight: 400 !important;
}

.fw-5 {
	font-weight: 500 !important;
}

.fw-6 {
	font-weight: 600 !important;
}

.fw-7 {
	font-weight: 700 !important;
}

.fw-8 {
	font-weight: 800 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}

/*** Button ***/
.btn {
	font-weight: 500;
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.w-55 {
	font-size: 40px;
	width: 20%;
	border-radius: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

.text-left {
	text-align: left !important;
}

.text-justify {
	text-align: justify !important;
}

/*** Navbar ***/

.top-bar {
	padding: 0;
}

.sticky-top {
	top: -100px;
	transition: .5s;
}

.header-logo {
	width: 190px;
	padding: 10px;
}

.navbar .dropdown-toggle::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
	vertical-align: middle;
}

@media (max-width: 991.98px) {
	.navbar-light .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar-light .navbar-nav {
		border-top: 1px dashed #bcbcbc;
	}
}

.navbar-light .navbar-nav .nav-link {
	color: #000;
	padding: .85rem 1rem;
	font-size: 15px;
	font-weight: 500;
	outline: 0;
	text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
	color: #F68B1F;
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		margin-top: 0;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
		border: none !important;
		padding: 20px;
		box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
	}

	.navbar .dropdown-menu.fade-down {
		top: 100%;
		transform: rotateX(-75deg);
		transform-origin: 0 0;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		transform: rotateX(0);
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}

	.dropdown-menu .dropdown-item {
		padding: 10px 10px;
		font-size:15px;
	}

	.dropdown-item:active,
	.dropdown-item:focus,
	.dropdown-item:hover {
		color: #F68B1F;
		background-color: #fff;
	}
}

/* Banner Wrapper */
.banner-wrapper {
	overflow: hidden;
	position: relative;
}

/* Zoom-in Effect */
.banner-image {
	transition: transform 4s ease-in-out;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Apply Zoom-in Effect when Active */
.carousel-item.active .banner-image {
	transform: scale(1.1);
}

/* Carousel Caption Styling */
.carousel-caption {
	top: 0 !important;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image: linear-gradient(#0000005c, #0000005c);
	z-index: 1;
}

/* Fade-in Animation */
@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
	width: 8%;
	opacity: 0.7;
	transition: opacity 0.3s ease-in-out;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: black;
	padding: 8px;
	border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 768px) {
	.carousel-caption {}
}

.icon-section
{
	background:url(../assets/images/colors-logo1.jpg);
	background-color: #fff; /* White background */
	background-image: url(../assets/images/colors-logo1.jpg);
	background-position: center center; /* Center the image */
	background-repeat: no-repeat;       /* Do not repeat the image */
	background-size: contain;           /* Scale the image to fit */
	padding:80px;
	position:relative;
	width:30px;
	height:30px;
	z-index:1000;
	justify-content:center;
	align-items:center;
	border-radius:100%;
	margin:-6% auto 0 auto;
}

.fact
{
	border-right:1px solid #fff;
}

.fact-icon-svg
{
	width:100px;
	height:100px;
	border-radius:100%;
	background:#fff;
	margin: 0 auto 10px auto;
	vertical-align:middle;
	align-items:center;
}

.fact-icon-svg img
{
	width:75%;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
}


/********* Services box and content *************/

.services-section {
	background-color: #fff;
}

.services-title {
	font-weight: 700;
}

.services-item {
	transition: .5s;
	background:#fff;
	border-radius:10px;
}

.services-item:hover {
	box-shadow: rgb(0 0 0 / 18%) 0 10px 30px;
}

.ser-content {
	padding: 25px 25px 25px 25px;
}

.services-carousel .owl-dots {
	height: 40px;
	margin-top: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 2px;
	width: 10px;
	height: 10px;
	background: transparent;
	border: 2px solid var(--secondary);
	transition: .5s;
}

.services-carousel .owl-dot.active {
	width: 10px;
	height: 10px;
	background: var(--secondary);
}

/***  ////  services End  ***/

.section-promotion {
	/*background-image: url(../assets/images/banner-1.jpg);*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.page-header {
	background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../assets/images/banner-1.jpg) center center no-repeat;
	background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
	color: #999999;
}

.text-right {
	text-align: right !important;
}

/* Large Devices, Wide Screens */
@media (min-width: 1600px) {}

/* Medium Devices, Desktops */
@media (min-width: 992px) and (max-width:1199px) {}

/* Small Devices, Tablets */
@media (min-width: 768px) and (max-width: 991px) {}

/* Small Devices Potrait */
@media (max-width: 767px) {}

/* Extra Small Devices, Phones */
@media (max-width: 479px) {

	.header-logo {
		width: 200px;
	}

	.navbar-nav {
		padding: 0 !important;
	}

	.navbar-light .navbar-nav .nav-link {
		border-bottom: 1px dashed #F68B1F;
	}

	.m-text-center {
		text-align: center !important;
	}

}

/* Custom, iPhone Retina */
@media (max-width: 320px) and (max-width: 478px) {}


 /* Enquiry Form Styling */
    .contact-form {
      background: #eee;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .contact-form h2 {
      margin-bottom: 20px;
      font-weight: bold;
    }
    .form-control:focus {
      box-shadow: none;
      border-color: #0d6efd;
    }
     