﻿body {
	padding-top: 70px;
	font-family: 'Segoe UI', sans-serif;
}

.main-wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.content {
	flex: 1;
}

.navbar {
	background-color: #0f172a !important;
}

	.navbar .nav-link {
		color: #e2e8f0 !important;
		font-weight: 500;
	}

		.navbar .nav-link:hover {
			color: #2563eb !important;
		}

.btn-primary {
	background-color: #2563eb;
	border: none;
}

.footer {
	background-color: #0f172a;
	color: #cbd5e1;
}

.hero-section {
	height: 100vh;
	background: linear-gradient( 135deg, #0f172a 0%, #1e293b 100% );
	color: white;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	max-width: 800px;
	margin: 0 auto;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: #cbd5e1;
	max-width: 600px;
	margin: 0 auto;
}

.btn-outline-light {
	border: 2px solid white;
}

	.btn-outline-light:hover {
		background-color: white;
		color: #0f172a;
	}


.hero-modern {
	position: relative;
	height: 100vh;
	background: #0f172a;
	color: white;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	max-width: 900px;
	margin: 0 auto;
	animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: #cbd5e1;
	max-width: 650px;
	margin: 0 auto;
	animation: fadeUp 1.4s ease forwards;
}

.gradient-text {
	background: linear-gradient(90deg, #2563eb, #38bdf8);
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.hero-bg-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(37,99,235,0.4), transparent 70%);
	top: -200px;
	right: -200px;
	filter: blur(120px);
	z-index: 1;
}

.scroll-indicator {
	font-size: 2rem;
	opacity: 0.6;
	animation: bounce 2s infinite;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(10px);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.3rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}
}


.services-section {
	background-color: #0f172a;
	color: white;
}

.section-title {
	font-size: 2.2rem;
	font-weight: 700;
}

.service-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	height: 100%;
}

	.service-card:hover {
		transform: translateY(-10px);
		background: rgba(37, 99, 235, 0.15);
	}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}


.chat-wrapper {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

/* RTL */
.rtl-layout .chat-wrapper {
	right: auto;
	left: 20px;
	align-items: flex-start;
}

.chat-toggle-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #2563eb;
	color: white;
	border: none;
	font-size: 24px;
}


.chat-window {
	width: 320px;
	height: 450px;
	background: #1e293b;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 10px;
}

.chat-header {
	background: #2563eb;
	padding: 12px;
	color: white;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
}

.close-btn {
	background: transparent;
	border: none;
	color: white;
	font-size: 18px;
}

.chat-messages {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
}

.chat-message {
	margin-bottom: 10px;
	padding: 8px 12px;
	border-radius: 10px;
	max-width: 80%;
}

	.chat-message.user {
		background: #2563eb;
		align-self: flex-end;
		color: white;
	}

	.chat-message.bot {
		background: #334155;
		color: white;
	}

.chat-input {
	display: flex;
	padding: 10px;
	background: #0f172a;
}

	.chat-input input {
		flex: 1;
		border-radius: 8px;
		border: none;
		padding: 8px;
	}

	.chat-input button {
		margin-left: 8px;
		background: #2563eb;
		border: none;
		color: white;
		border-radius: 8px;
		padding: 8px 12px;
	}



.quick-actions {
	margin-top: 10px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

	.quick-actions button {
		background: #334155;
		border: none;
		color: white;
		padding: 6px 10px;
		border-radius: 20px;
		font-size: 13px;
		transition: 0.2s;
	}

		.quick-actions button:hover {
			background: #2563eb;
		}

.why-section {
	background-color: #0b1120;
	color: white;
}

.why-card {
	background: rgba(255, 255, 255, 0.04);
	padding: 30px;
	border-radius: 15px;
	transition: 0.3s;
	height: 100%;
}

	.why-card:hover {
		transform: translateY(-8px);
		background: rgba(37, 99, 235, 0.15);
	}

.why-icon {
	font-size: 2rem;
	margin-bottom: 15px;
}


.contact-section {
	background-color: #0f172a;
	color: white;
}

.contact-info {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 15px;
}

.contact-form {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 15px;
}

	.contact-form .form-control {
		background-color: #1e293b;
		border: none;
		color: white;
	}

		.contact-form .form-control::placeholder {
			color: #94a3b8;
		}

.about-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 150px 0 100px 0;
    color: white;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    margin-top: 20px;
    color: #cbd5e1;
}

.about-content {
    background-color: #0b1120;
    color: white;
}

.about-text {
    color: #94a3b8;
}

.about-logo {
    max-width: 320px;
}

/* STATS */
.stats-section {
    background: #0f172a;
    padding: 90px 0;
    color: white;
}

.stat-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2563eb;
}

/* TEAM */
.team-section {
    background-color: #0b1120;
    color: white;
}

.team-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(37,99,235,0.15);
}

