* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #0a0a1a;
    color: #f0f0f0;
    min-height: 100vh;
}

/* Dönen Logolar */
.floating-logos {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.logo {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: float 20s infinite linear;
    opacity: 0.2;
}

.logo:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.logo:nth-child(2) { top: 20%; right: 10%; animation-delay: -3s; }
.logo:nth-child(3) { bottom: 30%; left: 15%; animation-delay: -6s; }
.logo:nth-child(4) { bottom: 20%; right: 15%; animation-delay: -9s; }

.hero {
    height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Ana başlık ve metin animasyonları */
.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(
        90deg,
        #667eea 0%,
        #764ba2 50%,
        #667eea 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

/* Unvan yazısı animasyonu */
.hero-content p:first-of-type {
    font-size: 1.8rem;
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #a0a0a0 25%,
        #f0f0f0 50%,
        #a0a0a0 75%,
        #f0f0f0 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 8s linear infinite;
    position: relative;
    padding: 0 10px;
    text-shadow: none;
}

/* Yeni animasyonlar */
@keyframes textFloat {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-15px);
    }
    75% {
        transform: translateX(15px);
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes lightSlide {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Alt metin animasyonu */
.sub-text {
    font-size: 1.2rem;
    color: #667eea;
    animation: floatText 3s ease-in-out infinite;
    animation-delay: 0.2s;
    letter-spacing: 1px;
}

section {
    min-width: 100vw;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: transparent;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transform-origin: top;
    animation: slideDown 1.5s ease;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #667eea;
    transition: width 0.5s ease;
}

section h2:hover::after {
    width: 100px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.skill-item {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    color: #f0f0f0;
    animation: floating 3s ease-in-out infinite;
}

.skill-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.skill-item::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: 1s;
}

.skill-item:hover::before {
    animation: shine 2s;
}

.project-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.project-item {
    background: rgba(42, 42, 42, 0.8);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #f0f0f0;
    width: 350px;
    animation: cardWobble 5s ease-in-out infinite;
}

@keyframes cardWobble {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(-1deg);
    }
    75% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.project-item:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.4);
}

.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.project-item h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.project-item p {
    color: #f0f0f0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-stack span {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #667eea;
}

.project-link {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.contact-form {
    width: 100%;
    max-width: 600px;
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #f0f0f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f0f0f0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 5px;
    transition: all 0.5s ease;
    background: #333;
    color: #f0f0f0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.2);
    background: #3a3a3a;
}

.submit-btn {
    background: #667eea;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 30px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p:first-of-type {
        font-size: 1.4rem;
    }
    
    .sub-text {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }

    .project-img {
        height: 180px;
    }
}

/* Mobil uyumluluk için media query'ler */
@media (max-width: 768px) {
    /* Ana sayfa mobil stilleri */
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p:first-of-type {
        font-size: 1.4rem;
    }

    .profile-image-container {
        width: 200px;
        height: 200px;
    }

    .social-icons {
        gap: 1rem;
    }

    /* Dijital Yolculuk mobil stilleri */
    .journey-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .journey-card {
        width: 100%;
    }

    .journey-title {
        font-size: 2rem;
    }

    /* Yetenekler grid mobil stili */
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    /* Popup mobil stili */
    .popup-content {
        width: 95%;
        margin: 1rem;
        padding: 1rem;
    }

    /* Hakkımda sayfası mobil stilleri */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-container {
        margin: 0 auto;
        max-width: 300px;
    }

    .timeline-content {
        padding: 1rem;
    }

    .tech-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* İletişim sayfası mobil stilleri */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info, 
    .contact-form {
        padding: 1.5rem;
    }

    .social-links-horizontal {
        gap: 1.5rem;
    }

    /* Projeler sayfası mobil stilleri */
    .project-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }

    .project-item {
        width: 100%;
        margin: 0 auto;
    }

    /* Navbar mobil stili */
    .navbar {
        padding: 0.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Tablet boyutu için ek düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .journey-content {
        flex-wrap: wrap;
    }

    .journey-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        gap: 2rem;
    }

    .project-item {
        width: 300px;
    }
}

/* Yatay mobil cihazlar için özel düzenleme */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-content {
        padding: 1rem;
    }

    .profile-image-container {
        width: 150px;
        height: 150px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin: 0.5rem 0;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Ana sayfadaki yatay scroll için mobil düzenleme */
@media (max-width: 768px) {
    .scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .horizontal-scroll-section {
        width: 300%;
        display: flex;
    }

    .scroll-section {
        flex: 0 0 100%;
        width: 100%;
        min-height: 100vh;
    }
}

/* Navbar için mükemmelleştirilmiş stiller */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.3);
    backdrop-filter: blur(5px);
    padding: 0.6rem;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover {
    background: rgba(10, 10, 15, 0.4);
    border-bottom-color: rgba(102, 126, 234, 0.1);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #667eea;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    font-weight: 600;
}

/* Navbar scroll efekti */
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.5);
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hakkımda sayfası için stiller */
.about-detailed {
    padding-top: 80px;
    min-height: 100vh;
    padding-bottom: 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Scroll container z-index düzeltmesi */
.scroll-container {
    height: 100vh;
    overflow: hidden; /* Scroll çubuğunu gizle */
    perspective: 1000px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    animation: fadeIn 0.3s ease;
}

.horizontal-scroll-section {
    display: flex;
    width: 300%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    min-height: 100vh;
    animation: slideIn 0.5s ease;
}

.scroll-section {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

/* Proje kartları için yeni animasyonlar */
[data-aos="slide-right"] {
    transform: translateX(-100%);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="slide-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="slide-left"] {
    transform: translateX(100%);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="slide-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

/* Yeni animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Yıldızlar için yeni stil */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

/* Farklı boyutlarda yıldızlar */
.star--small {
    width: 1px;
    height: 1px;
    animation: twinkle 2s infinite ease-in-out;
}

.star--medium {
    width: 2px;
    height: 2px;
    animation: twinkle 3s infinite ease-in-out;
}

.star--large {
    width: 3px;
    height: 3px;
    animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Işık efekti için güncellenen stil */
.project-grid::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(102, 126, 234, 0.1),
        transparent
    );
    top: -50%;
    left: -25%;
    transform: translateX(-100%) rotate(45deg);
    transition: transform 1.2s ease;
    pointer-events: none;
    z-index: 0;
}

/* Hover efektini güncelle - animasyon yerine transition kullan */
.project-item:hover ~ .project-grid::before,
.project-grid:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* Auto Runner kartı için özel efekt */
.project-item:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        -45deg, /* -45deg yaparak yönü değiştiriyoruz */
        transparent,
        rgba(102, 126, 234, 0.1),
        transparent
    );
    transform: translateX(100%) rotate(-45deg); /* Başlangıç pozisyonunu değiştirdik */
    transition: transform 0.6s ease;
}

