a, a:hover, a:focus {
    text-decoration:none;
	color: inherit;
}
/* Responsive design for various screen sizes */
@media (max-width: 576px) {

	.logo-img {

		max-width: 100%;
		height: auto;
		/* Maintain aspect ratio */
		min-width: 150px;
		/* Adjust the width for smaller screens */
	}

	/* .responsive {
		padding-left: 0px ;
		margin-left: 0px;
		justify-content: center;
		justify-self: center;
	} */
	.circle-container {
		display: flex;
	}

	.column {
		flex: 1;
		/* Each column takes equal space */
		width: 0;
		/* Full viewport width on small screens */

	}

	.holderCircle {
		align-self: left;
		margin: 0%;
		padding: 0%;
		scale: 0.6;
	}

	.dotCircle {
		width: 10px;
		/* Adjust the width of the items */
		height: 10px;
		/* Adjust the height of the items */
		font-size: 12px;

	}

}

body,
html,
h1,
h2,
h3,
.custom-font-1,
.btn {
	font-family: "Poppins", Arial, sans-serif !important;
}

@media (min-width: 577px) and (max-width: 768px) {
	.logo-img {
		max-width: 100%;
		height: auto;
		min-width: 200px;
		/* Adjust the width for medium-sized screens */
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	.logo-img {
		max-width: 100%;
		height: auto;
		min-width: 250px;
		/* Adjust the width for larger screens */
	}

	.dotCircle {
		align-self: center;
	}

	.circleSection#container {
		padding-right: 0;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	.logo-img {
		max-width: 100%;
		height: auto;
		min-width: 200px;
		/* Adjust the width for medium laptops */
	}
}

@media (max-width: 767px) {

	/* Adjust the styles for smaller screens */
	.navbar-list .list-inline-item {
		margin-right: 10px;
		/* Decrease spacing for smaller screens */
	}

	.navbar-list .list-inline-item a {
		padding: 8px 16px;
		/* Decrease padding for smaller screens */
		font-size: 14px;
		/* Decrease font size for smaller screens */
	}
}

@media (min-width: 1201px) {
	.logo-img {
		max-width: 100%;
		height: auto;
		min-width: 200px
	}

	.responsive {
		max-width: 100%;
		height: auto;
		width: 350px;
		/* Adjust the width for large screens */
		padding-left: 40%;
		justify-content: center;
	}
}



.circle-container {
	width: 401px;
	/* Adjust the size of the circle */
	height: 400px;
	border-radius: 50%;
	/* Create a circle by using 50% border-radius */
	overflow: hidden;
	/* Hide anything outside the circle */
	position: relative;
	/* For positioning the inner image */
}

/* Media query for screens up to 767px (typical mobile screens) */
@media (max-width: 767px) {
    .circle-container {
        width: 350px;
        height: 350px;
    }
}

.circle-container img {
	width: 100%;
	/* Make sure the image covers the entire circle */
	height: 100%;
	object-fit: cover;
	/* Maintain the image's aspect ratio while covering */
}

.increased-width p {
	max-width: 1200px;
	/* Adjust the value to your desired width */
	margin: 0 auto;
	/* Center the text horizontally */
}

/* body,
h1,
p {
	margin: 0;
	padding: 0;
}


@font-face {
    font-family: 'Poppins';
    src: url('/Poppins\ Font/-14px');
} */

.technology-service .service-circle {
	background-color: #ff4a40;
	/* Set the desired color */
}

/* Styles for Software Service */
.software-service .service-circle {
	background-color: #00cc99;
	/* Set the desired color */
}

/* Styles for Project Service */
.project-service .service-circle {
	background-color: #6699ff;
	/* Set the desired color */
}


.btn-view-work {
	color: black;
	background-color: transparent;
	padding: 10px 20px;
	/* Adjust the padding as needed */
	transition: background-color 0.3s, color 0.3s;
	text-decoration: none;
	/* Remove underline */
	border: none;
}

.btn-view-work:hover {
	color: #00cc99;
}

/* Adjust alignment of "View Our Work" button */
.btn-view-work-container {
	display: flex;
	align-items: center;
	height: 100%;
}

/* Equal-height service cards */
#services .services-cards-row {
	align-items: stretch;
}

#services .service-card-col {
	display: flex;
}

#services .service-card {
	width: 100%;
	height: 100%;
}

#services .service-card .flip-front,
#services .service-card .flip-back {
	height: 100%;
}

/* Clients carousel arrows */
#clients .clients-carousel {
	position: relative;
	padding: 0 56px;
}

#clients .clients-carousel .owl-stage-outer {
	overflow: hidden;
	padding: 8px 0 16px;
}

#clients .clients-carousel .owl-item {
	display: flex;
	padding: 0 12px;
}

#clients .client-card {
	width: 100%;
	min-height: 320px;
}

#clients .client-logo-wrap {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#clients .client-logo {
	max-width: 150px;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
}

#clients .clients-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: -32px;
	right: -32px;
	transform: translateY(-50%);
	pointer-events: none;
}

#clients .clients-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: auto;
}

#clients .clients-carousel .owl-nav .owl-prev {
	left: 48px;
}

#clients .clients-carousel .owl-nav .owl-next {
	right: 0px;
}

