@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600&family=DM+Sans:wght@400;600&display=swap');

/* Reset */


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

/* Genel genişlik düzeltmesi */
html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}


body {
	font-family: 'Unbounded', cursive;
	background: #ffffff !important;
	background-image: none !important;
	box-shadow: none !important;
	color: #1e1e1e;
}


/* NAVBAR */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 60px;
	background-color: #ffffff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .logo {
	height: 50px;
}

.navbar nav a {
	margin: 0 15px;
	text-decoration: none;
	color: #1e1e1e;
	font-weight: 500;
}

.navbar .actions {
	display: flex;
	gap: 12px;
}

.button-primary {
	background-color: #e5385d;
	color: white;
	padding: 10px 20px;
	border-radius: 8px;
	border: none;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none !important;
}

.button-outline {
	background-color: white;
	color: #2e4fff;
	border: 2px solid #2e4fff;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none !important;
}

.button-demo {
	background-color: #FF8A00;
	color: #ffffff;
	padding: 10px 24px;
	border-radius: 8px;
	border: none;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none !important;
}


.button-demo:hover {
	background-color: #cf590f;
	/* Hoverda biraz daha koyu turuncu */
	transform: translateY(-2px);
	/* Hafif yukarı kalkma efekti */
}

.button-outline:hover {
	background-color: #f0f0f0;
	/* Hoverda biraz daha açık gri */
	transform: translateY(-2px);
	/* Hafif yukarı kalkma efekti */
}

.button-primary:hover {
	background-color: #d42f4c;
	/* Hoverda biraz daha koyu pembe */
	transform: translateY(-2px);
	/* Hafif yukarı kalkma efekti */
}

/* HERO SECTION */
.hero-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #2e4fff;
	padding: 60px 100px;
	color: white;
	border-radius: 16px;
	margin: 40px 60px;
	position: relative;
	overflow: visible;
}

.hero-section .text {
	max-width: 500px;
}

.hero-section h1 {
	font-size: 60px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
}

.hero-section p {
	font-size: 16px;
	margin-bottom: 30px;
}

.hero-section .cta-buttons {
	display: flex;
	gap: 15px;
}

.hero-section .image-stack {
	position: relative;
	width: 600px;
}


.hero {
	position: relative;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	background-size: cover;
	background-position: center;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.content {
	position: relative;
	z-index: 2;
}

.heroTitle {
	font-size: 3rem;
	font-weight: bold;
}

.heroSubtitle {
	font-size: 1.5rem;
	margin-top: 1rem;
}

/* INFO SECTION */
.info-section {
	background-color: #f5f5f5;
	padding: 40px 100px;
	position: relative;
	margin-top: 125px;
	z-index: 2;
}

.info-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("/websites-images/infobackground.png") center/cover no-repeat;
	opacity: 0.05;
	/* Çok hafif görünsün */
	z-index: 0;
}

.info-section>* {
	position: relative;
	z-index: 1;
}

.info-section h2 {
	font-size: 26px;
	margin-bottom: 20px;
	color: #111;
}

.info-section h3 {
	font-size: 14px;
	font-weight: 300;
}

.info-section ul {
	list-style: none;
	padding-left: 0;
}

.info-section li {
	display: flex;
	align-items: center;
	margin: 12px 0;
	font-weight: 500;
	color: #2e4fff;
}

.info-section li::before {
	content: '\2714';
	margin-right: 10px;
	color: #2e4fff;
}

.info-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.info-text {
	flex: 1;
	min-width: 300px;
}

.info-text .info-subtitle {
	color: #2e4fff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-text h2 {
	font-size: 32px;
	font-weight: 700;
	color: #111;
	margin-bottom: 15px;
}

.info-text p {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.6;
}

.info-text ul {
	list-style: none;
	padding-left: 0;
}

.info-text li {
	font-size: 16px;
	font-weight: 600;
	margin: 10px 0;
	padding-left: 28px;
	position: relative;
	color: #2e4fff;
}

.info-text li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	background-color: #2e4fff;
	border-radius: 50%;
	display: inline-block;
}

.info-text li::after {
	content: "\2714";
	position: absolute;
	left: 4px;
	top: -1px;
	color: white;
	font-size: 12px;
}

.explore-btn {
	display: inline-block;
	margin-top: 26px;
	padding: 12px 24px;
	background-color: #2e4fff;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none !important;
}


.explore-btn:hover {
	background-color: #1d35cc;
}


/* Laptop içindeki ekran ve video konumlandırması */
.laptop-screen {
	position: absolute;
	top: 10%;
	left: 22%;
	width: 55%;
	height: 80%;
	overflow: hidden;
	border-radius: 12px;
	z-index: 1;
}

.laptop-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.laptop-device {
	width: 100%;
	max-width: 600px;
	position: relative;
	margin: 0 auto;
}

.laptop-device .video-wrapper {
	position: absolute;
	top: 10%;
	left: 12%;
	width: 76%;
	height: 78%;
	border-radius: 12px;
	overflow: hidden;
	z-index: 1;
}

.laptop-device .laptop-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.laptop-device img {
	width: 100%;
	pointer-events: none;
	z-index: 2;
	position: relative;
}

/* PACKAGES SECTION */
.packages-section {
	padding: 60px 40px;
	text-align: center;
	background-color: #f0f4ff;
	/* Hafif mavi arka plan */
}

.packages-section h2 {
	font-family: "Unbounded", sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: #2e4fff;
	margin-bottom: 40px;
}

.packages-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.package-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: left;
	border: 1px solid #d1d9ff;
	/* hafif mavi kenarlık */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(46, 79, 255, 0.2);
}