.project-item:first-child:hover::after {
    transform: translateX(-100%) rotate(-45deg); /* Bitiş pozisyonunu değiştirdik */
}

/* Block Breaker kartı için mevcut efekt */
.project-item:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(102, 126, 234, 0.1),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.project-item:last-child:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* shineAcrossAll animasyonunu kaldır */
.project-item:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(-10deg);
    z-index: 2;
}

.project-item:hover ~ .project-item {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

/* Gezegenler için stil */
.planet {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    box-shadow: 
        0 0 50px rgba(102, 126, 234, 0.3),
        inset -20px -20px 50px rgba(0,0,0,0.5);
    filter: blur(3px);
    opacity: 0.7;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.planet-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation: planetFloat 12s infinite linear;
}

.planet-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 15%;
    animation: planetFloat 8s infinite linear reverse;
}

/* Akan yıldızlar için stil */
.shooting-star {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    animation: shootingStar 2s infinite;
}

/* Animasyonlar */
@keyframes planetFloat {
    0% { transform: rotate(0deg) translateX(0) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

@keyframes shootingStar {
    0% {
        transform: translateX(-100%) translateY(100%) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translateX(200%) translateY(-200%) rotate(45deg);
        opacity: 0;
    }
}

/* Yıldızlar için güncelleme */
.star {
    opacity: 0.5;
    filter: blur(0.5px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Yeni animasyonlar */
@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes floatText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmerText {
    0% { background-position: -100% 50%; }
    100% { background-position: 200% 50%; }
}

/* Hakkımda sayfası için yeni stiller */
.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
}

.animated-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f0f0f0;
    animation: fadeIn 1s ease;
}

.specialty-list {
    list-style: none;
    padding: 0;
}

.specialty-list li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.specialty-list li:hover {
    transform: translateX(10px);
    background: rgba(102, 126, 234, 0.2);
}

.specialty-list i {
    color: #667eea;
    font-size: 1.2rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.tech-badges span {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.tech-badges span:hover {
    transform: translateY(-5px);
    background: rgba(102, 126, 234, 0.2);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-item:hover {
    transform: translateY(-5px);
    background: rgba(42, 42, 42, 0.8);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.timeline-dot {
    width: 15px;
    height: 15px;
    background: #667eea;
    border-radius: 50%;
    position: absolute;
    left: -2rem;
    top: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Sosyal ikonlar animasyonu */
.social-icons {
    animation: floatText 3s ease-in-out infinite;
    animation-delay: 0.4s;
}

/* CTA button animasyonu */
.cta-button {
    animation: floatText 3s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* Yeni animasyonlar */
@keyframes slideTextLeftRight {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-50px);
    }
    50% {
        transform: translateX(50px);
    }
    75% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Timeline ve içerik aralıkları için güncelleme */
.content-section {
    margin-bottom: 4rem;
    text-align: center;
}

.content-section h2 {
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #667eea;
    transition: width 0.3s ease;
}

.content-section h2:hover::after {
    width: 120px;
}

.content-section p {
    text-align: left;
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    margin-bottom: 3rem;
    padding: 2.5rem;
}

/* Uzmanlık alanları listesi için boşluk düzenlemesi */
.specialty-list {
    margin-top: 1.5rem;
}

.specialty-list li {
    margin: 1.2rem 0;
    padding: 1rem;
}

/* Kaydırma göstergesi - yeni pozisyon ve stil */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: floatUpDown 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #667eea;
}

.scroll-indicator span {
    color: #f0f0f0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Profil resmi container */
.profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    animation: floatProfile 6s ease-in-out infinite;
}

/* Profil resmi */
.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.2);
}

/* Parlama efekti */
.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.2),
        rgba(118, 75, 162, 0.2)
    );
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

/* Parçacık efektleri */
.profile-particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #667eea;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 3s infinite;
}

.profile-particles span:nth-child(1) { top: 20%; left: 0; animation-delay: 0s; }
.profile-particles span:nth-child(2) { top: 60%; right: 0; animation-delay: 0.4s; }
.profile-particles span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 0.8s; }
.profile-particles span:nth-child(4) { top: 30%; right: 20%; animation-delay: 1.2s; }
.profile-particles span:nth-child(5) { bottom: 0; right: 40%; animation-delay: 1.6s; }

