@font-face {
	font-family: 'Ubuntu-Light';
	src: url('../fonts/Ubuntu-L.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/Ubuntu-L.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/Ubuntu-L.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('../fonts/Ubuntu-L.svg#Ubuntu-L') format('svg');
	/* Legacy iOS */
}

@font-face {
	font-family: 'Ubuntu';
	src: url('../fonts/Ubuntu-R.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/Ubuntu-R.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/Ubuntu-R.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('../fonts/Ubuntu-R.svg#Ubuntu-R') format('svg');
	/* Legacy iOS */
}

@font-face {
	font-family: 'Ubuntu-Bold';
	src: url('../fonts/Ubuntu-B.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/Ubuntu-B.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/Ubuntu-B.ttf') format('truetype'),
		/* Safari, Android, iOS */
		url('../fonts/Ubuntu-B.svg#Ubuntu-B') format('svg');
	/* Legacy iOS */
}

* {
	margin: 0;
	padding: 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(0,0,0,0.2) transparent;
}

body {
	text-align: center;
	font-family: 'Ubuntu', Fallback;
	line-height: 25px;
	font-size: 20px;
	color: #111111;
	background-color: #FCFCFF;
}

/* širina scrollbar-a */
::-webkit-scrollbar {
	width: 8px;
}

/* track je providan */
::-webkit-scrollbar-track {
	background: transparent;
}

/* thumb */
::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.15);
	border-radius: 20px;
	border: 2px solid transparent;
	background-clip: content-box;
	transition: background 0.3s;
}

/* hover */
::-webkit-scrollbar-thumb:hover {
	background: rgba(10,158,217,0.6);
}

html {
	-webkit-font-smoothing: antialiased;
	font-size: 100%;
	height: 100%;
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	scroll-padding-top: 40px;
	/* prilagodi 20-80px */
}

img {
	width: 100%;
	height: auto;
}

h1 {
	font-family: 'Ubuntu-Bold', Fallback;
	;
	font-size: 68px;
	line-height: 79px;
}

h2 {
	font-family: 'Ubuntu-Bold', Fallback;
	;
	font-size: 52px;
	line-height: 52px;
}

h3 {
	font-family: 'Ubuntu-Bold', Fallback;
	;
	font-size: 36px;
	line-height: 48px;
}

p {
	font-size: 18px;
	line-height: 28px;
	color: #111111;
}

a {
	text-decoration: none;
}

.bold {
	font-family: 'Ubuntu-Bold', Fallback;
}

.light {
	font-family: 'Ubuntu-Light';
}

.pill {
	background-color: #FEFEFE;
	padding: 4px 20px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	font-family: 'Ubuntu-Bold', Fallback;
}

.clearfix {
	clear: both;
}

ul {
	list-style-type: none;

}

nav {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #FCFCFF;

	/* umesto display:none */
	display: block;

	/* početno sakriven */
	transform: translateX(-100%);
	transition: transform 0.35s ease;
	will-change: transform;
}

nav.is-open {
	transform: translateX(0);
}

body.menu-open {
	overflow: hidden;
}

nav .ms-logo img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 500px;
	height: 500px;
	margin-top: -250px;
	/* Half the height */
	margin-left: -250px;
	/* Half the width */
	z-index: -10;
	opacity: 0.1;
}

nav ul {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}

nav ul li {
	padding-bottom: 24px;
	font-size: 20px;
}

nav ul li a {
	letter-spacing: 4px;
	color: #8a8f99;
	cursor: pointer;
	position: relative;
	display: inline-block;
}

nav ul li a:hover {
	color: #111111;
	transition: 0.5s;
	font-family: 'Ubuntu-Bold', Fallback;
}

nav ul li a:after {
	background: none repeat scroll 0 0 transparent;
	bottom: -7px;
	content: "";
	display: block;
	height: 3px;
	left: 50%;
	position: absolute;
	background: #0A9ED9;
	transition: width 0.2s ease 0s, left 0.2s ease 0s;
	width: 0;
}

nav ul li a:hover:after {
	width: 100%;
	left: 0;
}

.close-button {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 20px;
	right: 40px;
	cursor: pointer;
}

