/* ===== GENEL STILLER ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Darhouty+Frederics&display=swap');

:root {
    --primary-color: #4a90e2;
    --secondary-color: #7bb3f0;
    --accent-color: #87ceeb;
    --dark-color: #ffffff;
    --darker-color: #f8f9fa;
    --light-color: #f9f9f9;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --gradient-1: linear-gradient(45deg, #4a90e2, #7bb3f0);
    --gradient-2: linear-gradient(45deg, #87ceeb, #4a90e2);
    --gradient-3: linear-gradient(to right, #4a90e2, #7bb3f0, #87ceeb);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin: 10px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}


/* ===== YÜKLEME EKRANI ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
}

.loader {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    border-radius: 50%;
    animation: loader-spin 2s linear infinite;
}

.loader span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    animation: loader-text 2s ease-in-out infinite, loader-glow 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    text-align: center;
    white-space: nowrap;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-text {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

@keyframes loader-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(74, 144, 226, 0.8),
            0 0 40px rgba(123, 179, 240, 0.6),
            0 0 50px rgba(135, 206, 235, 0.4);
    }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
}

header.sticky {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
}

.logo {
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

header.sticky .logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

nav ul li a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: var(--dark-color);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-name {
    color: var(--primary-color);
    font-weight: 800;
    font-family: 'Allura', cursive;
    font-style: italic;
    transform: rotate(-0.5deg);
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(74, 144, 226, 0.3);
    font-size: 58px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 5px;
}

.hero-role-animated {
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    position: relative;
    display: inline-block;
    min-width: 200px;
}

.hero-role-animated::after {
    content: '|';
    position: absolute;
    right: -5px;
    animation: blink-cursor 1s infinite;
    color: var(--primary-color);
    font-style: normal;
}

@keyframes blink-cursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(74, 144, 226, 0.4);
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #999;
    font-weight: 600;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animasyonlar */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-1);
    margin: 0 auto;
    position: relative;
}

.section-line::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--gradient-2);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: section-line 2s infinite;
}

@keyframes section-line {
    0% {
        left: 0;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 0;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--dark-color);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
    max-width: 450px;
}

/* ===== KOD EDİTÖRÜ STİLLERİ ===== */
.code-editor {
    background: #2d3748;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.code-editor:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.code-header {
    background: #1a202c;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #4a5568;
}

.code-buttons {
    display: flex;
    gap: 8px;
}

.code-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.code-btn.close {
    background: #ff5f56;
}

.code-btn.minimize {
    background: #ffbd2e;
}

.code-btn.maximize {
    background: #27ca3f;
}

.code-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.code-title {
    color: #a0aec0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.code-content {
    padding: 20px 16px;
    background: #2d3748;
    min-height: 200px;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    min-height: 20px;
    transition: all 0.2s ease;
}

