.assist {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: calc(100vh - 244px);
}

.assist_main {
	width: 65%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 3.5rem;
}

.assist_header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.assist_img {
	background-image: url("../assets/assist.svg");
	width: 35%;
	height: 400px;
	background-repeat: no-repeat;
	background-position: center; /* Görüntüyü ortalar */
	background-size: contain;
}

.assist_contents {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 24px;
	width: 70%;
}

.assist_contents input[type="button"] {
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: center;
	background-color: #2b3845;
	font-size: 14px;
	font-weight: bold;
}

.assist_contents input[type="button"]:hover {
	background-color: #3c4d5b;
}

.assist_header h1 {
	font-size: 36px;
	font-weight: bold;
}

.assist_header p {
	font-size: 16px;
	font-weight: 400;
}

.portfolio {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}

.jesus {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
}

.img_jesus {
	position: relative;
	background-image: url("../assets/jesus.svg");
	width: 35%;
	height: 200px;
	background-repeat: no-repeat;
	background-position: center; /* Görüntüyü ortalar */
}

.img_jesus .png_icons {
	position: absolute;
	width: 28px; /* İkonların genişliği */
	height: 28px; /* İkonların yüksekliği */
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.4s ease-out;
}

/* Firebase */
.img_jesus .png_icons:nth-child(1) {
	background-image: url("../assets/icons/firebase.svg");
	top: 74%;
	left: 27%;
}

/* MongoDB */
.img_jesus .png_icons:nth-child(2) {
	background-image: url("../assets/icons/mongo.svg");
	top: 84%;
	left: 60%;
}

/* Dart */
.img_jesus .png_icons:nth-child(3) {
	background-image: url("../assets/icons/dart.svg");
	top: 38%;
	left: -15%;
}

/* Flutter */
.img_jesus .png_icons:nth-child(4) {
	background-image: url("../assets/icons/flutter.svg");
	top: 20%;
	left: 10%;
}

/* JavaScript */
.img_jesus .png_icons:nth-child(5) {
	background-image: url("../assets/icons/javascript.svg");
	top: 30%;
	left: 88%;
}

/* Node.js */
.img_jesus .png_icons:nth-child(6) {
	background-image: url("../assets/icons/nodejs.svg");
	top: 84%;
	left: 39%;
}

/* Socket */
.img_jesus .png_icons:nth-child(7) {
	background-image: url("../assets/icons/socket.svg");
	top: 60%;
	left: 6%;
}

/* UX */
.img_jesus .png_icons:nth-child(8) {
	background-image: url("../assets/icons/ux.svg");
	top: 60%;
	left: 71%;
}

/* CSS */
.img_jesus .png_icons:nth-child(9) {
	background-image: url("../assets/icons/css.svg");
	top: 70%;
	left: 90%;
}

/* Threejs */
.img_jesus .png_icons:nth-child(10) {
	background-image: url("../assets/icons/threejs.svg");
	top: 60%;
	left: 105%;
}

.line {
	background-image: url("../assets/line.svg");
	width: 100%;
	height: 100px;
	background-repeat: no-repeat;
	background-position: center;
}

.portfolio_cards {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px; /* Kartlar arasındaki boşluk */
}

.portfolio_cards .cards {
	background-color: #000;
	aspect-ratio: 16 / 9;
	background-size: cover;
	cursor: pointer;
	background-repeat: no-repeat;
}

.img_jesus .png_icons {
	position: absolute;
}

.cards:nth-child(1) {
	background-image: url("../assets/projectsTumb/avex.png");
}

.cards:nth-child(2) {
	background-image: url("../assets/projectsTumb/findkey.png");
}

.cards:nth-child(3) {
	background-image: url("../assets/projectsTumb/glass.png");
}

.cards:nth-child(4) {
	background-image: url("../assets/projectsTumb/jaxafood.png");
}

.cards:nth-child(5) {
	background-image: url("../assets/projectsTumb/city.png");
}

.cards:nth-child(6) {
	background-image: url("../assets/projectsTumb/boardwars.png");
}

.cards:nth-child(7) {
	background-image: url("../assets/projectsTumb/istanbulairport.png");
}

.cards:nth-child(8) {
	background-image: url("../assets/projectsTumb/englishvoice.png");
}

.cards:nth-child(9) {
	background-image: url("../assets/projectsTumb/jaxa.png");
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	background-color: #282828;
	padding: 20px;
	border-radius: 8px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 65%;
	height: 75%;
}

.close-button {
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close-button:hover,
.close-button:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.project_details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3rem;
}

.project_techstack,
.project_text,
.features {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.project_details .title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #bca579;
}