/* Animasyonlar */
@keyframes floatProfile {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px)) scale(0);
        opacity: 0;
    }
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .profile-image-container {
        width: 150px;
        height: 150px;
    }
}

/* Hakkımda sayfası profil resmi */
.image-frame {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.2);
    animation: syncFloat 4s ease-in-out infinite;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.frame-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.2),
        rgba(118, 75, 162, 0.2)
    );
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

/* Sosyal medya rozetleri için güncelleme */
.social-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-badges .badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    color: #667eea;
    transition: all 0.3s ease;
}

.social-badges .badge:hover {
    transform: translateY(-5px);
    background: rgba(102, 126, 234, 0.2);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Teşekkür sayfası stilleri */
.thanks-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks-container {
    background: rgba(42, 42, 42, 0.5);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    animation: fadeInUp 1s ease;
}

.thanks-container h1 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thanks-container p {
    color: #f0f0f0;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.back-btn {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: syncFloat 4s ease-in-out infinite;
}

.social-link:nth-child(1) {
    animation-delay: 0s;
}

.social-link:nth-child(2) {
    animation-delay: 0.2s;
}

.social-link:nth-child(3) {
    animation-delay: 0.4s;
}

.social-link i {
    font-size: 1.8rem;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Projeler sayfası için güncellenmiş stiller */
.projects-detailed {
    padding-top: 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.projects-detailed h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #667eea;
    margin-top: 2rem;
    position: relative;
}

.project-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
    padding: 0 4rem;
    width: 100%;
    max-width: 1400px;
    flex: 1;
}

.project-item {
    width: 350px;
    background: rgba(42, 42, 42, 0.8);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.2);
    color: #f0f0f0;
    animation: cardWobble 5s ease-in-out infinite;
}