.close-button :after {
	content: '';
	height: 30px;
	border-left: 3px solid #a8aeb6;
	position: absolute;
	transform: rotate(45deg);
	left: 28px;
}

.close-button :before {
	content: '';
	height: 30px;
	border-left: 3px solid #a8aeb6;
	position: absolute;
	transform: rotate(-45deg);
	left: 28px;
}

.splash-screen {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	background-color: white;
}

.splash-logo {
	position: relative;
	width: 100%;
	height: 100%;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -110px;
	/* Half the height */
	margin-left: -110px;
	/* Half the width */
	border: 24px solid #f3f3f3;
	border-radius: 50%;
	border-top: 24px solid #0A9ED9;
	border-bottom: 24px solid #0A9ED9;
	width: 220px;
	height: 220px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	animation-name: spin2;
}

.splash-logo img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -45px;
	/* Half the height */
	margin-left: -45px;
	/* Half the width */
	width: 90px;
	height: 90px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	animation-name: spin2;
}


@-webkit-keyframes spin2 {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin2 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*** Start Header ***/

header {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
}

.logo-background {
	width: 92px;
	height: 92px;
	cursor: pointer;
	display: table;
}

.logo-wrapper {
	display: table-cell;
	vertical-align: middle;
	margin: 0 auto;
}

.logo {
	height: 68px;
	width: 68px;
}

#hamburger-icon {
	position: relative;
	width: 25px;
	height: 16px;
}

#hamburger-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	left: 0;
	background-color: #ffffff;
}

#hamburger-icon span:nth-child(1) {
	top: 0;
}

#hamburger-icon span:nth-child(2) {
	top: 7px;
	width: 60%;
}

#hamburger-icon span:nth-child(3) {
	top: 15px;
	width: 90%;
}

.hamburger-background {
	background-color: #A8AEB6;
	width: 92px;
	height: 92px;
	border-radius: 0 0 28px 0;

	/* reset za button */
	appearance: none;
	-webkit-appearance: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;

	/* centriranje */
	display: flex;
	align-items: center;
	justify-content: center;
}

.web-body {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-top: 56px;
}

/*** Start Hero ***/

.hero-section {
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
  display: flex;
  flex: 1 1 0;
  justify-content: center;
}

.protected {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: auto;
}

.protected img {
  display: inline-block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.protected::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Project hero protection fix */
.project-hero .protected {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 550px;
  margin: 0 auto;
}

.project-hero .protected img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
}

/* Gallery protection fix */
.gallery-item .protected {
  display: block;
  width: 100%;
  margin: 0;
}

.project-hero .protected img,
.gallery-item .protected img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-section img {
	width: 100%;
	height: auto;
}

.hero-right {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	flex: 1 1 0;
}

.hero-right a {
	text-align: left;
}

.blue-text {
	font-size: 32px;
	color: #0A9ED9;
	font-family: 'Ubuntu-Bold';
	line-height: 30px;
}

.hero-text {
	row-gap: 16px;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.click {
	background-color: #0A9ED9;
	font-size: 16px;
	padding: 16px 32px;
	color: #fff;
	border: none;
	border-radius: 8px;
	align-self: flex-start;
	cursor: pointer;
	font-family: 'Ubuntu-Bold', Fallback;
	filter: drop-shadow(0px 6px 16px rgba(10, 158, 217, 0.25));
}

/*** Start Top Button ***/

#topButton {
	width: 40px;
	height: 40px;
	background-color: #a8aeb6;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	cursor: pointer;
	border-radius: 8px;
}

.top-arrow {
	box-sizing: border-box;
	position: relative;
	height: 12px;
	width: 12px;
	border-style: solid;
	border-color: white;
	border-width: 0px 3px 3px 0px;
	transform: rotate(-135deg);
	top: 16px;
	left: 14px;

}

/*** Start My Services ***/

.services-section {
	background-color: #F2F6FF;
	border-radius: 24px;
	padding: 60px 56px;
	display: flex;
	row-gap: 52px;
	flex-direction: column;
}

.heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.cube {
	height: 12px;
	width: 12px;
	border-radius: 3px;
	background-color: #0A9ED9;
}

.services-inner {
	display: flex;
	gap: 56px;
	flex-direction: column;
}