#clients .clients-carousel .clients-nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e5e7eb;
	color: #111827;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
	#clients .clients-carousel .owl-nav {
		display: none;
	}

	#clients .clients-carousel .clients-nav-btn {
		width: 36px;
		height: 36px;
	}
}

.service-description-enhanced ul {
	display: block;
	opacity: 1;
	max-height: 100%;
}

ul {
	list-style-type: disc;
	/* or list-style-type: inside; */
}

#values,
#about,
#services,
#projects,
#mission
 {
	/* background-image: url("/images/back.png"); */
	/* background-image: url("/Wallpaper.png"); */
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	/* scroll-margin-block-start: 90px;  */

}

.holderCircle {
	background-color: rgba(102, 153, 255, 0.1);
	width: 500px;
	height: 500px;
	border-radius: 100%;
	margin: 0px -85px;
	/*margin: 60px auto;*/
	position: relative;
}

.dotCircle {
	width: 100%;
	height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	z-index: 20;
}

.dotCircle .itemDot {
	/* background: rgba(255, 255, 255, 0.3); */
	color: #6699ff;
	display: block;
	width: 80px;
	height: 80px;
	position: absolute;
	border-radius: 20px;
	text-align: center;
	line-height: 80px;
	font-size: 30px;
	z-index: 3;
	cursor: pointer;
	border: 2px solid #e6e6e6;
}

.dotCircle .itemDot .forActive {
	width: 56px;
	height: 56px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}

.dotCircle .itemDot .forActive::after {
	content: '';
	width: 5px;
	height: 5px;
	border: 3px solid rgb(102, 153, 255);
	bottom: -31px;
	left: -14px;
	filter: blur(1px);
	position: absolute;
	border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
	content: '';
	width: 6px;
	height: 6px;
	filter: blur(5px);
	top: -15px;
	position: absolute;
	transform: rotate(-45deg);
	border: 6px solid rgb(102, 153, 255);
	right: -39px;
}

.dotCircle .itemDot.active .forActive {
	display: block;
}

.round {
	position: absolute;
	left: 40px;
	top: 45px;
	width: 410px;
	height: 410px;
	border: 2px dotted rgb(102, 153, 255);
	border-radius: 100%;
	-webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
	background: linear-gradient(to right, rgba(102, 153, 255, 0.5) 0%, rgb(102, 153, 255) 100%);
	border-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
	color: #ffffff;
	transition: 0.5s;
	border: 2px solid #ffffff;
	-webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);
	-moz-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, .13);

}

.dotCircle .itemDot {
	font-size: 40px;
}

.contentCircle {
	color: #fff;
	width: 250px;
	border-radius: 100%;
	position: relative;
	top: 150px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
	border-radius: 100%;
	color: #23449e;
	position: absolute;
	text-align: center;
	bottom: 0;
	left: 0;
	opacity: 0;
	transform: scale(0);
	transition: 0.5s;
	font-size: 15px;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	margin: auto;
	line-height: 250px;
}

.CirItem.active {
	z-index: 1;
	opacity: 1;
	transform: scale(1);
	transition: 0.5s;
}

.contentCircle .CirItem i {
	font-size: 180px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -90px;
	color: #000000;
	opacity: 0.1;
}

/* @media only screen and (min-width:300px) and (max-width:599px) {

	.holderCircle {
		margin: 110px auto;
	}

	.holderCircle::after {
		width: 100%;
		height: 100%;
	}

	.dotCircle {
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
	}
}

.itemDot:focus {
	outline: none;
} */


.title-box .title {
	font-weight: 600;
	letter-spacing: 2px;
	position: relative;
	z-index: -1;
}

.title-box span {
	text-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
	color: rgb(102, 153, 255);
	font-weight: 800;
}

.title-box p {
	font-size: 17px;
	line-height: 2em;
}

#scrollButtonContainer {
	position: fixed;
	bottom: 40px;
	/*bottom: 10px;*/

	right: 10px;

	opacity: 1;
	transition: opacity 0.3s ease-in-out;

}

.centered-button {
	position: fixed;
	left: 50%;
	bottom: 20px;

	transform: translateX(-50%);
	opacity: 0;
	width: 50%;
	transition: opacity 0.3s ease-in-out;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 10px 20px;
	border-radius: 30px;
	text-align: center;
}

/* Media query for screens wider than 768px (typical tablet and desktop screens) */
@media (min-width: 768px) {
    .centered-button {
        width: 15%; /* Width for web */
    }
}

.centered-button a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
}

.centered-button:hover {
	background-color: rgba(0, 0, 0, 0.9);
}

/* Styles for tablets and larger phones */
/* @media (max-width: 1024px) {
   #projects .centered-button {
        width: 50%;
        bottom: 10px;
        padding: 8px 15px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
  #projects  .centered-button {
        width: 80%;
        bottom: 5px;
        padding: 6px 12px;
        font-size: 12px;
    }
}*/


.career-card {
	background-color:  #1b1d1f;
    border-bottom: 1px solid #363636; /* White bottom border */
    transition: border-color 0.3s; /* Smooth transition effect */
    padding: 15px;
	border-radius: 10px;
	margin: 15px;

}
.career-card:hover {
    background-color: #2f3235; /* Change color on hover */
    border-radius: 10px;
}
.btn-apply-career {
    color: white;
}

.btn-apply-career:hover {
    background-color: black;
    color: white;
}


#project-card {
	overflow: hidden;
}

a {
	text-decoration: none !important;
  }
