html,
body {
	overflow-x: hidden;
	/* font-family: "open sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
	background-color: #fff;
	scroll-behavior: smooth;
}

/* h1, h2, h3, h4, h5, h6,
p, span, div, main, section {
	font-family: "open sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
} */

* {
	font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* General */
svg {
	width: 16px;
	height: 16px;
	display: inline;
}

.link {
	text-decoration: none !important;
}

.link-white {
	color: #fff !important;
}

.link-dark {
	color: var(--color-dark) !important;
}

.link-black {
	color: var(--color-black) !important;
}

.prompt {
	font-size: 1.25rem;
	font-weight: 200;
	color: var(--color-dark);
}

.btn {
	font-size: 1rem !important;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	border: none;
}

.btn:hover {
	/* transform: translateY(-3px); */
	border-radius: 0;
	box-shadow: none;
	outline: none;
	border: none;
}

.btn-success {
	background-color: var(--color-cyan);
}

.btn-success:hover {
	background-color: var(--color-cyan-dark);
	box-shadow: 0 0 40px 5px var(--color-cyan-lighter);
}

.separator {
	width: 70px;
	border-width: 1px;
	margin: 20px auto;
	opacity: 1;
}

.separator-white {
	border-color: #fff !important;
}

.separator-dark {
	border-color: var(--color-cyan-dark) !important;
}

.smaller {
	font-size: 0.68rem;
}

.small {
	font-size: 0.8rem;
}

.btn-cta {
	background-color: var(--color-cyan);
	color: var(--color-white);
	font-weight: 600;
}

.btn-cta:hover {
	background-color: var(--color-cyan-dark);
	color: var(--color-white);
}

.section-right {
	padding: 4rem 0 4rem 2rem;
}

.section-white {
	background-color: #fff;
	color: var(--color-dark);
}

.section-light {
	background-color: rgba(var(--color-saffron-lighter-rgb), 0.04);
}

.section-dark {
	/* background-color: var(--color-cyan-dark); */
	background-color: var(--color-dark);
	color: #fff;
}

.section-heading {
	font-size: 3rem;
	font-weight: 200;
	margin-left: 20px;
	padding-bottom: 5px;
	text-align: center;
	color: var(--color-cyan-dark);
}

.section-content {
	padding-top: 30px;
}
/* General End */


/* Header */
header, nav {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: rgba(var(--color-cyan-light-rgb), 0.5) !important;
	background-color: #ffffff00 !important;
	font-size: 0.95rem;
	/* box-shadow: 0 0 5px 0 #000; */
	z-index: 1;
}

header, header * {
	transition: all 0.4s ease-in-out;
}

header .navbar-toggler {
	border: none !important;
}

header #navbar-ts > #navbar-close {
	display: none;
}

header ul.navbar-nav li {
	padding: 0 30px 0 30px !important;
}

header a.nav-link {
	color: #000 !important;
	font-weight: 450 !important;
	background-color: none !important;
	background: none !important;
	transition: text-color 1s !important;
}

header a.nav-link.active {
	border-bottom: 2px solid var(--color-saffron);
	transition: text-color 1s !important;
	transition: border-color 2s !important;
}

header a.nav-link:hover::before {
	box-shadow: 0 3px 50px 20px var(--color-cyan-light);
	transition: all 0.3s ease-in-out ;
}

header a.nav-link.active:hover::before {
	box-shadow: 0 3px 50px 20px var(--color-saffron-lighter);
	transition: all 0.3s ease-in-out ;
}

header a.nav-link::before {
	content: '';
	color: #fff;
	font-size: 0px;
	width: 0px;
	height: 0px;
	position: relative;
	left: 30px;
	background: transparent;
	background-color: transparent;
	display: block;
	z-index: -1;
}

header.dark nav {
	padding: 0.4em;
}

header.dark, header.dark nav {
	background-color: #ffffffbb !important;
	box-shadow: 32vw 0 5px 0 #000;
	/* font-size: 0.95rem; */
}

header.dark a.navbar-brand > img {
	width: 40% !important;
}

header.dark a.nav-link.active {
	color: var(--color-saffron-dark) !important;
}

img.logo {
	width: 170px !important;
}

header #header-cta {
	background-color: var(--color-saffron);
	border: none;
	color: var(--color-white);
}

header #header-cta:hover {
	box-shadow: 0 0 40px 5px rgba(var(--color-saffron-lighter-rgb), 0.6);
	border: none;
	transform: scale(1.05);
}
/* Header End */

/* Main */
main .cover-image-wrapper {
	height: 100vh;
}

main .cover-image {
	position: fixed;
	top: 0;
	left: -20px;
	/* background-image: url('https://img.freepik.com/free-photo/smiling-man-sitting-office_23-2147785102.jpg?t=st=1713426811~exp=1713430411~hmac=b5510249b611fe0f24c2e63714fbd4197e28efb008b8a2a144be5b8709e3f557&w=360'); */
	background-image: url('../images/sanjay-profile-cover.png');
	background-repeat: no-repeat;
	background-size: cover;
	width: 35%;
	height: 100vh;
}