.package-card h3 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #2e4fff;
}

.package-card ul li {
	list-style: none;
	font-size: 1rem;
	color: #555;
	margin-bottom: 8px;
}

.package-card .price {
	font-weight: bold;
	font-size: 1.3rem;
	color: #1d35cc;
	/* koyu mavi */
	margin-bottom: 15px;
}

/* Satın Al Butonu */
.package-btn {
	background-color: #2e4fff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s ease;
	text-decoration: none !important;
}

.package-btn:hover {
	background-color: #1d35cc;
}

.price-old {
	text-decoration: line-through;
	color: #999;
	font-size: 14px;
}

.price-new {
	font-weight: 600;
	font-size: 16px;
}

.discount-badge {
	position: relative;
	top: -10px;
	left: -10px;
	background: linear-gradient(to right, #ff5f6d, #ffc371);
	color: white;
	font-size: 13px;
	font-weight: bold;
	padding: 6px 10px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	z-index: 2;
	animation: flashBadge 1s ease-in-out 3;
}

.package-switch-container {
	text-align: center;
	margin: 20px 0 10px 0;
}

.pricing-switch-container {
	text-align: center;
	margin: 10px 0 20px 0;
}

.package-switch, .pricing-switch {
	display: inline-flex;
	background: #f0f0f0;
	border-radius: 25px;
	padding: 4px;
	position: relative;
}

.switch-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 600;
}

.switch-btn.active {
	background: #2e4fff;
	color: white;
}

.switch-btn:not(.active) {
	background: transparent;
	color: #666;
}

.switch-btn:hover:not(.active) {
	color: #2e4fff;
}

.packages-cards {
	transition: opacity 0.3s ease;
}

.packages-cards.hidden {
	display: none !important;
}

@keyframes flashBadge {

	0%,
	100% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0.3;
	}

	50% {
		opacity: 0.7;
	}
}



/* DOWNLOAD SECTION */
.download-section {
	padding: 60px 50px;
	background-color: #ffffff;
}

.download-section h2 {
	text-align: center;
	font-size: 28px;
	margin-bottom: 40px;
}

.download-cards {
	display: flex;
	gap: 20px;
	justify-content: center;
	/* flex-wrap: wrap; */
}

.download-card {
	border: 1px solid #2e4fff;
	border-radius: 16px;
	padding: 30px;
	width: 400px;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 5px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease;
}

.download-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.download-card:hover {
	transform: translateY(-5px);
}

.download-card h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	color: #2e4fff;
}

.download-card ul {
	list-style: circle;
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: #333;
	margin-bottom: 20px;
	text-align: left;
}

.download-btn {
	background-color: #e5385d;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	text-decoration: none !important;
}

.download-btn-wrapper {
	display: flex;
	justify-content: flex-end;
}


.download-icon {
	width: 100px;
	height: 100px;
	object-fit: contain;
	margin-bottom: 12px;
}

/* TÜBİTAK Rozeti */
.tubitak-badge {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 30px;
}

.tubitak-badge img {
	height: 150px;
	object-fit: contain;
}

/* Image Stack */
.image-stack {
	position: relative;
	width: 400px;
	height: 400px;
	margin-left: 60px;
}

.image-stack .layer {
	position: absolute;
	width: 100%;
	border-radius: 16px;
	transition: all 0.3s ease-in-out;
}

.image-stack .back {
	top: -60px;
	left: -100px;
	opacity: 0.6;
	z-index: 1;
}

.image-stack .mid {
	top: -30px;
	left: -50px;
	opacity: 0.8;
	z-index: 2;
}

.image-stack .top {
	top: 0;
	left: 0;
	opacity: 1;
	z-index: 3;
}

.share-buttons {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.share-buttons a {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 6px;
	color: white;
	font-size: 14px;
	transition: all 0.3s ease;
}

.twitter-btn {
	background-color: #1DA1F2;
}

.facebook-btn {
	background-color: #1877F2;
}

.whatsapp-btn {
	background-color: #25D366;
}

.share-buttons a:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}




@media screen and (max-width: 768px) {

	/* HERO */
	.hero-section {
		flex-direction: column;
		padding: 20px 0px;

		margin: 20px;
		margin-top: 75px;
		border-radius: 12px;
	}


	.hero-section .text {
		max-width: 100%;
		text-align: center;
	}

	.hero-section h1 {
		font-size: 32px;
		text-align: center;
	}

	.hero-section .tubitak-badge {
		flex-direction: column;
		align-items: center;
		margin-top: 20px;
	}

	.hero-section .image-stack {
		width: 300px;
		height: auto;
		margin-left: 0;
		margin-top: 0px;
	}

	.hero-section .cta-buttons {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.image-stack {
		width: 100%;
		max-width: 300px;
		margin: 20px auto 0 auto;
		display: none;
	}

	/* INFO SECTION */
	.info-section {
		padding: 30px 20px;
		margin-top: 60px;
	}

	.info-content {
		flex-direction: column;
	}

	.laptop-device {
		max-width: 100%;
	}

	.laptop-device .video-wrapper {
		left: 10%;
		width: 80%;
	}

	/* PACKAGE CARDS */
	.packages-cards {
		display: flex;
		flex-direction: row;
		overflow-x: auto;
		gap: 16px;
		padding-bottom: 20px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.package-card {
		flex: 0 0 80%;
		min-width: 280px;
		max-width: 300px;
		scroll-snap-align: start;
	}

	.download-cards {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding: 0 16px;
	}

	.download-card {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.download-header {
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}

	.download-icon {
		width: 64px;
		height: auto;
	}

	.download-btn-wrapper {
		justify-content: flex-end;
	}


}