.app-icon,
.vector-icon {
	display: flex;
	flex-direction: row;
	gap: 56px;
	align-items: center;
}

.ui-ux-design,
.logo-design {
	display: flex;
	flex-direction: row-reverse;
	gap: 56px;
	align-items: center;
}

.services-section img {
	width: 400px;
	filter: drop-shadow(9px 12px 53px rgba(153, 174, 218, 0.30));
}

.services-text {
	row-gap: 24px;
	display: flex;
	flex-direction: column;
	text-align: left;
}

/*** Start Testimonials ***/

.testimonials-section {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.testimonials {
	display: flex;
	flex-direction: row;
	gap: 56px;
}

.clients {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 400px;
}


.client {
	display: flex;
	gap: 32px;
	padding: 28px 32px;
	border-radius: 24px;
	cursor: pointer;
	background: #fcfcff;
	transition: all .25s ease;
}

.client:hover {
	background: #F2F6FF;
}

.client.active {
	background: #ffffff;
	filter: drop-shadow(9px 12px 53px rgba(153, 174, 218, 0.30));
}

.avatar {
	background-color: #EEFCFF;
	height: 60px;
	width: 60px;
	border-radius: 56px;
	font-family: 'Ubuntu-Bold', Fallback;
	font-size: 28px;
	color: #0A9ED9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.country {
	font-size: 16px;
}

.testimonial-content {
	transition: opacity .2s ease, transform .2s ease;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 1;
	/*FILL CONTAINER */
	min-width: 0;
	/* (sprečava guranje) */
}

.testimonial-content.fade {
	opacity: 0;
	transform: translateY(6px);
}

.stars {
	display: flex;
	gap: 4px;
}

.stars .star {
	width: 32px;
	height: 32px;
	fill: #0A9ED9;
	flex: 0 0 auto;
}

/*** Why Work With Me ***/

.why-section {
	background-color: #F2F6FF;
	border-radius: 24px;
	padding: 60px 56px;
	display: flex;
	row-gap: 52px;
	flex-direction: column;
}

.why-card-section {
	display: flex;
	flex-direction: row;
	gap: 56px;
	align-items: end;
}

.why-card {
	background-color: #fff;
	border-radius: 24px;
	border: 1px solid hsl(220, 52, 94, 0.30);
	padding: 64px 36px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 1 1 0;
	align-items: center;
	justify-content: center;
}

.why-card img {
	height: 112px;
	width: 112px;
}

.number {
	font-size: 52px;
	font-family: 'Ubuntu-Bold', Fallback;
	color: #0A9ED9;
}

/*** Contact ***/

.contact-section {
	display: flex;
	flex-direction: column;
	gap: 56px;
	margin-bottom: 36px;
}

.form-section {
	display: flex;
	flex-direction: row;
	gap: 56px;
}

.form-section img {
	width: 352px;
}

.contact-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: left;
	flex: 1 1 0;
	align-items: center;
}

form {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex: 1 1 0;
	padding: 0 56px;
	justify-content: center;
}

form label {
	display: flex;
	flex-direction: column;

	text-align: left;
	gap: 8px;
}

label span {
	font-family: 'Ubuntu-Bold';
	font-size: 14px;
	line-height: 28px;
}

form input,
form textarea {
	padding: 16px 24px;
	border: none;
	border-radius: 8px;
	background-color: #F2F6FF;
	font-size: 14px;
	font-family: 'Ubuntu';
	outline: none;
}

form textarea {
	height: 116px;
	resize: none;
}

form input:focus,
form textarea:focus {
	box-shadow: 0 0 0 4px rgba(153, 174, 218, 0.30);
}

/*** Footer ***/

footer {
	display: flex;
	flex-direction: column;
	gap: 16px;
	border-top: 1px solid #DFEAFF;
	padding: 28px 0px;
	align-items: center;
}

footer p {
	color: #8A8F99;
}