.section-home {
	padding-top: 4rem;
	padding-bottom: 2rem;
}

main #section-welcome {
	z-index: 4;
	font-size: 1.2rem;
	font-size: 1.08rem;
	padding: 3em;
	padding-left: 0px;
	color: rgba(var(--color-dark-rgb), 0.85);
}

#section-welcome .intro-text  h1 {
	color: var(--color-cyan);
	font-weight: 500;
	font-size: 2.5rem;
}

#section-welcome .intro-text  h1 > div:first-of-type {
	color: #000;
	font-weight: 100;
	font-size: 5rem;
}

#section-welcome .intro-text  h1 > div:nth-of-type(2) {
	color: var(--color-cyan);
	font-weight: 300;
	font-size: 2.5rem;
}

#section-welcome .intro-text  p {
	margin: 50px 0 100px 0px; 
	font-size: 1.1rem;
	font-weight: 400;
	color: rgba(var(--color-dark-rgb), 0.85);
}

#section-welcome .intro-text span {
	font-size: 1.15rem;
	font-size: 1.5rem;
	font-weight: 250;
	color: rgba(var(--color-dark-rgb), 1);
	color: #000;
}

#section-welcome .intro-text #about-short > div:first-child {
	/* border-radius: 0px 0 0 80px;
	background-color: #fff !important;
	border: none !important;
	position: relative;
	left: 0px;
	padding: 0px 0px;
	padding-bottom: 0; */
}

#section-welcome .intro-text #about-short > div > div:first-child {
	/* left: -5px;
	top: -17px; */
}

#section-welcome .intro-text #about-short > div > div:first-child > p:first-child {
	font-size: 1.15rem;
	font-weight: 400;
	color: #000;
}

#section-welcome .intro-text #about-short > div > div:first-child > p:nth-child(2) {
	font-size: 1.10rem;
	font-weight: 400;
	color: #000;
}

#section-counter .counter > div:first-child {
	font-size: 5rem;
	font-weight: 100;
}

#section-counter .counter > div:first-child > span:nth-child(2) {
	font-size: 3rem;
	position: relative;
	left: -20px;
	top: -40px;
}

#section-counter .counter > div:nth-child(2) {
	font-size: 0.85rem;
	position: relative;
	top: -20px;
	left: -20px;
}

main #section-services {
	padding: 40px 0 110px 0;
}

.service-box {
	background-color: #fff;
	padding: 0;
	transition: transform 1s ease-in, box-shadow 1s ease-out;
	text-align: center;
	padding-bottom: 10px;
	cursor: default;
}

.service-box:hover {
	transform: translateY(-15px) scaleX(1.1);
	box-shadow: 0 5px 30px 0 #333333bb;
}

.service-heading {
	padding-bottom: 0px;
	background-color: transparent;
	font-size: 1.5rem;
	font-weight: 500;
}

.service-content {
	padding: 0 10px;
}

.service-content li {
	padding: 5px 0;
	list-style: none;
	font-size: 0.85rem !important;
}

.service-content li:before {
	content: '✓ ';
	color: #666;
}

#section-reviews #reviews-slider .carousel-indicators > button {
	width: 5px;
	height: 5px;
}

#section-reviews #reviews-slider .carousel-inner > .carousel-item > div {
	width: 25%;
}

#section-projects {
	/* padding-top: 0px; */
}

.project {
	transition: all 0.3s ease-in-out;
}

.project:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px 5px var(--color-cyan-lighter);
}

#section-contact {
	padding-bottom: 3rem;
}

#section-contact .contact-heading {
	padding-bottom: 0px;
	background-color: transparent;
	font-size: 1.5rem;
	font-weight: 500;
}

.contact-content li {
	font-size: 0.85rem;
	padding-right: 15px;
}

.contact li {
	/* padding-right: 15px; */
}

.contact li:before {
	content: none;
}

#fixed-qc {
	display: none;
}
/* Main End */

/* Form  */
textarea {
	height: 10px;
}

input[type="text"]:focus, textarea:focus {
	box-shadow: none !important;
	border-color: var(--bs-border-color) !important;
}
/* form End */

/* footer */
footer #cw-section {
	box-shadow: -12px 6px 5px 10px #fff;
	position: fixed;
	bottom: 0;
	text-align: left;
	border-radius: 0 100px 0 0;
	padding: 10px;
	background-color: var(--color-orange);
	color: #fff;
	height: 100px;
	width: 400px;
	z-index: 1;
}

footer #cw-section > span {
	font-size: 1.2rem;
	font-weight: 600;
}

footer #cw-section > div span {
	line-height: 1.2;
	font-size: 3rem;
	font-weight: 400;
	color: var(--color-white) !important;
}

footer #credit-section {
	font-size: 0.85rem;
	padding: 10px 0 10px 450px;
	margin: 0;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(90deg, var(--color-dark) 85%, var(--color-cyan-darker));
}
/* footer End */