.code-line:hover {
    background: rgba(74, 85, 104, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    margin: 2px -8px 6px -8px;
}

.line-number {
    color: #718096;
    font-size: 12px;
    width: 25px;
    text-align: right;
    margin-right: 16px;
    user-select: none;
    font-weight: 500;
}

.code-text {
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

/* Syntax Highlighting */
.keyword {
    color: #9f7aea;
    font-weight: 600;
}

.variable {
    color: #4fd1c7;
    font-weight: 500;
}

.property {
    color: #63b3ed;
    font-weight: 500;
}

.string {
    color: #68d391;
    font-style: italic;
}

.boolean {
    color: #f6ad55;
    font-weight: 600;
}

.operator {
    color: #fc8181;
    font-weight: 600;
}

.bracket {
    color: #fbb6ce;
    font-weight: 600;
}

/* Typing Animation */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Başlangıçta animasyon yok */
.code-line .code-text {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}

/* Animasyon aktif olduğunda */
.code-editor.animate .code-line:nth-child(1) .code-text {
    animation: typing 1s steps(20) 0.5s both;
}

.code-editor.animate .code-line:nth-child(2) .code-text {
    animation: typing 1.2s steps(25) 1.5s both;
}

.code-editor.animate .code-line:nth-child(3) .code-text {
    animation: typing 1.5s steps(35) 2.7s both;
}

.code-editor.animate .code-line:nth-child(4) .code-text {
    animation: typing 1s steps(20) 4.2s both;
}

.code-editor.animate .code-line:nth-child(5) .code-text {
    animation: typing 1s steps(20) 5.2s both;
}

.code-editor.animate .code-line:nth-child(6) .code-text {
    animation: typing 0.5s steps(5) 6.2s both;
}

/* Cursor Effect */
.code-editor.animate .code-line:last-child .code-text::after {
    content: '|';
    color: #4fd1c7;
    animation: blink 1s infinite 6.7s;
    margin-left: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .code-editor {
        max-width: 100%;
        margin: 0;
    }
    
    .code-content {
        padding: 16px 12px;
    }
    
    .code-text {
        font-size: 12px;
    }
    
    .line-number {
        font-size: 11px;
        width: 20px;
        margin-right: 12px;
    }
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
    color: var(--text-color);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    font-family: 'Allura', cursive;
    font-style: italic;
    transform: rotate(-0.3deg);
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(74, 144, 226, 0.3);
    font-size: 42px;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 5px;
    opacity: 0.3;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    margin-bottom: 15px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 10px;
}

/* ===== SKILLS SECTION ===== */
.skills {
    padding: 100px 0;
    background: var(--darker-color);
    position: relative;
}

/* Yetenekler Progress Bar Tasarımı */
.skills-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.skill-category {
    background: rgba(74, 144, 226, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.skill-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.skill-item {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.skill-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.skill-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.skill-percentage {
    font-weight: 700;
    color: var(--primary-color);
}

.skill-bar {
    height: 8px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    width: 0%;
    transition: width 1.5s ease-in-out;
    background: var(--gradient-1);
    border-radius: 10px;
    width: 0%;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.skill-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skill-shine 2s infinite;
}

.skill-progress.animate::before {
    animation: skill-shine 2s infinite 1s;
}

@keyframes skill-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Farklı kategoriler için farklı renkler */
.skill-category:nth-child(1) .skill-progress {
    background: linear-gradient(90deg, #4a90e2, #7bb3f0);
}

.skill-category:nth-child(2) .skill-progress {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.skill-category:nth-child(3) .skill-progress {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
}

/* Animasyon gecikmeleri */
.skill-item:nth-child(2) { transition-delay: 0.1s; }
.skill-item:nth-child(3) { transition-delay: 0.2s; }
.skill-item:nth-child(4) { transition-delay: 0.3s; }
.skill-item:nth-child(5) { transition-delay: 0.4s; }
.skill-item:nth-child(6) { transition-delay: 0.5s; }

.skills-3d {
    position: relative;
    height: 400px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skills-sphere {
    width: 100%;
    height: 100%;
    position: relative;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.contact-subtitle {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 24px;
    position: relative;
    display: inline-block;
    margin: 0 auto 40px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

.contact-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-1);
}

/* Referanslar Bölümü */
.references-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.references-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.reference-card {
    perspective: 1500px;
    height: 300px;
}

.reference-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.reference-card:hover .reference-card-inner {
    transform: rotateY(10deg) rotateX(10deg);
}

.reference-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.reference-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.reference-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.reference-card:hover .reference-logo img {
    transform: scale(1.1);
}

.reference-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.reference-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.reference-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.reference-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    z-index: 0;
    filter: blur(20px);
}

.reference-card:hover .reference-glow {
    opacity: 0.3;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.references-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 3D hover effect */
.reference-card:nth-child(1):hover .reference-card-inner {
    transform: rotateY(15deg) rotateX(10deg);
}

.reference-card:nth-child(2):hover .reference-card-inner {
    transform: rotateY(-15deg) rotateX(10deg);
}

.reference-card:nth-child(3):hover .reference-card-inner {
    transform: rotateY(15deg) rotateX(-10deg);
}

.reference-card:nth-child(4):hover .reference-card-inner {
    transform: rotateY(-15deg) rotateX(-10deg);
}

/* Custom gradient for each card */
.reference-card:nth-child(1) .reference-info {
    background: linear-gradient(to bottom, #00a651, #006f3c);
}

.reference-card:nth-child(2) .reference-info {
    background: linear-gradient(to bottom, #000000, #333333);
}

.reference-card:nth-child(3) .reference-info {
    background: linear-gradient(to bottom, #0066b2, #003366);
}

.reference-card:nth-child(4) .reference-info {
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
}

/* ===== YENİ İLETİŞİM BÖLÜMÜ ===== */
.contact-new {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.contact-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(108, 99, 255, 0.03), transparent 70%);
    z-index: 0;
}

/* Ana konteyner */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Yeni İletişim Bilgileri */
.contact-info-new {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    text-align: center;
}

.contact-item {
    margin: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item p {
    color: var(--text-color);
    margin: 0;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Canlı Yardım İkonu */
.live-chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 999;
}

.live-chat-icon:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.contact-description {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
}

/* İletişim Yöntemleri */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-method-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method:hover .contact-method-icon::before {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

.contact-method-icon.instagram {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45);
}

.contact-method-icon.location {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
}

.contact-method-details {
    flex: 1;
}

.contact-method-details h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.contact-method-details p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-method-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.contact-method-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--gradient-1);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

.contact-method-btn i {
    margin-right: 8px;
}

.contact-method-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.instagram-btn {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45);
}

/* İletişim Formu */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.submit-btn i {
    margin-left: 10px;
    font-size: 18px;
}

.form-status {
    margin-top: 20px;
}

.success-message,
.error-message {
    display: none;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.success-message i,
.error-message i {
    font-size: 20px;
    margin-right: 10px;
}

.success-message p,
.error-message p {
    display: inline-block;
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-method-actions {
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

/* Tatlı Karakter */
.cute-character {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.character-container {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.character {
    position: relative;
    width: 100px;
    height: 120px;
    margin-bottom: 20px;
}

.character-face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD166, #FF9A3C);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: character-bounce 3s ease-in-out infinite;
    z-index: 2;
}

.character-eyes {
    display: flex;
    justify-content: space-around;
    width: 50px;
    margin-top: 5px;
}

.eye {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    position: relative;
    animation: blink 4s ease-in-out infinite;
}

.eye::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
}

.character-mouth {
    width: 20px;
    height: 10px;
    background: #333;
    border-radius: 0 0 10px 10px;
    margin-top: 10px;
    position: relative;
}

.character-mouth::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    bottom: 2px;
    border-radius: 10px;
}

.character-body {
    position: absolute;
    width: 60px;
    height: 70px;
    background: linear-gradient(to bottom, #FFD166, #FF9A3C);
    border-radius: 30px;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.character-arms {
    position: absolute;
    width: 100%;
    top: 70px;
    left: 0;
    z-index: 0;
}

.arm {
    position: absolute;
    width: 40px;
    height: 12px;
    background: #FFD166;
    border-radius: 6px;
}

.arm.left {
    left: -10px;
    transform: rotate(-30deg);
}

.arm.right {
    right: -10px;
    transform: rotate(30deg);
}

.character-pointer {
    margin: 10px 0;
    animation: pointer-bounce 1.5s ease-in-out infinite;
}

.character-pointer i {
    font-size: 30px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(108, 99, 255, 0.5));
}

.character-message {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    position: relative;
}

.character-message::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.1);
}

.character-message p {
    color: white;
    font-size: 16px;
    margin: 0;
}

@keyframes character-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes blink {
    0%, 45%, 55%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.1);
    }
}

@keyframes pointer-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animasyonlar */
@keyframes float-contact {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--darker-color);
    color: white;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-text {
    margin: 20px 0;
    color: var(--text-color);
    font-weight: 500;
    width: 100%;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradient-border {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 5%;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .glitch-effect {
        font-size: 36px;
    }
    
    .animated-text {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .code-lines {
        display: none;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        padding: 0;
    }
    
    .instagram-contact {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media screen and (max-width: 576px) {
    .glitch-effect {
        font-size: 30px;
    }
    
    .animated-text {
        font-size: 18px;
    }
    
    .hero-cta .btn {
        margin: 5px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin: 0 5px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .skills-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== MODERN SKILLS SECTION ===== */
.skills-modern {
    margin-bottom: 50px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(74, 144, 226, 0.1);
    backdrop-filter: blur(10px);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-card:hover::before {
    left: 100%;
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    position: relative;
    overflow: hidden;
    animation: skill-icon-float 3s ease-in-out infinite;
}

.skill-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover .skill-icon::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

.skill-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.skill-tag {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.3s ease;
    z-index: -1;
}

.skill-card:hover .skill-tag::before {
    left: 0;
}

.skill-card:hover .skill-tag {
    color: white;
    border-color: transparent;
}

.skill-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    position: relative;
}

.level-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.level-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skill-shine 2s infinite;
}

.level-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    min-width: 40px;
}

/* Farklı kartlar için farklı renkler */
.skill-card:nth-child(1) .skill-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.skill-card:nth-child(1) .level-fill {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.skill-card:nth-child(2) .skill-icon {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.skill-card:nth-child(2) .level-fill {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.skill-card:nth-child(3) .skill-icon {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.skill-card:nth-child(3) .level-fill {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.skill-card:nth-child(4) .skill-icon {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.skill-card:nth-child(4) .level-fill {
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.skill-card:nth-child(5) .skill-icon {
    background: linear-gradient(45deg, #1abc9c, #16a085);
}

.skill-card:nth-child(5) .level-fill {
    background: linear-gradient(90deg, #1abc9c, #16a085);
}

.skill-card:nth-child(6) .skill-icon {
    background: linear-gradient(45deg, #34495e, #2c3e50);
}

.skill-card:nth-child(6) .level-fill {
    background: linear-gradient(90deg, #34495e, #2c3e50);
}

/* Animasyonlar */
@keyframes skill-icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@keyframes skill-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-card {
        padding: 25px 20px;
    }
    
    .skill-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .skill-card h3 {
        font-size: 20px;
    }
}
