:root {
	--color: rgb(0, 0, 205);
	--primary: #0000f7;
	--secondery: rgb(192, 62, 253);
}
body {
	font-family: "Roboto", sans-serif;
	font-family: "Ubuntu", sans-serif;
	background-color: #fafaff;
	background-attachment: fixed;
}
section {
	overflow-x: hidden;
}

.themeColor {
	color: var(--color);
}

body::-webkit-scrollbar {
	width: 8px;
	opacity: 0.3;
}

body::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
	background-color: var(--color);
	opacity: 0.5;
	border-radius: 3px;
}
.material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
#logo {
	width: 300px;
}

#navbarNav a {
	display: inline-block;
	padding: 5px 10px;
	margin-left: 5px;
	text-decoration: none;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 600;
	color: #000;
}

.btnContact {
	border-color: var(--primary);
	color: var(--primary);
	font-weight: 500;
}
.btnContact:hover {
	background-color: var(--primary);
}
#navBar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px 0;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

#banner {
	background: url("./bg.jpg");
	background-position: 0% 0%;
	animation: bannerbg 120s infinite linear;
	margin-top: 154px;
	background-size: cover;
}

#banner .overlay {
	background: rgba(0, 0, 0, 0.5);
}
#banner .bannerText {
	padding: 25px 15px;
	text-align: center;
	color: #fff;
	border-radius: 15px;
}
#banner h1 {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 15px;
}

@keyframes flip {
	0%,
	80% {
		transform: rotateY(360deg);
	}
}
#banner p {
	font-size: 1.2rem;
	font-weight: 500;
}

@keyframes bannerbg {
	0% {
		background-position: 0% 0%;
	}
	50% {
		background-position: 100% 0%;
	}
	100% {
		background-position: 0% 0%;
	}
}

section {
	padding: 100px 0;
}
section:nth-child(2n + 2) {
	background: #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.secTitle p {
	font-size: 20px;
	color: var(--primary);
}

section:nth-child(2n + 2) .secTitle p {
	color: var(--secondery);
}

.secTitle {
	text-align: center;
	margin-bottom: 40px;
}
.secTitle h3 {
	display: inline-block;
}
.secTitle h3 span {
	vertical-align: middle;
	font-size: 40px;
	margin-right: 10px;
}

.secTitle .design {
	width: 100%;
	height: 5px;
	margin-top: 10px;
	background: linear-gradient(135deg, rgba(108, 49, 205, 0.7) 0%, rgba(0, 0, 205, 0.7) 80%);
	animation: titleAnim 5s infinite linear;
}

.service {
	border-radius: 5px;
	position: relative;
	padding: 45px 10px 0 10px;
	margin: 40px 0;
	border: 1px solid rgba(108, 49, 205);
	background: rgba(255, 255, 255, 0.6);
}
.service.desktop {
	max-width: 600px;
	margin: auto;
	margin-top: 80px;
	margin-bottom: 60px;
}

.service h4 {
	color: #fff;
	background: linear-gradient(135deg, rgba(108, 49, 205) 0%, rgba(0, 0, 205) 80%);
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	padding: 15px;
	border-radius: 5px;
	position: absolute;
	width: calc(100% - 30px);
	top: -30px;
	left: 15px;
}

.service table {
	width: 100%;
	font-weight: 500;
}
.service th {
	text-align: right;
}
.desktop th {
	font-size: 1.3rem;
	text-align: center;
	color: var(--secondery);
}

.service tr:not(:last-child) {
	border-bottom: 1px solid rgba(108, 49, 205);
}
.service th,
.service td {
	padding: 5px 7px;
}

.servlist {
	list-style: none;
	padding: 0;
	margin: 0;
}
.servlist li {
	display: inline-block;
	width: 33%;
	min-width: 300px;
	padding: 10px;
}

.servlist li span {
	vertical-align: bottom;
}

.servlist span,
.service span {
	color: rgba(108, 49, 205);
}
.service span.no {
	color: rgb(205, 49, 127);
}
.service span.noyes {
	color: rgb(49, 205, 158);
}

.serviceInclude {
	border: 1px solid rgba(108, 49, 205);
	border-radius: 10px;
	margin: 10px auto;
	padding: 10px;
	background: linear-gradient(135deg, rgba(108, 49, 205, 0.1) 0%, rgba(0, 0, 205, 0.1) 80%);
	font-weight: 500;
}

.serviceInclude h4 {
	text-align: center;
	color: rgba(108, 49, 205);
	margin: 15px 0 15px 0;
}

.serviceItem {
	text-align: center;
	margin: 15px;
	width: 250px;
	min-height: 140px;
	border-radius: 10px;
	padding: 10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	background: linear-gradient(135deg, rgba(108, 49, 205) 0%, rgba(0, 0, 205) 80%);
	color: #fff;
	font-size: 20px;
	transition: 0.3s all;
}
.serviceItem span {
	font-size: 45px;
	display: inline-block;
	margin-bottom: 10px;
	color: #fff;
}
.serviceItem:hover {
	background: linear-gradient(195deg, rgba(108, 49, 205) 0%, rgba(0, 0, 205) 80%);
}