.social-icons {
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.icon {
	width: 16px;
	color: #8A8F99;
}

/***PROJECT PAGE ***/
/***PROJECT PAGE ***/
/***PROJECT PAGE ***/
/***PROJECT PAGE ***/
/***PROJECT PAGE ***/


/*** Start Header ***/

header {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
}

.back-icon-background {
	background-color: #A8AEB6;
	width: 90px;
	height: 90px;
	cursor: pointer;
	display: table;
	border-radius: 0 0 28px 0;
}

.back-icon-wrapper {
	display: table-cell;
	vertical-align: middle;
	margin: 0 auto;
}

.back-icon {
	height: 32px;
	width: 32px;
}

.logo-background {
	width: 90px;
	height: 90px;
	cursor: pointer;
	display: table;
}

.logo-wrapper {
	display: table-cell;
	vertical-align: middle;
	margin: 0 auto;
}

.logo {
	height: 49px;
	width: 49px;
}

/*** End Header ***/

/*** Start Hero Project ***/

.hero-project-section,
.project-description-section {
	/* stavi tvoju klasu za sledeću sekciju */
	scroll-snap-align: start;
	scroll-snap-stop: normal;
	/* ne forsira hard stop */
	scroll-margin-top: 20px;
	/* malo tolerancije na vrhu */

}

.hero-project-section {
	display: flex;
	flex-direction: column;
	gap: 28px;
	align-items: center;
	position: relative;
	overflow: visible;
	min-height: clamp(620px, 100vh, 860px);
	--circles-offset-y: clamp(24px, 2vh, 0px);
}

.hero-project-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 100px;
}

/* SVG kao pozadina */
.hero-circles {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
	z-index: 0;
	color: var(--circle, rgba(223, 246, 255, 1));
	transform: translate(-50%, -50%) translateY(calc(var(--circles-offset-y, 0px) + var(--circles-y, 0px))) translateX(var(--circles-x, 0px)) scale(var(--circles-scale, 1));
	transition: color .35s ease, opacity .25s ease, transform .25s ease;
	will-change: color;
}

/* sadržaj iznad */
.hero-project-section>*:not(.hero-circles) {
	position: relative;
	z-index: 1;
}

.hero-headline {
	display: flex;
	gap: 24px;
	flex-direction: column;
}

.hero--icon {
	height: 500px;
	max-width: 90vw;
}

.hero--wide {
	height: 550px;
	max-width: 95vw;
	filter: drop-shadow(9px 12px 53px rgba(153, 174, 218, 0.30));
	border-radius: 24px;
}

.hero-slider {
	display: flex;
	gap: 16px;
	flex-direction: column;
}

.hero-slider p {
	color: #8A8F99;
}

#projectHeroImage {
	transition: opacity .22s ease, transform .22s ease;
	will-change: opacity, transform;
}

#projectHeroImage.is-out {
	opacity: 0;
	transform: translateX(-14px);
}

#projectHeroImage.is-in {
	opacity: 1;
	transform: translateX(0);
}

.other-projects__item {
	display: inline-flex;
}

.projects {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.projects,
#otherProjects {
	overflow: visible;
}

.other-projects__item.is-active[aria-current="page"] {
	pointer-events: none;
	transform: translateY(-1px);
	filter: drop-shadow(0px 6px 12px rgba(153, 174, 218, 0.35));
}


.other-projects__item.is-active img {
	width: 58px;
	height: 58px;
}

.other-projects__item img {
  width: 64px;
  height: 64px;
  background: #fff;
  padding: 8px;
  border-radius: 16px;
  display: block;
  object-fit: contain;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.other-projects__item {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* UI/UX thumbs: cover (crop) */
.other-projects__item.is-ui img{
  
  object-fit:cover;       /* bitno */
  border-radius:16px;
}

.other-projects__item.is-active img {
	opacity: 1;
}

/* optional: ostali blago sivi */
.other-projects__item:not(.is-active) {
	opacity: .85;
}

.other-projects__item:not(.is-active):hover {
	opacity: 1;
}

/*** Start Project Description ***/

.project-description {
	background-color: #F2F6FF;
	border-radius: 24px;
	padding: 60px 56px;
	display: flex;
	row-gap: 52px;
	flex-direction: column;
	text-align: left;
}

.decirption {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.deliverables {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.badges {
	display: flex;
	flex-direction: row;
	gap: 16px;
}

/*** Start Project Gallery ***/

.project-gallery-section {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.is-hidden {
	display: none;
}

.project-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
	gap: 24px;


}

.project-gallery img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
}

/*** Start Quote ***/

.quote {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 36px 0;
}