.team-avatar {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* REFERANS */
.reference-section {
    background: #0f172a;
    padding: 80px 0;
    color: white;
}

.reference-logos span {
    margin: 0 20px;
    font-weight: 600;
    opacity: 0.7;
}

/* CTA */
.about-cta {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    padding: 110px 0;
    color: white;
}


/* HERO */
.services-hero {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	padding: 120px 0 80px 0;
	color: white;
	text-align: center;
}

.services-title {
	font-size: 3rem;
	font-weight: 800;
}

.services-subtitle {
	margin-top: 15px;
	color: #cbd5e1;
	font-size: 1.2rem;
}

/* CONTENT */
.services-content {
	background-color: #0b1120;
	color: white;
}

.service-box {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 18px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	height: 100%;
}

	.service-box:hover {
		transform: translateY(-10px);
		background: rgba(37, 99, 235, 0.15);
	}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.service-box ul {
	list-style: none;
	padding-left: 0;
	margin-top: 15px;
}

	.service-box ul li {
		margin-bottom: 6px;
		color: #94a3b8;
	}



.offer-hero {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	padding: 150px 0 100px 0;
	color: white;
}

.offer-title {
	font-size: 3rem;
	font-weight: 800;
}

.offer-subtitle {
	margin-top: 20px;
	color: #cbd5e1;
}

.offer-section {
	background-color: #0b1120;
	color: white;
}

.offer-card {
	background: rgba(255,255,255,0.05);
	padding: 40px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

	.offer-card label {
		margin-bottom: 6px;
		font-weight: 500;
	}

	.offer-card .form-control {
		background: #1e293b;
		border: none;
		color: white;
	}

		.offer-card .form-control:focus {
			box-shadow: 0 0 0 2px #2563eb;
			background: #1e293b;
			color: white;
		}

	.offer-card textarea {
		resize: none;
	}

.alert-success {
	background-color: #16a34a;
	border: none;
	color: white;
}



.whatsapp-container {
	position: fixed;
	bottom: 100px;
	right: 20px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	text-decoration: none;
	z-index: 9999;
}

/* RTL’de sola geçsin */
.rtl-layout .whatsapp-container {
	right: auto;
	left: 20px;
}

/* Yazı */
.whatsapp-text {
	background: white;
	color: #25D366;
	padding: 8px 14px;
	border-radius: 20px;
	margin-right: 10px;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	opacity: 0;
	transform: translateX(10px);
	transition: 0.3s ease;
	white-space: nowrap;
}

/* Buton */
.whatsapp-float {
	width: 60px;
	height: 60px;
	background: #25D366;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	transition: 0.3s ease;
	animation: whatsappBounce 2s infinite;
}

/* Hover efekti */
.whatsapp-container:hover .whatsapp-text {
	opacity: 1;
	transform: translateX(0);
}

.whatsapp-container:hover .whatsapp-float {
	transform: scale(1.1);
}

/* Bounce animasyonu */
@keyframes whatsappBounce {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-6px);
	}
}

/* Mobilde yazıyı gizle */
@media (max-width: 768px) {
	.whatsapp-text {
		display: none;
	}
}


.follow-section {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: white;
}

.follow-subtitle {
	color: #cbd5e1;
}

.social-card {
	width: 70px;
	height: 70px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: white;
	text-decoration: none;
	transition: 0.3s ease;
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

	.social-card:hover {
		transform: translateY(-8px) scale(1.05);
	}

/* Marka renkleri */
.instagram {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
}

.linkedin {
	background: #0a66c2;
}

.github {
	background: #24292e;
}

.twitter {
	background: #000000;
}

/* Collapse mobil için RTL */
@media (max-width: 991px) {
	.navbar-nav.rtl {
		direction: rtl; /* Menü öğelerini sağdan sola al */
		text-align: right; /* Yazıları sağa hizala */
	}

		.navbar-nav.rtl .nav-item {
			text-align: right; /* Nav itemleri sağa hizala */
		}

		.navbar-nav.rtl .dropdown-menu {
			text-align: right; /* Dropdown varsa sağa hizala */
			right: 0; /* Menü sağa açılır */
			left: auto;
		}
}


.contact-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.contact-icon {
	font-size: 22px;
	color: #0d6efd;
	margin-top: 4px;
}

.contact-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	opacity: 0.7;
}

.contact-link {
	display: block;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	color: inherit;
}

	.contact-link:hover {
		color: #0d6efd;
	}

.ltr {
	direction: ltr;
	unicode-bidi: embed;
}

.rtl-layout {
	text-align: right;
}

	.rtl-layout .navbar {
		direction: rtl;
	}

	.rtl-layout .dropdown-menu {
		text-align: right;
	}


.chat-wrapper.rtl-layout {
	direction: rtl;
	text-align: right;
}

	.chat-wrapper.rtl-layout .chat-message.user {
		text-align: left;
	}

.offer-btn {
	border: 1px solid #0d6efd;
	border-radius: 20px;
	padding: 6px 16px;
	transition: all 0.25s ease;
	color: #0d6efd !important;
	background-color: transparent;
}

	.offer-btn:hover {
		background-color: rgba(13, 110, 253, 0.12);
		color: #0d6efd !important;
	}


.language-switch .lang-btn {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	padding: 4px 10px;
	margin-left: 6px;
	border-radius: 15px;
	font-size: 13px;
	transition: all 0.2s ease;
}

	.language-switch .lang-btn:hover {
		background-color: rgba(255,255,255,0.15);
	}

.active-lang {
	background-color: #0d6efd !important;
	border-color: #0d6efd !important;
}
.hero-offer-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, #0d6efd, #4dabf7);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

	.hero-offer-btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(13, 110, 253, 0.45);
		color: #fff;
	}

.hero-services-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 30px;
	font-weight: 500;
	text-decoration: none;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.5);
	transition: all 0.3s ease;
}

	.hero-services-btn:hover {
		background-color: rgba(255,255,255,0.1);
		color: #fff;
	}


