/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@font-face {
	font-family: "CircularStd";
	src: url("../fonts/CircularStd-Book.woff2") format("woff2"),
		url("../fonts/CircularStd-Book.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "CircularStd";
	src: url("../fonts/CircularStd-Bold.woff2") format("woff2"),
		url("../fonts/CircularStd-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "CircularStd";
	src: url("../fonts/CircularStd-Medium.woff2") format("woff2"),
		url("../fonts/CircularStd-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	/* Google Font */
	--circular: "CircularStd", sans-serif;

	/* Color Palette */
	--white: #fff;
	--black: #000;
	--primary: #00bec5;
	--dark: #111623;
	--grey-1: #f5f5f5;
	--grey-2: #d9d9db;
	--grey-3: #9c9da4;
	--green: #00c5a4;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	color: var(--dark);
	font-size: 16px;
	font-family: var(--circular);
	font-weight: 400;
	line-height: normal;
	background-color: #f9fcfe;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}
section,
.section {
	position: relative;
}
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}
a,
button {
	text-decoration: none;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
a,
button {
	outline: none;
	box-shadow: none;
}
button {
	background: unset;
	padding: 0;
}
ol,
ul {
	margin: 0;
	padding: 0;
}
ol li,
ul li {
	list-style: none;
}
img {
	height: auto;
	max-width: 100%;
	object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
	outline: none;
	box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
	margin: 0;
	padding: 0;
}

*::-moz-selection {
	background: var(--primary);
	color: var(--white);
	text-shadow: none;
}
::-moz-selection {
	background: var(--primary);
	color: var(--white);
	text-shadow: none;
}
::selection {
	background: var(--primary);
	color: var(--white);
	text-shadow: none;
}

*::-moz-placeholder {
	color: var(--grey-2);
	font-size: 15px;
	opacity: 1;
}
*::placeholder {
	color: var(--grey-2);
	font-size: 15px;
	opacity: 1;
}

/* Reusable Components */
.btn {
	color: var(--dark);
	font-size: 16px;
	font-weight: 500;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 14px 39px;
	border-radius: 6px;
	position: relative;
	z-index: 1;
	border: 1px solid transparent;
	transition: all 0.3s ease-in-out;
}
.btn--primary {
	color: var(--white);
	background: linear-gradient(90deg, #00bec5 0%, #00c5a4 100%);
}
.btn--primary:hover {
	color: var(--white);
}
.btn--primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	opacity: 0;
	z-index: -1;
	transition: all 0.3s ease-in-out;
}
.btn--primary:hover::after {
	opacity: 0.1;
}
.btn--secondary {
	color: var(--grey-3);
	border-color: var(--grey-2);
}
.btn--secondary:hover {
	color: var(--grey-3);
	background-color: #fff;
	border-color: var(--grey-2);
}
.btn__icon {
	font-size: 18px;
}

#loadMoreUiUx {
	color: var(--green);
	border: 1px solid var(--green);
	padding-right: 24px;
}

#loadMoreUiUx:hover {
	background-color: rgba(0, 197, 164, 0.1);
}

.cta-link {
	background: linear-gradient(90deg, #00bec5 0%, #00c5a4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-link:hover {
    filter: brightness(70%);
}
.cta-link::selection {
    -webkit-text-fill-color: white;
}

.hide {
	display: none;
}

/* Customized Bootstrap CSS */
.fs-1 {
	font-size: 48px !important;
}
.fs-2 {
	font-size: 32px !important;
}

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header {
	padding: 16px 0;
	background-color: #f9fcfe;
    transition: all .3s ease;
}
.header__wrapper {
	padding: 0 8px 0 16px;
}
.logo {
	max-width: 48px;
}
.btn--menu,
.btn--menuClose {
	padding: 8px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
}
.menu__item {
	border-bottom: 1px solid var(--grey-2);
}
.menu__item:first-child {
	border-top: 1px solid var(--grey-2);
}
.menu__link {
	color: #4a4b53;
	padding: 14px 16px;
}
.menu__link:hover {
	color: var(--primary);
	background-color: var(--grey-1);
}
.availability-text {
	color: var(--grey-3);
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 100px;
	border: 1px solid var(--grey-3);
	cursor: default;
}
.availability {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--grey-3);
}
.availability.available {
	background-color: #00c5a4;
}
.availability.limited {
	background-color: #FDA556;
}
.availability.unavailable {
	background-color: #E02B2B;
}

.header__link__item:hover {
	 text-decoration: underline;
    text-underline-offset: 8px;
}


/* LG Device Menu */
.header__ul {
	gap: 36px;
}
.header__link {
	color: #4a4b53;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-decoration-color: transparent;
}
.header__link:hover {
	color: var(--primary);
	text-decoration-color: var(--primary);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s ease;
		border-bottom: 1px solid transparent;
}
.sticky-header.sticky-active {
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	transition: all .3s ease;
	border-bottom: 1px solid var(--grey-2);
}
.sticky-header.sticky-active.show {
    position: fixed;
    top: 0;
    transition: all .3s ease;
}


.grid {
	display: block;
	width: 100%;
}
.grid-item {
	width: 100%; 
	margin-bottom: 24px;
}


/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */






/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */

.hero {
	padding: 88px 0 130px;
}
.hero::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60%;
	background: linear-gradient(to top, #eef3f7 0%, #f9fcfe 100%);
	z-index: -1;
}
.hero__thumb {
	max-width: 486px;
	border-radius: 16px;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.04);
	margin-bottom: 88px;
}
.hero__thumb__image {
	border-radius: 16px;
}
.hero__thumb__badge {
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%) rotate(-3.75deg);
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.04);
}
.profile-designation {
	color: #b0b0b0;
	font-size: 13px;
}
.section__para {
	color: var(--grey-3);
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */



/* ================================================ */
/* :: 6.0 Client Section + Projects Section CSS Start */
/* ================================================ */

.client {
	border-top: 1px solid var(--grey-2);
}
.client__wrapper {
	max-width: 1000px;
	padding: 24px 14px 16px;
	border: 1px solid var(--grey-2);
	margin-top: -72px;
}
.client__top__text {
	font-size: 12px;
	color: #b0b0b0;
}
.client__logo__wrap {
	gap: 13px;
}
.client__logo {
	max-width: 90px;
	aspect-ratio: 7 / 4;
}

.project {
	padding-top: 60px;
	overflow: hidden;
}
.project__tab__content {
	padding: 40px 0;
	background-color: #eef3f7;
	border-top: 1px solid var(--grey-2);
}
.nav-tabs,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link {
	border: none;
	box-shadow: unset;
	background-color: transparent;
}
.project .nav {
	max-width: 588px;
}
.project .nav-link {
	color: var(--grey-3);
	font-size: 15px;
	font-weight: 500;
	padding: 20px 10px;
	flex: 1;
	position: relative;
	text-transform: uppercase;
}
.project .nav-link.active {
	color: var(--dark);
}
.project .nav-link::after,
.project .nav-link.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary);
	transition: all 0.3s ease-in-out;
}
.project .nav-link::after {
	width: 0;
}
.project .nav-link:hover::after {
	width: 100%;
}
.project__uiux {

}
.project__para {
	color: #9c9da4;
}
.project__tags__wrap {
	gap: 8px 6px;
	padding-bottom: 24px;
}
.project__tag {
	padding: 1px;
	display: inline-flex; /* d-inline-flex */
    justify-content: center; /* justify-content-center */
    align-items: center; /* align-items-center */
    text-transform: uppercase; /* text-uppercase */
    position: relative; /* position-relative */
    z-index: 1; /* z-1 */
    overflow: hidden; /* overflow-hidden */
}
.project__tag::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100px;
	background: var(--primary);
	z-index: -1;
}
.project__tag__text {
	font-size: 11px;
	border-radius: 100px;
	background-color: #eef3f7;
	padding: 3px 10px 2px;
	color: var(--primary);
}