@keyframes cardWobble {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(-1deg);
    }
    75% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.project-item:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.4);
}

.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.project-item h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.project-item p {
    color: #f0f0f0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-stack span {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #667eea;
}

.project-link {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

/* Scroll çubuğunu gizle */
::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hakkımda sayfası için stiller */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #667eea;
    margin: 0 auto;
    transition: width 0.3s ease;
}

.about-header:hover .header-line {
    width: 120px;
}

/* İletişim sayfası için güncellenmiş stiller */
.contact-detailed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 80px 2rem 50px 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    perspective: 1000px;
}

.contact-info,
.contact-form {
    background: rgba(42, 42, 42, 0.5);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(102, 126, 234, 0.1);
    height: fit-content;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
}

/* İletişim sayfası başlığı için stil */
.contact-detailed h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    position: relative;
}

.contact-detailed h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #667eea;
    transition: width 0.3s ease;
}

.contact-detailed h1:hover::after {
    width: 120px;
}

/* İletişim bilgileri için güncellenmiş stiller */
.contact-info {
    text-align: center;
}

.contact-info h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-items {
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
}

.info-item p {
    color: #f0f0f0;
    font-size: 1.1rem;
}

.social-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: syncFloat 4s ease-in-out infinite;
}

.social-link:nth-child(1) {
    animation-delay: 0s;
}

.social-link:nth-child(2) {
    animation-delay: 0.2s;
}

.social-link:nth-child(3) {
    animation-delay: 0.4s;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 1.8rem;
}

@keyframes syncFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Popup stilleri */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: rgba(42, 42, 42, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    width: 90%;
    max-width: 600px;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-content.active {
    opacity: 1;
    transform: scale(1);
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.popup-description {
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-download {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.popup-download:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: rotate(90deg);
    background: #5a67d8;
}

.floating-image {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Yetenek kartları için yeni stiller */
.skill-details-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.skill-details-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

/* Yetenek popup stilleri */
.skill-popup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.skill-popup-header i {
    font-size: 2.5rem;
    color: #667eea;
}

.skill-popup-header h3 {
    font-size: 1.8rem;
    color: #f0f0f0;
}

.skill-popup-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.skill-features {
    list-style: none;
    padding: 0;
}

.skill-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.skill-features li:hover {
    transform: translateX(10px);
    background: rgba(102, 126, 234, 0.2);
}

.skill-features i {
    color: #667eea;
}

/* Dijital Yolculuk section stilleri */
.journey {
    background: transparent;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.journey-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #667eea;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    animation: titlePulse 3s ease-in-out infinite;
}

.journey-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-card {
    background: rgba(42, 42, 42, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    flex: 1;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.journey-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(102, 126, 234, 0.2);
}

.journey-icon {
    width: 70px;
    height: 70px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s ease;
}

.journey-icon i {
    font-size: 2rem;
    color: #667eea;
    transition: all 0.5s ease;
}

.journey-card:hover .journey-icon {
    transform: rotateY(360deg);
    background: rgba(102, 126, 234, 0.2);
}

.journey-card h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    text-align: center;
}

.journey-card p {
    color: #f0f0f0;
    line-height: 1.6;
    text-align: center;
}

.journey-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 4s infinite;
}

.journey-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.journey-particles span:nth-child(2) { top: 50%; right: 10%; animation-delay: 1s; }
.journey-particles span:nth-child(3) { bottom: 20%; left: 50%; animation-delay: 2s; }

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
        transform: scale(1.05);
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px));
        opacity: 0;
    }
}