.about {
	text-align: center;
	border: 1px solid rgba(108, 49, 205);
	border-radius: 10px;
	margin-top: 110px;
	margin-bottom: 10px;
	background: linear-gradient(135deg, rgba(108, 49, 205) 0%, rgba(0, 0, 205) 80%);
	color: #fff;
	transition: 0.3s all;
}
.about:hover {
	background: linear-gradient(175deg, rgba(108, 49, 205) 0%, rgba(0, 0, 205) 80%);
}
.about .person {
	border-radius: 50%;
	margin-top: -100px;
	width: 200px;
	height: 200px;
	transition: 0.3s all;
	border: 1px solid rgba(108, 49, 205);
}
.about:hover .person {
	border-radius: 10px;
	transform: scale(1.1);
}
.about .title {
	margin: 15px;
}
.about .title h6 {
	font-size: 1.7rem;
	margin-bottom: 0;
	font-weight: 600;
}
.about .title p {
	font-size: 1.1rem;
	font-weight: 500;
}
.about .social {
	margin-top: 25px;
	margin-bottom: 20px;
}
.about .social a {
	border: 1px solid #6c31cd;
	padding: 10px;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background-color: #f4f1fa;
	text-align: center;
	transition: 0.3s all;
	display: inline-block;
}
.about .social li img {
	width: 100%;
	height: 100%;
}
.about .social a:hover {
	transform: scale(1.2);
}

#carousel {
	background: url(bg2.jpg);
	background-size: cover;
	color: #fff;
	text-align: center;
}

.carousel-item {
	height: 500px;
	padding: 50px;
}

#carousel h2 {
	font-size: 4rem;
	margin-bottom: 40px;
}
#carousel p {
	font-size: 2rem;
}

#contactUs form {
	max-width: 600px;
	margin: auto;
}

@media only screen and (max-width: 767px) {
	#banner h1 {
		font-size: 2.4rem;
	}
	#banner p {
		font-size: 1.3rem;
	}
}

@media only screen and (max-width: 575px) {
	#banner h1 {
		font-size: 2.2rem;
	}
	#banner p {
		font-size: 1.2rem;
	}
}

/*===================
		Timeline
=======================*/

#ourPledge .container {
	position: relative;
	padding: 100px 0;
}
#ourPledge .container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 25px;
	height: 100%;
	width: 4px;
	background: #7e57c2;
}
@media only screen and (min-width: 1170px) {
	#ourPledge .container::before {
		left: 50%;
		margin-left: -2px;
	}
}

.timeline-block {
	position: relative;
	margin: 2em 0;
}
.timeline-block:after {
	content: "";
	display: table;
	clear: both;
}
.timeline-block:first-child {
	margin-top: 0;
}
.timeline-block:last-child {
	margin-bottom: 0;
}
@media only screen and (min-width: 1170px) {
	.timeline-block {
		margin: 4em 0;
	}
	.timeline-block:first-child {
		margin-top: 0;
	}
	.timeline-block:last-child {
		margin-bottom: 0;
	}
}

.timeline-img {
	position: absolute;
	top: 8px;
	left: 12px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	box-shadow: 0 0 0 4px #7e57c2, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}
.timeline-img {
	background: #0000b7;
}
@media only screen and (min-width: 1170px) {
	.timeline-img {
		width: 30px;
		height: 30px;
		left: 50%;
		margin-left: -15px;
		margin-top: 15px;
		/* Force Hardware Acceleration in WebKit */
		-webkit-transform: translateZ(0);
		-webkit-backface-visibility: hidden;
	}
}

.timeline-content {
	position: relative;
	margin-left: 60px;
	margin-right: 30px;
	background: linear-gradient(135deg, rgba(108, 49, 205) 0%, rgba(0, 0, 205) 80%);
	border-radius: 2px;
	padding: 1em;
	border-radius: 10px;
}

.timeline-content:after {
	content: "";
	display: table;
	clear: both;
}
.timeline-content h2 {
	color: rgba(255, 255, 255, 0.9);
	margin-top: 0;
	margin-bottom: 5px;
}
.timeline-content p {
	color: #fff;
}

.timeline-content::before {
	content: "";
	position: absolute;
	top: 16px;
	right: 100%;
	height: 0;
	width: 0;
	border: 7px solid transparent;
	border-right: 7px solid rgba(108, 49, 205);
}

@media only screen and (min-width: 768px) {
	.timeline-content h2 {
		font-size: 20px;
		font-size: 1.25rem;
	}
}
@media only screen and (min-width: 1170px) {
	.timeline-content {
		color: white;
		margin-left: 0;
		padding: 1.6em;
		width: 36%;
		margin: 0 5%;
	}
	.timeline-content::before {
		top: 24px;
		left: 100%;
		border-color: transparent;
		border-left-color: rgba(0, 0, 205);
	}
	.timeline-block:nth-child(even) .timeline-content {
		float: right;
	}
	.timeline-block:nth-child(even) .timeline-content::before {
		top: 24px;
		left: auto;
		right: 100%;
		border-color: transparent;
		border-right-color: rgba(108, 49, 205);
	}
	.timeline-block:nth-child(even) .timeline-content .cd-read-more {
		float: right;
	}
}
@media only screen and (max-width: 991px) {
	#logo {
		width: 250px;
	}
	#banner {
		margin-top: 138px;
	}
}
@media only screen and (max-width: 767px) {
	#logo {
		width: 200px;
	}
	#banner {
		margin-top: 119px;
	}
}