.uiux__thumb {
	
}
.project__branding__item {
	border: 1px solid var(--grey-2);
}
.uiux__load__more {
	margin-top: 0px;
}

/* loadmore functionality */
.uiux__item {
	display: none !important;
}

.uiux__item.visible {
	display: flex !important;
	border-top: 1px solid var(--grey-2);
    padding: 64px 0;
}

.uiux__item.visible:first-of-type {
    border-top: 0;
    padding-top: 0;
}


/* ================================================ */
/* :: 6.0 Client Section + Projects Section CSS End */
/* ================================================ */




.about {
	padding: 64px 0;
/*	border-top: 1px solid var(--grey-2);*/
}

.about-title {
	font-size: 19px;
}

.about-text {
	color: var(--grey-3);
	font-size: 15px;
}




/* =============================== */
/* :: 7.0 Contact Section CSS Start */
/* =============================== */
.contact {
	padding: 50px 0;
/*	border-top: 1px solid var(--grey-2);*/
	background-color: #eef3f7;
}
.contact__wrapper {
	max-width: 588px;
}
.contact__form {
	gap: 20px;
}
.label {
	color: var(--dark);
}
.input {
	color: var(--dark);
	font-size: 15px;
	padding: 16px;
	border-radius: 4px;
	border: 1px solid var(--grey-2);
	background-color: var(--white);
	transition: all 0.3s ease-in-out;
}
.input:focus,
.input:not(:placeholder-shown) {
	border-color: var(--dark);
}
.input--textarea {
	height: 100px;
	resize: none;
}
.contact__mail {
	background: linear-gradient(90deg, #00bec5 0%, #00c5a4 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/* =============================== */
/* :: 7.0 Contact Section CSS End */
/* =============================== */



/* =============================== */
/* :: 8.0 Footer Area CSS Start */
/* =============================== */
.footer {
    padding: 50px 0 70px;
    background-color: var(--dark);
}
.footer__logo__text {
    color: var(--white);
}
.footer__logo__designation, .social-link {
    color: var(--grey-3);
    font-size: 13px;
}
.footer__social__wrap {
    gap: 12px;
}
.social-link__icon {
    font-size: 16px;
}
.social-link {
	color: var(--grey-3);
}
.social-link:hover {
    color: var(--grey-1);
}
/* =============================== */
/* :: 8.0 Footer Area CSS End */
/* =============================== */