/* Media Queries */
@media (max-width: 576px) {

	.section-right {
		padding-left: 10px;
	}

	/* #section-welcome {
		text-align: center !important;
		padding: 0px !important;
		padding-top: 3rem !important;
		padding-bottom: 4rem !important;
		padding: 3rem 0.4rem 4rem 0rem !important; 
	} */

	#section-welcome .intro-text  h1 {
		font-size: 2.5rem;
	}

	#section-welcome .intro-text  h1 > div:first-of-type {
		font-size: 3.5rem;
	}
	
	#section-welcome .intro-text  h1 > div:nth-of-type(2) {
		font-size: 1.9rem;
	}

	#section-welcome .intro-text #about-short > div > div:first-child {
		width: 100%;
	}
	
	#section-welcome .intro-text #about-short > div > div:first-child > p:first-child {
		font-size: 1.04rem;
		font-weight: 400;
		color: #000;
	}
	
	#section-welcome .intro-text #about-short > div > div:first-child > p:nth-child(2) {
		font-size: 1.04rem;
		font-weight: 400;
		color: #000;
		display: inline;
	}

	#section-counter .counter {
		width: 100%;
		padding-bottom: 30px;
	}

	#section-counter .counter:last-child {
		padding-bottom: 0px;
	}

	#section-reviews #reviews-slider .carousel-inner > .carousel-item > div {
		width: 70%;
	}

	#section-contact h3.contact-heading span {
		position: relative !important;
		top: 2px !important;
	}

	/* .contact li {
		padding-right: 0px;
		padding-bottom: 12px !important;
		width: 100%;
	} */

	footer #credit-section .footer-email {
		font-size: 1.1rem;
		padding-bottom: 15px;
	}

	footer #credit-section .footer-copyright {
		font-size: 0.85rem;
	}

	footer #credit-section .footer-credit {
		font-size: 0.70rem;
	}
}

@media (max-width: 992px) {
	header .navbar-nav {
		position: absolute;
		bottom: -190px;
		left: 0;
		z-index: 2;
		width: 100%;
		padding-top: 7em;
		padding-bottom: 1em;
		border-left: 10px solid var(--color-saffron);
		border-top: none;
		background-color: #fffffff8;
		/* transition: all 1s; */
	}

	header .navbar-nav li.nav-item {
		padding-top: 5px !important;
		padding-bottom: 5px !important;
		font-size: 1.1rem;
	}

	header #navbar-ts > #navbar-close {
		display: inline;
		position: absolute;
		top: 30px;
		right: 20px;
		color: #888;
		color: rgba(var(--color-cyan-light-rgb), 1);
		font-weight: 600;
		font-size: 1rem;
		box-shadow: none;
		cursor: pointer;
		z-index: 3;
	}

	#header-cta {
		position: relative;
		bottom: 40px;
		z-index: 3;
		margin-left: 20px;
	}

	header.dark .navbar-nav {
		border-left: 10px solid var(--color-cyan);
	}

	header.dark nav {
		/* padding: 0 !important; */
		padding: 10px 0 !important;
	}
	
	header.dark, header.dark nav {
		background-color: #ffffffbb !important;
		box-shadow: 0 0px 10px 0 rgba(var(--color-orange-lighter-rgb), 0.5) !important;
		/* border-bottom: 1px solid var(--color-orange-lighter) !important; */
		font-size: 1.2rem;
	}
	
	header.dark a.navbar-brand > img {
		width: 150px !important;
	}
	
	main #col-cover {
		padding-left: 0px;
		padding-right: 0px;
	}

	main .cover-image {
		position: static;
		width: 100%;
		background-position: center center;
		margin: 0;
		padding: 0;
	}

	#section-welcome {
		text-align: center !important;
		padding: 0px !important;
		padding-top: 3rem !important;
		padding-bottom: 4rem !important;
		padding: 3rem 0.4rem 4rem 0rem !important; 
	}

	#section-services .service-content li {
		font-size: 0.9rem !important;
		width: 100%;
	}

	#section-projects {
		padding-top: 30px;
	}

	#section-contact {
		padding-bottom: 0 !important;
	}

	#section-contact .contact-content li {
		width: 100%;
		font-size: 1rem;
		padding-right: 0px;
		padding-bottom: 12px !important;
	}

	#section-contact h3.contact-heading span {
		position: relative !important;
		top: 0px;
	}

	textarea, input[type="text"] {
		height: 5rem !important;
	}

	input[type="text"] {
		height: 2.2rem !important;
	}
	
	input[type="text"]:focus, textarea:focus {
		box-shadow: none !important;
		border-color: var(--bs-border-color) !important;
	}


	footer #cw-section {
		display: none;
	}

	.contact #btn-submit {
		width: 100%;
		padding-top: 7px !important;
		padding-bottom: 7px !important;
	}

	#fixed-qc {
		display: flex;
		position: fixed;
		bottom: 0;
		width: 100%;
		z-index: 1;
	}

	footer #credit-section {
		padding: 40px 0 20px 0px;
		font-size: 1rem;
		position: static;
		background: linear-gradient(
			160deg,
			var(--color-dark) 65%, 
			rgba(var(--color-cyan-light-rgb), 0.5)
		);
	}
}

/* Media Queries End */