:root {
    --primary-color: #0d6efd;
    --ana-renk: #0d6efd; /* aşağıda da kullanıyorsun */
    --text-koyu: #2c3e50;
    --text-gri: #6c757d;
    --bg-acik: #f8fafc;
    --border-renk: #e5e7eb;
}

body {
	background-color: #f4f4f4;
	padding: 20px;
	font-family: 'Poppins', sans-serif;
}

.vcard img {
	padding: 0;
	border: none;
	background-color: transparent;
}

.vcard {
	font-size: 14px !important;
	margin: 30px auto;
	max-width: 900px;
	font-family: 'Poppins', sans-serif !important;
}

.vcard .vcard-area {
	background: #fff;
	min-height: 260px;
	border: none;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 0 !important;
	overflow: hidden;
}

.vcard .vcard-area .ic-alan {
    display: flex;
    gap: 25px;
    padding: 30px;
    border-bottom: 1px solid #e5e7eb;
    min-height: 177px;
    align-items: center;
}

.vcard .avatar {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid #fff;
    flex-shrink: 0;
}

.vcard h2,
.vcard h3,
.vcard h4 {
	font-family: 'Poppins', sans-serif !important;
}

.vcard h2 {
	font-weight: 700;
	font-size: 24px;
	color: #2c3e50;
	margin: 0 0 5px 0;
	letter-spacing: -0.5px;
}

.vcard h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0 0 5px 0;
}

.vcard h4 {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-gri);
	margin: 0;
}

/* İletişim bilgilerinin olduğu tablo */
.vcard .bilgi {
	margin: 0;
	width: 100%;
	border: 0;
}

.vcard .bilgi td {
	font-family: 'Poppins', sans-serif !important;
	line-height: 1.8;
	font-size: 14px;
	color: var(--text-koyu);
	border: none;
	background: transparent;
	padding: 6px 0;
}

.vcard .bilgi tr td:first-child {
	text-align: left;
	width: 30px;
	padding-right: 10px;
}

.vcard .bilgi i {
	color: var(--primary-color);
	font-size: 16px;
}

.vcard .bilgi span {
	color: var(--text-gri);
	font-weight: normal;
}

/* Çalışma ve sorumluluka lanları */
.vcard .yetenek {
	border: none !important;
	margin: 0 !important;
	padding: 20px 30px;
	font-family: 'Poppins', sans-serif !important;
	background: var(--bg-acik);
	color: var(--text-gri);
	line-height: 1.6;
	font-size: 14px;
}

.vcard .yetenek:nth-of-type(3) {
	padding-top: 0;
}

.vcard .yetenek strong {
	color: var(--text-koyu);
	font-weight: 600;
}

/* Alt menü */
.vcard .link {
	background: #ddd;
	height: auto;
	position: relative;
	border-top: 1px solid var(--border-renk);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px 0 0;
}

.vcard .vcard-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.vcard .vcard-menu li {
	width: auto;
	min-width: 90px;
	height: auto;
	border: none;
	/*alt menüde yatay çizgileri silmesi için*/
	text-align: center;
}

.vcard .vcard-menu li a {
	color: var(--text-gri);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15px 15px;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.3s ease;
	position: relative;
}

/* Alttaki çşzgi ve hover efekti */
.vcard .vcard-menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background-color: var(--primary-color);
	transition: all 0.3s ease;
}

.vcard .vcard-menu li:hover a {
	/*Hover olduğunda background rengini hafif bir şekilde ana renge bağlamak için renkleri birleştirmek için. Primarycolor kırmızı ise hafif kırmızı, mavi ise hafif mavi olacak şekilde.*/
	background: color-mix(in srgb, var(--primary-color) 5%, transparent);
	color: var(--primary-color);
}

.vcard .vcard-menu li:hover a::after,
.vcard .vcard-menu li.active a::after {
	width: 100%;
}

.vcard .vcard-menu li:first-child {
	border-left: none;
}

.vcard .vcard-menu li i {
	font-size: 18px;
	margin: 0 0 5px 0;
	transition: transform 0.3s ease;
}

.vcard .vcard-menu li:hover i,
.vcard .vcard-menu li.active i {
	color: var(--primary-color);
	transform: translateY(-2px);
	/* Hover olduğunda iconların çok hafif yukarı çıkması*/
}

.vcard .vcard-menu li p {
	line-height: normal;
	margin: 0;
	font-size: 13px;
	font-weight: 500;
}

.vcard .vcard-menu li.active {
	background: transparent;
}

.vcard .vcard-menu li.active a {
    color: var(--primary-color);
}

/* Sağ alt logo. Dpuportal */
.vcard .link img {
	position: static;
	margin: 0;
	height: 30px;
	/*Çok göze batmaması için siyah beyaz. Hover olduğunda renklenecek.*/
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}

.vcard .link img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* MOBİL UYUM (Responsive) */
@media (max-width: 768px) {
	.vcard .vcard-area .ic-alan {
		flex-direction: column !important;
		text-align: center;
		gap: 15px !important;
		padding: 20px;
	}

	.vcard .bilgi tr td:first-child {
		text-align: center;
		width: auto;
	}

	.vcard .link {
		flex-direction: column;
		padding: 15px;
	}

	.vcard .vcard-menu {
		flex-wrap: wrap;
		justify-content: center;
	}

	.vcard .link img {
		margin-top: 15px;
	}
}

.vcard .vcard-menu,
.vcard .vcard-menu li {
    list-style: none !important;
}

/* Tema / bootstrap / global css'ten gelen oklar */
.vcard .vcard-menu li::before,
.vcard .vcard-menu li::after,
.vcard .vcard-menu li::marker,
.vcard .vcard-menu li a::before,
.vcard .vcard-menu li a::after {
    content: none !important;
    display: none !important;
}

/* target="_blank" ikonlarını da iptal et */
.vcard .vcard-menu a[target="_blank"]::after {
    content: none !important;
}