.project_details :not(div.title) {
	color: #ededed;
}

.features ul :not(li:last-child) {
	margin-bottom: 0.5rem;
}

.features ul li .bullet {
	margin-right: 0.5rem;
	color: #d3d3d3; /* Nokta rengi */
	font-size: 16px; /* Nokta boyutu */
}

.project_details :not(div.title) {
	font-size: 0.9rem;
	font-weight: 400;
}

.cart {
	background-image: url("../assets/cart.svg");
	width: 24px;
	height: 24px;
	background-size: contain;
	position: relative;
	cursor: pointer;
}

.cart_dropdown {
	display: none;
	position: absolute;
	width: 250px;
	height: auto;
	background-color: #3e4c59;
	top: 2.5rem;
	right: -100%;
	flex-direction: column;
}

.item_count {
	position: absolute;
	top: -8px;
	right: -8px;
	color: #fff;
	font-size: 14px;
}

.cart_dropdown .cart_list {
	min-height: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cart_dropdown .front_end,
.cart_dropdown .back_end,
.cart_dropdown .total_price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #454545;
	border-top: 1px solid #282828;
	min-height: 36px;
	padding: 0rem 0.8rem;
}

.empty_cart {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart_list .cart_item:nth-child(even) {
	background-color: #36424d; /* Koyu renk */
}

.item_count {
	display: none;
	font-size: 1rem;
}

.wp_contact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	width: fit-content;
	padding: 1rem;
	background-color: #314355;
}

.wp_contact:hover {
	background-color: #3e4c59;
}

.wp_icon {
	background-image: url("../assets/whatsapp.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
}

.cart_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0.5rem;
	box-sizing: border-box;
}

.item_func {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.delete_item,
.info_item {
	border: none;
	background: none;
	cursor: pointer;
	font-size: 14px; /* Adjusts the icon size */
	text-align: center;
}

.delete_item {
	color: #ff6262; /* Red color for the delete button */
}

.info_item {
	color: #d3d3d3; /* Blue color for the info button */
}

.info_screen {
	display: none;
	gap: 2rem;
	flex-direction: column;
	align-items: center;
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	overflow: hidden;
	z-index: 2;
	padding: 4rem;
	box-sizing: border-box;
}

.info_close {
	position: absolute;
	right: 1.8rem;
	top: 1.8rem;
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.info_content {
	width: 80%;
	height: auto;
	position: relative;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-container {
	position: relative;
	padding: 0px 75px;
}

.swiper-button-next,
.swiper-button-prev {
	width: 44px; /* Düğme genişliği */
	height: 44px; /* Düğme yüksekliği */
	top: 50%; /* Düğmeyi ortalamak için */
	transform: translateY(-50%);
	z-index: 10;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, -40px) !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: var(--swiper-navigation-sides-offset, -40px) !important;
}

.fdc {
	flex-direction: column !important;
}

.df {
	display: flex !important;
}

.g1 {
	gap: 1rem !important;
}

iframe::before .prototype--viewerContainer--8C5YF {
	margin: 0 !important;
	height: 100% !important;
}

@media screen and (max-width: 1366px) {
	.assist_contents {
		width: 100%;
	}
}

@media (max-width: 1200px) {
	.portfolio_cards {
		grid-template-columns: repeat(2, 1fr); /* İki sütun düzen */
	}
}

@media screen and (max-width: 768px) {
	html {
		overflow-x: hidden;
	}
	.assist_main {
		width: 100%;
	}
	.wp_contact {
		width: 100%;
		box-sizing: border-box;
		justify-content: center;
	}
	#header {
		margin-bottom: 0px;
	}
	.assist {
		flex-direction: column-reverse;
		padding: 1rem 0rem;
		height: auto;
	}
	.assist_main {
		height: auto;
	}
	.assist_img {
		width: 65%;
		margin-bottom: 1rem;
		height: 150px;
	}
	.assist_header {
		margin-bottom: 1rem;
	}
	.assist_contents {
		flex-wrap: nowrap;
		flex-direction: column;
		gap: 24px 24px;
		width: 100%;
	}
	.assist_contents input[type="button"] {
		font-size: 16px;
	}
	.assist_header h1 {
		font-size: 16px;
		text-align: center;
	}
	.assist_header p {
		text-align: center;
	}
	.img_jesus {
		width: 100%;
		background-size: contain;
	}
	.line {
		height: 50px;
	}
	.portfolio_cards {
		grid-template-columns: repeat(1, 1fr);
	}
	.portfolio_cards .cards {
		height: 190px;
		margin: 0 auto;
	}
	.info_content {
		width: 100%;
		min-height: 80%;
	}
}

