/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* Thunder Font */
@font-face {
    font-family: 'Thunder';
    src: url('../fonts/Web-TT/Thunder-BoldLC.woff2') format('woff2'),
         url('../fonts/Web-TT/Thunder-BoldLC.woff') format('woff'),
         url('../fonts/Web-TT/Thunder-BoldLC.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
:root {
    --accent-color: rgba(255, 95, 0, 0.8);
    --gray-text: #999;
    --bg-color: #111;
    --hover-transition: transform 0.3s ease, box-shadow 0.3s ease;
    --font-primary: 'Thunder', 'Arial', sans-serif;
    --font-secondary: 'Helvetica', 'Arial', sans-serif;
    --font-fallback: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    --text-color: #ffffff;
    --primary-color: #ff5f00;
    --white: #ffffff;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: #fff;
    font-family: var(--font-secondary), var(--font-fallback);
    scroll-behavior: smooth;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern", "liga", "clig", "calt";
    scrollbar-width: none; /* Firefox için scrollbar'ı gizle */
    -ms-overflow-style: none; /* IE ve Edge için scrollbar'ı gizle */
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    width: 0;
    background: transparent; /* Chrome/Safari/Webkit için scrollbar'ı gizle */
}

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

/* Custom Cursor */
body {
    cursor: none;
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Custom cursor - imleç her zaman en üstte kalsın */
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translate(0, 0);
    pointer-events: none !important; /* Mutlaka hiç bir olaya tepki vermesin */
    transition: width 0.2s, height 0.2s, opacity 0.2s, background-color 0.2s;
    opacity: 0.8;
    z-index: 10000000; /* Kesinlikle her şeyin üstünde */
    mix-blend-mode: exclusion; /* Farklı renklerde iyi görünür */
    will-change: transform;
    
    /* Cursor görünürlük güvencesi */
    visibility: visible !important;
    display: block !important;
}

/* Media queries for custom cursor - Mobil ve tablet'te tamamen kaldır */
@media (max-width: 992px) {
    .cursor-outline {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Dokunmatik cihazlarda cursor'ı gizle */
@media (hover: none), (pointer: coarse) {
    .cursor-outline {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Tüm tıklanabilir öğelerin cursor özelliğini geri ver */
    a, button, .menu-icon, .menu-text, .contact-btn, .option-btn,
    .service-item, .project-card, .view-all-link, .wave-btn,
    input[type="submit"], .close-modal, .social-icon, .footer-link {
        cursor: pointer !important;
    }
}

/* Loading Text - Karakter stillerini ekle */
.loading-text .char {
    display: inline-block;
    transition: color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1100;
}

.lang-switcher a {
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--hover-transition);
    border: 1px solid var(--border-color);
}

.lang-switcher a.active {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.lang-switcher a:not(.active):hover {
    border-color: var(--text-color);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1000;
    padding: 2rem;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.loading-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 4rem);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 400;
    color: #808080;
    letter-spacing: 1px;
}

.loading-text-container {
    position: absolute;
    bottom: 12rem;
    left: 2rem;
    max-width: 90%;
    display: flex;
    flex-direction: column;
}

.loading-text {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 300;
    max-width: 100%;
    display: inline-block;
    position: relative;
    color: #808080;
    margin-bottom: 1.5rem;
}

.loading-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #fff;
    mix-blend-mode: difference;
    animation: none;
}

.loading-indicator {
    font-size: 0.9rem;
    color: #555;
    font-weight: 300;
    margin-top: 0.5rem;
}

.loading-dots {
    display: inline-block;
    width: 30px;
}

@keyframes loadingDots {
    0%, 20% {
        content: '.';
    }
    40%, 60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

.loading-dots::after {
    content: '.';
    animation: loadingDots 1.5s infinite;
}

@keyframes textFill {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.loading-percentage {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 14rem;
    font-weight: 300;
    text-align: right;
    color: white;
    line-height: 0.8;
}

/* Main Content */
#main-content {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.2s; /* Main content'in görünürlüğü için kısa bir gecikme */
}

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

/* Navigation - bu stiller artık navbar-fix.css dosyasında */
/* Ana CSS'ten yeni eklediğimiz navbar stillerini kaldırıyoruz */

/* Tüm section'lar için z-index düzenlemesi */
section {
    position: relative;
    z-index: 1; /* Tüm section'lar için varsayılan z-index değeri */
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 1; /* Hero için z-index değeri */
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 120px 5% 5%;
    z-index: 20;
}

.hero-text {
    max-width: 60%;
    padding-top: 0;
    padding-left: 2%;
    position: relative;
    margin-top: 15vh;
}

.hero-text h1 {
    font-family: 'Thunder', sans-serif;
    font-size: 10.5rem;
    line-height: 0.93;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -2px;
    color: #fff;
    position: relative;
    opacity: 0.95;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hero Text Animasyonları - Basitleştirilmiş */
.hero-text h1 .word {
    display: inline-block;
    margin: 0 5px;
    padding: 0 3px;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
}

.hero-text h1 .word:hover {
    color: #fff;
}

.hero-text h1 .char {
    display: inline-block;
    transition: color 0.3s ease;
}

/* Gri metin efektleri - Sadece renk geçişleri */
.hero-text h1 .gray-text {
    color: #555;
    transition: color 0.3s ease;
}

.hero-text h1 .gray-text:hover {
    color: #aaa;
}

.hero-text .gray-text {
    color: #555;
}

/* Gereksiz animasyonları kaldırıyorum */
@keyframes floatChar {
    0% {
        transform: none;
    }
    100% {
        transform: none;
    }
}

.hero-description {
    font-size: 1.625rem;
    line-height: 1.7;
    color: white;
    font-weight: 800 !important;
    position: relative;
    opacity: 0.95;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
    letter-spacing: -.0325rem;
    max-width: 36rem;
}

.hero-description p {
    color: #fff;
    opacity: 1;
    font-weight: 800 !important;
    letter-spacing: 0.2px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 7rem;
    opacity: 0.8;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    margin-left: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #333;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a i {
    font-size: 1.3rem;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-right {
    max-width: 30%;
    margin-top: 45vh;
    position: relative;
    padding-right: 4%;
    align-self: flex-end;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Thunder', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    transition: var(--hover-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s ease;
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 95, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.5;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    transition: var(--hover-transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--hover-transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-menu {
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav a {
    font-size: 2rem;
    color: var(--text-color);
    text-decoration: none;
    margin: 15px 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.mobile-social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.mobile-social-icons a:hover {
    color: var(--accent-color);
}

body.menu-open {
    overflow: hidden;
}

/* Media Queries */
@media (max-width: 1400px) {
    .hero-text h1 {
        font-size: 7rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
    
    .project-idea-text h1 {
        font-size: 5.5rem;
    }
    
    .service-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 6rem;
    }
    
    .hero-text {
        max-width: 70%;
    }
    
    .hero-right {
        max-width: 35%;
    }
    
    .project-idea-text h1 {
        font-size: 4.5rem;
    }
    
    .service-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        padding: 100px 5% 5%;
    }
    
    .hero-text {
        max-width: 100%;
        margin-top: 8vh;
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 5.5rem;
        line-height: 0.95;
        margin-bottom: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
        max-width: 100%;
        margin-bottom: 3rem;
        margin-top: 2rem;
    }
    
    .social-icons {
        margin-top: 4rem;
        gap: 2rem;
    }
    
    .social-icons a {
        width: 65px;
        height: 65px;
    }
    
    .social-icons a i {
        font-size: 1.6rem;
    }
    
    .hero-right {
        max-width: 100%;
        margin-top: 4rem;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-text {
        margin-top: 6vh;
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 4.8rem;
        line-height: 0.92;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .social-icons {
        margin-top: 3.5rem;
        gap: 1.8rem;
    }
    
    .social-icons a {
        width: 60px;
        height: 60px;
    }
    
    .social-icons a i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-text {
        margin-top: 5vh;
    }
    
    .hero-text h1 {
        font-size: 4.2rem;
        line-height: 0.9;
    }
    
    .hero-description {
        font-size: 1.3rem;
        margin-top: 3rem;
    }
    
    .social-icons {
        margin-top: 3rem;
        gap: 1.5rem;
    }
    
    .social-icons a {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 3.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-top: 3.5rem;
    }
    
    .social-icons {
        gap: 1.2rem;
    }
    
    .social-icons a {
        width: 50px;
        height: 50px;
    }
    
    .social-icons a i {
        font-size: 1.4rem;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 3.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-top: 4rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
    }
    
    .social-icons a i {
        font-size: 1.3rem;
    }
    
    .project-idea-text h1 {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-tag {
        font-size: 0.52rem; /* 0.65rem'in %20 küçültülmüş hali */
        padding: 0.1rem 0.3rem;
        font-weight: 500;
        min-width: 50px;
    }
    
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input, .form-textarea {
        font-size: 0.9rem;
    }
    
    .wave-text,
    .email-address {
        font-size: 1.5rem; /* En küçük ekranlar için daha da küçültüldü */
        white-space: nowrap; /* Alt satıra kaymasını önlemek için */
    }
}

/* Tablet Yatay Mod için Özel Düzenlemeler */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-content {
        padding: 80px 5% 5%;
    }
    
    .hero-text h1 {
        font-size: 5rem;
    }
    
    .hero-right {
        max-width: 45%;
    }
    
    .project-idea-text h1 {
        font-size: 4rem;
    }
    
    .service-title {
        font-size: 2.8rem;
    }
}

/* Yüksek DPI Ekranlar için Özel Düzenlemeler */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-text h1,
    .project-idea-text h1,
    .service-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Karanlık Mod Desteği */
@media (prefers-color-scheme: dark) {
    .hero-text h1,
    .project-idea-text h1,
    .service-title {
        color: #ffffff;
    }
    
    .hero-description,
    .project-idea-text p {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Dokunmatik Cihazlar için Özel Düzenlemeler */
@media (hover: none) and (pointer: coarse) {
    .cursor-outline {
        display: none;
    }
    
    .service-item,
    .project-card {
        cursor: default;
    }
    
    .wave-btn-container,
    .contact-btn {
        cursor: default;
    }
}

/* Küçük Mobil Cihazlar için Ek Düzenlemeler */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 3.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-top: 4rem;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
    }
    
    .social-icons a i {
        font-size: 1.3rem;
    }
    
    .project-idea-text h1 {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-tag {
        font-size: 0.52rem; /* 0.65rem'in %20 küçültülmüş hali */
        padding: 0.1rem 0.3rem;
        font-weight: 500;
        min-width: 50px;
    }
    
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-input, .form-textarea {
        font-size: 0.9rem;
    }
    
    .wave-text,
    .email-address {
        font-size: 1.5rem; /* En küçük ekranlar için daha da küçültüldü */
        white-space: nowrap; /* Alt satıra kaymasını önlemek için */
    }
}

/* Tüm başlıklarda Thunder font kullanımı - Türkçe karakter desteği iyileştirildi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 8.5rem;
    line-height: 0.85;
}

h2 {
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 2rem;
}

h3 {
        font-size: 3rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

h5 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

/* Section Title için Thunder font özelleştirmesi */
.section-title {
    font-family: 'Thunder', sans-serif;
    text-align: center;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 3rem;
        position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Service Card başlıkları */
.service-card h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Paragraflar için font ayarı */
p {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    font-weight: 300;
}

/* ---------- Menu Modal Styles - Önemli Düzeltmeler ---------- */
body.menu-open {
    overflow: hidden; /* Menu açıkken scroll'u engelle */
}

.menu-modal {
    z-index: 9999;
    /* Diğer stiller k-menu-modal.css içinde */
}

/* Interaksiyon Stilleri */
.menu-icon, .menu-text, .close-modal {
    cursor: pointer !important;
}

/* Hover efektleri */
.menu-icon:hover, .menu-text:hover {
    opacity: 0.9;
}

/* Zorunlu görünürlük kontrolü */
.menu-modal.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Geçişler */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Featured Projects Section */
.featured-projects {
    position: relative;
    z-index: 1; /* Featured Projects için z-index değeri */
    padding: 6rem 0;
    color: #000000;
    background-color: transparent;
}

.section-header {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    text-align: left;
}

.section-title.animated-title {
    font-family: 'Thunder', sans-serif;
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    display: inline-block;
    color: #ffffff;
    letter-spacing: -2px;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

.section-title.animated-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background-color: #fff;
    transition: width 0.5s ease;
}

.section-title.animated-title:hover::after {
        width: 100%;
}

.char-animated {
    display: inline-block;
    transition: transform 0.3s ease;
    letter-spacing: -2px;
    margin-right: -5px;
}

.section-title.animated-title:hover .char-animated {
    animation: charFloat 0.5s forwards;
}

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

@keyframes charDrop {
    0% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(15px);
    }
    80% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.section-title.animated-title .char-animated:nth-child(1) { animation-delay: 0.05s; }
.section-title.animated-title .char-animated:nth-child(2) { animation-delay: 0.1s; }
.section-title.animated-title .char-animated:nth-child(3) { animation-delay: 0.15s; }
.section-title.animated-title .char-animated:nth-child(4) { animation-delay: 0.2s; }
.section-title.animated-title .char-animated:nth-child(5) { animation-delay: 0.25s; }
.section-title.animated-title .char-animated:nth-child(6) { animation-delay: 0.3s; }
.section-title.animated-title .char-animated:nth-child(7) { animation-delay: 0.35s; }
.section-title.animated-title .char-animated:nth-child(8) { animation-delay: 0.4s; }
.section-title.animated-title .char-animated:nth-child(9) { animation-delay: 0.45s; }
.section-title.animated-title .char-animated:nth-child(10) { animation-delay: 0.5s; }
.section-title.animated-title .char-animated:nth-child(11) { animation-delay: 0.55s; }
.section-title.animated-title .char-animated:nth-child(12) { animation-delay: 0.6s; }
.section-title.animated-title .char-animated:nth-child(13) { animation-delay: 0.65s; }
.section-title.animated-title .char-animated:nth-child(14) { animation-delay: 0.7s; }
.section-title.animated-title .char-animated:nth-child(15) { animation-delay: 0.75s; }
.section-title.animated-title .char-animated:nth-child(16) { animation-delay: 0.8s; }
.section-title.animated-title .char-animated:nth-child(17) { animation-delay: 0.85s; }
.section-title.animated-title .char-animated:nth-child(18) { animation-delay: 0.9s; }
.section-title.animated-title .char-animated:nth-child(19) { animation-delay: 0.95s; }
.section-title.animated-title .char-animated:nth-child(20) { animation-delay: 1s; }
.section-title.animated-title .char-animated:nth-child(21) { animation-delay: 1.05s; }
.section-title.animated-title .char-animated:nth-child(22) { animation-delay: 1.1s; }

.projects-container {
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 90px 90px 0 0;
    padding: 3rem;
    padding-bottom: 25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 992px) {
    .projects-container {
        padding: 2rem 1rem;
        border-radius: 40px;
        width: 100%;
        margin: 0;
        padding-bottom: 35rem; /* Mobil görünümde padding-bottom değerini artırdım */
    }
}

@media (max-width: 768px) {
    .projects-container {
        padding: 2rem 1rem;
        border-radius: 30px;
        width: 100%;
        margin: 0;
        padding-bottom: 40rem; /* Daha küçük ekranlar için padding-bottom değerini daha da artırdım */
    }
}

@media (max-width: 480px) {
    .projects-container {
        padding: 1.5rem 1rem;
        border-radius: 25px;
        width: 100%;
        margin: 0;
        padding-bottom: 45rem; /* En küçük ekranlar için padding-bottom değerini maksimuma çıkardım */
    }
}

.container-title {
    margin-bottom: 3rem;
    position: relative;
    text-align: left;
}

.inner-title {
    font-family: 'Thunder', sans-serif;
    font-size: 4.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    text-align: left;
    margin: 0 0 1rem;
    display: inline-block;
}

.title-line {
    width: 100px;
    height: 2px;
    background-color: #000;
    margin-bottom: 2rem;
    transition: width 0.4s ease;
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-card-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1190/830;
    height: auto;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-details {
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.project-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Manrope', sans-serif;
}

.project-card-container:hover .project-title {
    color: #333;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.project-tags .tag {
    font-size: 0.8rem;
    color: #000;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid #000;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.project-tags .tag:hover {
    background-color: #000;
    color: #fff;
}

.projects-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.description-text {
    max-width: 60%;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.view-all-wrapper {
    display: flex;
    align-items: center;
}

.view-all-link {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.view-all-link:hover {
    opacity: 0.7;
}

.eye-icon {
    margin-left: 0.8rem;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.view-all-link:hover .eye-icon {
    transform: scale(1.1);
}

/* Scroll Animation for Title */
.section-title.animated-title.animate-on-scroll {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.section-title.animated-title.animate-on-scroll.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive styles for featured projects */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .project-card {
        aspect-ratio: 16/9;
        height: auto;
        max-height: 380px;
    }
    
    .project-image {
        height: 100%;
        width: 100%;
    }
    
    .project-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .project-details {
        padding: 0.5rem 0.5rem;
        margin-top: 1rem;
        gap: 0.6rem;
    }
    
    .project-tags {
        justify-content: center;
    }
    
    .projects-footer {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .description-text {
        max-width: 100%;
    }
    
    .projects-container {
        width: 100%;
        padding: 3rem 1rem;
        border-radius: 40px;
        margin: 0;
        padding-bottom: 20rem; /* Adjusted for tablet */
    }
}

@media (max-width: 768px) {
    .featured-projects {
        padding: 4rem 0;
    }
    
    .section-title.animated-title {
        font-size: 3.5rem;
    }
    
    .projects-container {
        padding: 2rem 1rem;
        border-radius: 30px;
        width: 100%;
        margin: 0;
        padding-bottom: 15rem; /* Adjusted for mobile */
    }
    
    .project-card {
        aspect-ratio: 1/1; /* Kare format */
        max-height: none;
        height: auto;
    }
    
    .project-card-container {
        gap: 1.5rem;
    }
    
    .project-image {
        height: 100%;
        width: 100%;
        border-radius: 12px;
    }
    
    .project-image img {
        border-radius: 12px;
    }
    
    .project-details {
        padding: 0.3rem 0.3rem;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .inner-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .section-title.animated-title {
        font-size: 2.8rem;
    }
    
    .projects-container {
        padding: 1.5rem 1rem;
        border-radius: 25px;
        width: 100%;
        margin: 0;
        padding-bottom: 12rem; /* Adjusted for small mobile */
    }
    
    .project-card {
        aspect-ratio: 4/3; /* Mobil için yakın oran */
        width: 100%;
        height: auto;
    }
    
    .project-image {
        height: 100%;
        width: 100%;
        border-radius: 10px;
    }
    
    .project-image img {
        height: 100%;
        object-position: center;
        border-radius: 10px;
    }
    
    .project-details {
        padding: 0.2rem 0.2rem;
        margin-top: 0.8rem;
        gap: 0.4rem;
    }
    
    .project-tags .tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .inner-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 360px) {
    .projects-container {
        padding: 1rem 0.8rem;
        border-radius: 20px;
        width: 100%;
        margin: 0;
    }
    
    .project-card {
        aspect-ratio: 3/2; /* En küçük ekranlar için biraz daha geniş */
    }
    
    .project-image {
        height: 100%;
        width: 100%;
        border-radius: 8px;
    }
    
    .project-image img {
        border-radius: 8px;
    }
}

/* Nav Right - Sabit genişlik */
.nav-right {
    display: flex;
    align-items: center;
    width: auto;
    min-width: 180px;
    justify-content: flex-end;
}

/* Menu Text ve Icon için sabit genişlik */
.menu-text {
    margin-right: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    color: #ffffff;
    width: 50px;
    text-align: right;
}

/* Menu Icon Styles için sabit konum ve genişlik */
.menu-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s ease;
    margin-left: auto;
}

/* İkinci Projects Section - Mavi */
.secondary-projects {
    position: relative;
    z-index: 3; /* Secondary projects'in z-index değerini artırdım */
    padding: 0;
    color: #000000;
    background-color: transparent;
    margin-top: -15rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow-x: hidden;
    left: 0;
    right: 0;
}

/* Responsive ekranlarda secondary-projects'ı gizle */
@media (max-width: 992px) {
    .secondary-projects {
        display: none;
    }
}

.blue-projects-container {
    margin: 0;
    background-color: #000000;
    border-radius: 90px 90px 0 0;
    padding: 3rem 3rem 6rem 3rem;
    color: #ffffff;
    position: relative;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

.blue-container-title {
    margin-bottom: 3rem;
    position: relative;
}

.blue-inner-title {
    font-family: 'Thunder', sans-serif;
    font-size: 4.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #000000;
    letter-spacing: -2px;
    text-align: center;
    margin: 0 0 2rem;
}

.blue-title-line {
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 2rem;
    transition: width 0.4s ease;
}

.blue-description-text {
    max-width: 60%;
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.blue-projects-container .project-card {
    background-color: #2a4494;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blue-projects-container .project-title {
    color: #ffffff;
}

.blue-projects-container .project-tags .tag {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background-color: transparent;
}

.blue-projects-container .project-tags .tag:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.blue-projects-container .view-all-link {
    color: #ffffff;
}

.blue-projects-container .eye-icon svg path {
    stroke: #ffffff;
}

.blue-projects-container .projects-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* Kayan yazı stilleri */
.scrolling-text-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
    overflow: hidden;
    padding: 0;
    background-color: #000000;
    position: relative;
    padding: 0 3rem;
    z-index: 1;
}

.scrolling-text-container::before,
.scrolling-text-container::after {
    content: none; /* Removed the shadow gradients */
}

.scrolling-text {
    width: 100%;
    position: relative;
}

.scrolling-row {
    display: flex;
    white-space: nowrap;
    padding: 2rem 0; /* Reduced from 3rem to 2rem to make it vertically narrower */
    align-items: center;
    position: relative;
    left: 0;
}

.scrolling-row-left {
    animation: marqueeLeft 12s linear infinite;
    will-change: transform;
}

.scrolling-content {
    display: inline-flex;
    white-space: nowrap;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive ayarlar */
@media (max-width: 1400px) {
    .scrolling-text-item {
        font-size: 7rem;
    }
    
    .text-dot {
        width: 18px;
        height: 18px;
    }
    
    .scrolling-row {
        padding: 1.7rem 0;
    }
}

@media (max-width: 992px) {
    .scrolling-text-item {
        font-size: 5rem;
    }
    
    .scrolling-row {
        padding: 1.5rem 0;
    }
    
    .text-dot {
        width: 15px;
        height: 15px;
        margin: 0 2rem;
    }
}

@media (max-width: 768px) {
    .scrolling-text-item {
        font-size: 3.5rem;
    }
    
    .scrolling-row {
        padding: 1.2rem 0;
    }
    
    .text-dot {
        width: 12px;
        height: 12px;
        margin: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .scrolling-text-item {
        font-size: 2.2rem;
    }
    
    .scrolling-row {
        padding: 0.8rem 0;
    }
    
    .text-dot {
        width: 8px;
        height: 8px;
        margin: 0 1rem;
    }
}

.scrolling-text-item {
    display: inline-flex;
    align-items: center;
    font-family: 'Thunder', sans-serif;
    font-size: 8rem;
    letter-spacing: -2px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    padding: 0 2rem;
    flex-shrink: 0;
}

.text-dot {
    display: inline-flex;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 3rem;
    flex-shrink: 0;
    align-self: center;
}

/* ---------- Hakkımızda Section Styles ---------- */
.about-section {
    position: relative;
    padding: 0;
    margin-top: -6rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    z-index: 10; /* Siyah section'ın üzerinde olması için daha yüksek z-index değeri */
}

/* Üst container - Siyah arka plan ve kayan yazı */
.about-top-container {
    background-color: #000000;
    border-radius: 90px 90px 0 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Alt container - Gri arka plan ve içerik */
.about-bottom-container {
    background-color: #b0b8c9;
    border-radius: 90px 90px 0 0;
    padding: 10rem 3rem 15rem;
    margin-top: -4rem;
    position: relative;
    z-index: 6; /* Updated z-index to be above blue container (5) but below project idea (10) */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* İçerik yerleşimi */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    width: 100%;
}

/* Sol taraftaki başlık */
.about-left {
    padding-top: 1rem;
}

.about-title {
    font-size: 1.625rem;
    line-height: 1.7;
    color: #000;
    font-weight: 800 !important;
    letter-spacing: -.0325rem;
    margin: 0;
    text-transform: none;
    font-family: 'Manrope', sans-serif;
}

/* Sağ taraftaki açıklama metni */
.about-right {
    max-width: 100%;
}

.about-description {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #000;
}

.about-description p {
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-description p:first-of-type {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Çözümane Ekibi Profil Bölümü */
.team-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    font-family: 'Thunder', sans-serif;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .about-content {
        gap: 3rem;
    }
    
    .about-description {
        font-size: 1.6rem;
    }
    
    .about-description p:first-of-type {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .blue-projects-container {
        width: 90%;
        border-radius: 40px 40px 0 0;
        padding-bottom: 8rem;
    }
    
    .about-section {
        margin-top: -15rem; /* Responsive görünümde yukarı çek */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        margin-bottom: 2rem;
    }
    
    .about-description {
        font-size: 1.5rem;
    }
    
    .about-description p:first-of-type {
        font-size: 1.8rem;
    }
    
    .team-profile {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .about-bottom-container {
        margin-top: -8rem; /* Responsive görünümde yukarı çek */
        padding: 8rem 2rem 12rem;
    }
}

@media (max-width: 768px) {
    .blue-projects-container {
        border-radius: 40px 40px 0 0;
        padding-bottom: 6rem;
    }
    
    .about-top-container,
    .about-bottom-container {
        border-radius: 40px 40px 0 0;
    }
    
    .about-bottom-container {
        padding: 7rem 2rem 5rem;
    }
    
    .about-description {
        font-size: 1.3rem;
    }
    
    .about-description p:first-of-type {
        font-size: 1.6rem;
    }
    
    .team-profile {
        margin-top: 3rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .about-bottom-container {
        padding: 6rem 1.5rem 4rem;
        border-radius: 30px 30px 0 0;
    }
    
    .about-top-container {
        border-radius: 30px 30px 0 0;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .about-description p:first-of-type {
        font-size: 1.4rem;
    }
    
    .team-name {
        font-size: 1.5rem;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
}

/* Scroll Animasyonları için Core CSS */
.projects-container, .blue-projects-container, .project-idea-container, .about-top-container, .about-bottom-container {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

/* Project Idea Section - Updated positioning for new order */
.project-idea-section {
    padding: 0;
    position: relative;
    background-color: transparent;
    margin-top: -10rem;
    z-index: 2; /* Project Idea için z-index değeri */
}

@media (max-width: 992px) {
    .project-idea-section {
        margin-top: -8rem;
    }
}

@media (max-width: 768px) {
    .project-idea-section {
        margin-top: -6rem;
    }
}

@media (max-width: 480px) {
    .project-idea-section {
        margin-top: -5rem;
    }
}

.project-idea-container {
    margin: 0 auto;
    background-color: #31373d;
    border-radius: 90px 90px 0 0;
    padding: 8rem 4rem 20rem;
    color: #ffffff;
    position: relative;
    z-index: 2; /* Project Idea Container için z-index değeri */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-idea-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
    min-height: 50vh;
}

.project-idea-text {
    max-width: 90%;
    text-align: left;
    align-self: flex-start;
    margin-bottom: 8rem;
    padding-left: 4rem;
    position: relative;
    z-index: 10; /* z-index değerini artırdım (animasyonun 5 olan değerinden daha yüksek) */
}

.project-idea-text h1 {
    font-size: 7rem;
    line-height: 0.85;
    margin: 0;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: transform 0.5s ease;
}

/* Three.js animasyon konteyner */
.project-3d-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    max-width: 600px;
    max-height: 600px;
    z-index: 1; /* z-index değeri düşürüldü (5'ten 1'e) */
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 70, 80, 0.2) 0%, rgba(49, 55, 61, 0) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

#animation-container {
    width: 90%;
    height: 90%;
    overflow: visible;
}

/* Alt çizgi animasyonu */
.moving-line {
    height: 6px;
    width: 100%;
    background: #ffffff;
    bottom: 0;
    position: absolute;
    left: 0;
    transition: none;
}

/* Çizgi animasyonu için stilller */
@keyframes lineWave {
    0% {
        width: 0;
        left: 0;
    }
    100% {
        width: 100%;
        left: 0;
    }
}

.wave-text-container:hover .moving-line {
    box-shadow: none;
}

.wave-text {
    font-family: 'Thunder', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
}

/* Sol alt köşe iletişim bilgileri */
.contact-info {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

.say-hi {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: 'Manrope', sans-serif;
}

.email-container {
    position: relative;
    overflow: visible;
    padding-bottom: 15px;
    cursor: pointer;
    text-align: left;
    z-index: 10;
    display: inline-block;
}

.email-address {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.email-address:hover {
    color: #ffffff;
}

.email-line {
    height: 6px;
    width: 0;
    background: #ffffff;
    bottom: 0;
    position: absolute;
    left: 0;
    transition: none;
}

.email-container:hover .email-line {
    animation: lineWave 0.6s ease-in-out;
}

/* Wave Text - Sağ alt köşeye daha yakın konumlandırma */
.wave-text-container {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    overflow: visible;
    padding-bottom: 15px;
    cursor: pointer;
    text-align: right;
    z-index: 10;
    color: #ffffff;
}

.wave-text-container:hover .moving-line {
    box-shadow: none;
}

/* Responsive ayarlamalar */
@media (max-width: 1400px) {
    .project-idea-text h1 {
        font-size: 5.5rem;
    }
    
    .wave-text,
    .email-address {
        font-size: 3.5rem;
    }
    
    .say-hi {
        font-size: 1.8rem;
    }
    
    .project-3d-animation {
        width: 45vw;
        height: 45vw;
    }
}

@media (max-width: 1200px) {
    .project-idea-text h1 {
        font-size: 4.5rem;
    }
    
    .wave-text,
    .email-address {
        font-size: 3rem;
    }
    
    .say-hi {
        font-size: 1.6rem;
    }
    
    .project-3d-animation {
        width: 50vw;
        height: 50vw;
    }
}

@media (max-width: 992px) {
    .project-idea-container {
        padding: 6rem 2rem 15rem;
    }
    
    .project-idea-text {
        padding-left: 2rem;
    }
    
    .project-idea-text h1 {
        font-size: 4rem;
    }
    
    .wave-text,
    .email-address {
        font-size: 2.8rem;
    }
    
    .say-hi {
        font-size: 1.4rem;
    }
    
    .contact-info {
        left: 2rem;
    }
    
    .wave-text-container {
        right: 2rem;
    }
    
    .project-3d-animation {
        width: 60vw;
        height: 60vw;
    }
}

@media (max-width: 768px) {
    .project-idea-container {
        padding: 5rem 2rem 10rem;
    }
    
    .project-idea-text {
        padding-left: 0;
        margin-bottom: 3rem;
        z-index: 10; /* z-index korundu */
    }
    
    .project-idea-text h1 {
        font-size: 3.5rem;
    }
    
    .wave-text,
    .email-address {
        font-size: 2rem; /* 2.5rem'den daha küçük boyut */
        white-space: nowrap; /* Alt satıra kaymasını önle */
    }
    
    .say-hi {
        font-size: 1.2rem;
    }
    
    .project-3d-animation {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 80vw;
        height: 80vw;
        margin: 0 auto 3rem;
        z-index: 1; /* z-index değeri düşük tutuldu */
    }
    
    .project-idea-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wave-text-container, .contact-info {
        position: relative;
        margin-top: 2rem;
        bottom: auto;
        left: auto;
        right: auto;
    }
    
    .contact-info {
        order: 3;
    }
    
    .wave-text-container {
        order: 4;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .project-idea-container {
        padding: 4rem 1.5rem 8rem;
    }
    
    .project-idea-text h1 {
        font-size: 2.8rem;
    }
    
    .wave-text,
    .email-address {
        font-size: 1.8rem; /* 2.2rem'den 1.8rem'e küçültüldü */
        white-space: nowrap; /* Alt satıra kaymasını önlemek için */
    }
    
    .say-hi {
        font-size: 1rem;
    }
    
    .project-3d-animation {
        height: 80vw;
    }
}

.wave-text .char {
    display: inline-block;
    transition: transform 0.25s ease;
}

/* Expertise Section Styles */
.expertise-section {
    padding: 120px 0 120px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 3; /* Expertise için z-index değeri */
    margin-top: -90px;
    border-radius: 90px 90px 0 0;
}

.expertise-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.expertise-header {
    margin-bottom: 80px;
    max-width: 1000px;
    padding: 0 4rem;
}

@media (max-width: 992px) {
    .expertise-header {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .expertise-header {
        padding: 0 2rem;
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .expertise-header {
        padding: 0 1.5rem;
        margin-bottom: 40px;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: #888;
    text-transform: lowercase;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}

.expertise-title {
    font-size: 3rem;
    line-height: 1.2;
    color: #000;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Thunder', sans-serif;
}

/* Services Accordion */
.services-accordion {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-item {
    background-color: #fff;
    padding: 3rem 4rem;
    transition: all 0.6s ease;
    border-bottom: 1px solid #000;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.service-item:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.service-number {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.5;
    color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.service-title {
    font-size: 4rem;
    font-weight: 1000;
    margin: 0 auto;
    text-align: center;
    color: #000;
    transition: transform 0.5s ease;
    font-family: 'Manrope', sans-serif;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    align-items: center;
}

.service-tag {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.service-tag:not(:last-child)::after {
    content: "•";
    display: inline-block;
    margin-left: 0.8rem;
    color: #333;
}

.service-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.6s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-20px);
}

.service-item.active {
    padding-bottom: 5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-item.active .service-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 2rem;
    transform: translateY(0);
}

.service-item.active .service-title {
    transform: translateY(-5px);
}

/* Service item backgrounds */
.service-item.active:nth-child(1) {
    background-color: #cad5df;
}

.service-item.active:nth-child(2) {
    background-color: #faf5eb; /* Açık bej tonu */
}

.service-item.active:nth-child(3) {
    background-color: #e9f0e3;
}

.service-item.active:nth-child(4) {
    background-color: #f0eae3;
}

.service-item.active:nth-child(5) {
    background-color: #e9e3f0;
}

.service-item.active:nth-child(6) {
    background-color: #f0f5fa; /* Açık gri-mavi tonu */
}

.service-item.active:nth-child(7) {
    background-color: #fff5eb; /* Açık turuncu/bej tonu */
}

.discuss-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: transparent;
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin-top: 1.5rem;
}

.discuss-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* Media queries for responsive services */
@media (max-width: 1200px) {
    .service-title {
        font-size: 2.2rem;
    }
    
    .service-tag {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .service-item {
        padding: 2.5rem 3rem;
    }
    
    .service-number {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-tags {
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .service-tag {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    
    .service-tag:not(:last-child)::after {
        margin-left: 0.6rem;
    }
}

@media (max-width: 768px) {
    .service-item {
        padding: 2rem;
    }
    
    .service-number {
        font-size: 1.6rem;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-tags {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        width: 100%;
    }
    
    .service-tag {
        font-size: 0.68rem; /* 0.85rem'in %20 küçültülmüş hali */
        text-align: center;
        padding: 0.2rem 0.8rem;
        border: 1px solid rgba(0,0,0,0.3);
        border-radius: 20px;
        letter-spacing: 0;
        min-width: 80px;
    }
    
    .service-tag:not(:last-child)::after {
        content: none;
    }
}

@media (max-width: 576px) {
    .service-number {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-tags {
        gap: 0.4rem;
    }
    
    .service-tag {
        font-size: 0.6rem; /* 0.75rem'in %20 küçültülmüş hali */
        padding: 0.15rem 0.5rem;
        min-width: 70px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 1.5rem 1rem;
    }
    
    .service-number {
        font-size: 1.4rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-tags {
        gap: 0.3rem;
        margin-top: 0.7rem;
    }
    
    .service-tag {
        font-size: 0.56rem; /* 0.7rem'in %20 küçültülmüş hali */
        padding: 0.1rem 0.4rem;
        font-weight: 500;
        min-width: 60px;
    }
}

@media (max-width: 360px) {
    .service-item {
        padding: 1.2rem 0.8rem;
    }
    
    .service-number {
        font-size: 1.3rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-tags {
        margin-top: 0.5rem;
        gap: 0.25rem;
    }
    
    .service-tag {
        font-size: 0.52rem; /* 0.65rem'in %20 küçültülmüş hali */
        padding: 0.1rem 0.3rem;
        font-weight: 500;
        min-width: 50px;
    }
}

.scroll-tip-title {
    display: inline-flex;
    align-items: center;
    font-family: 'Thunder', sans-serif;
    font-size: 8rem;
    letter-spacing: -2px;
    white-space: nowrap;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
}

#animation-container canvas {
    filter: hue-rotate(140deg) !important;
}

.email-address .char {
    display: inline-block;
    transition: transform 0.25s ease;
}

/* Contact Form Section */
.contact-section {
    padding: 6rem 0 8rem 0;
    background-color: #000;
    position: relative;
    z-index: 4; /* Contact için z-index değeri */
    margin-top: -90px;
    border-radius: 90px 90px 0 0;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 5rem;
    color: #fff;
    margin-bottom: 4rem;
    font-weight: 600;
}

.form-row {
    margin-bottom: 3rem;
}

.form-label {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-options, .budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn:hover, .option-btn.active {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

@media (max-width: 768px) {
    .service-options,
    .budget-options {
        gap: 0.75rem;
    }

    .option-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-options,
    .budget-options {
        gap: 0.5rem;
    }

    .option-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

.form-input {
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover, 
.form-input:-webkit-autofill:focus,
.form-textarea:-webkit-autofill,
.form-textarea:-webkit-autofill:hover,
.form-textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-textarea {
    width: 100%;
    height: 150px;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    margin-top: 0.5rem;
    resize: none;
}

.form-textarea:focus {
    outline: none;
    border-color: #fff;
}

.submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
}

.submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive styles for contact form */
@media (max-width: 992px) {
    .contact-heading {
        font-size: 4rem;
    }
    
    .service-options, .budget-options {
        gap: 0.8rem;
    }
    
    .option-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        border-width: 0.5px;
    }
    
    .wave-btn-container {
        padding: 0.5rem 1.5rem;
    }
    
    .wave-line {
        height: 1px;
    }
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    
    .form-row {
        margin-bottom: 2rem;
    }
    
    .service-options, .budget-options {
        flex-wrap: wrap;
    }
    
    .submit-row {
        justify-content: center;
    }
    
    .option-btn {
        border-width: 0.5px;
    }
    
    .wave-btn-container {
        padding: 0.4rem 1.5rem;
    }
    
    .wave-btn {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .option-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-width: 0.5px;
    }
    
    .form-input, .form-textarea {
        font-size: 1rem;
    }
    
    .wave-btn-container {
        padding: 0.3rem 1.2rem;
    }
    
    .wave-btn {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
}

/* Wave Button Style */
.wave-btn-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
}

.wave-btn-container:hover {
    background-color: transparent;
}

.wave-btn {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 1rem 0;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wave-text-btn {
    display: inline-block;
    position: relative;
}

.wave-text-btn .char {
    display: inline-block;
    transition: transform 0.25s ease;
}

.wave-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: width 0.7s ease-out;
}

@media (max-width: 768px) {
    .submit-row {
        justify-content: center;
    }
    
    .wave-btn-container {
        padding: 0.4rem 1.5rem;
    }
    
    .wave-btn {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 480px) {
    .wave-btn-container {
        padding: 0.3rem 1.2rem;
    }
    
    .wave-btn {
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }
}

/* Footer Section */
.footer-section {
    padding: 6rem 0 4rem 0;
    background-color: #fff;
    position: relative;
    z-index: 5; /* Footer için z-index değeri */
    margin-top: -90px;
    border-radius: 90px 90px 0 0;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}

.footer-left {
    flex-basis: 40%;
}

.footer-right {
    display: flex;
    gap: 5rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-label {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}

.footer-email {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: rgba(0, 0, 0, 0.8);
}

.footer-link {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* 0.5rem'den 0.8rem'e büyütüldü */
}

.logo-text {
    font-size: 1.6rem;
    color: #000;
    font-weight: 400; /* 500'den 400'e (regular) */
}

.logo-flag {
    font-size: 1.6rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Responsive styles for footer */
@media (max-width: 992px) {
    .footer-section {
        padding: 5rem 0 3rem 0;
    }
    
    .footer-container {
        padding: 0 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 4rem;
        margin-bottom: 5rem;
    }
    
    .footer-email {
        font-size: 2.5rem;
    }
    
    .footer-right {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 4rem 0 2rem 0;
        border-radius: 60px 60px 0 0;
    }
    
    .footer-email {
        font-size: 2rem;
    }
    
    .footer-right {
        flex-wrap: wrap;
        gap: 2rem 4rem;
    }
    
    .footer-links-column {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 3rem 0 2rem 0;
        border-radius: 40px 40px 0 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-email {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .footer-copyright {
        margin-top: 0.5rem;
    }
}

/* Responsive ayarlar */
@media (max-width: 992px) {
    .projects-container,
    .blue-projects-container,
    .project-idea-container,
    .about-top-container,
    .about-bottom-container,
    .expertise-section,
    .contact-section,
    .footer-section {
        border-radius: 40px 40px 0 0 !important;
    }
    
    .scrolling-text-item {
        font-size: 4rem;
    }
    
    .scrolling-row {
        padding: 1.5rem 0;
    }
    
    .text-dot {
        width: 15px;
        height: 15px;
        margin: 0 2rem;
    }
}

@media (max-width: 768px) {
    .projects-container,
    .blue-projects-container,
    .project-idea-container,
    .about-top-container,
    .about-bottom-container,
    .expertise-section,
    .contact-section,
    .footer-section {
        border-radius: 30px 30px 0 0 !important;
    }
    
    .scrolling-text-item {
        font-size: 3rem;
    }
    
    .scrolling-row {
        padding: 1.2rem 0;
    }
    
    .text-dot {
        width: 12px;
        height: 12px;
        margin: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-container,
    .blue-projects-container,
    .project-idea-container,
    .about-top-container,
    .about-bottom-container,
    .expertise-section,
    .contact-section,
    .footer-section {
        border-radius: 25px 25px 0 0 !important;
    }
    
    .scrolling-text-item {
        font-size: 2.2rem;
    }
    
    .scrolling-row {
        padding: 0.8rem 0;
    }
    
    .text-dot {
        width: 8px;
        height: 8px;
        margin: 0 1rem;
    }
}

@media (max-width: 360px) {
    .projects-container,
    .blue-projects-container,
    .project-idea-container,
    .about-top-container,
    .about-bottom-container,
    .expertise-section,
    .contact-section,
    .footer-section {
        border-radius: 20px 20px 0 0 !important;
    }
    
    .scrolling-text-item {
        font-size: 1.8rem;
    }
    
    .scrolling-row {
        padding: 0.6rem 0;
    }
    
    .text-dot {
        width: 6px;
        height: 6px;
        margin: 0 0.8rem;
    }
}

.scrolling-row-left {
    animation: marqueeLeft 12s linear infinite;
    will-change: transform;
}

@media (max-width: 992px) {
    .scrolling-row-left {
        animation: marqueeLeft 6s linear infinite;
    }
}

@media (max-width: 768px) {
    .scrolling-row-left {
        animation: marqueeLeft 4s linear infinite;
    }
}

@media (max-width: 480px) {
    .scrolling-row-left {
        animation: marqueeLeft 3s linear infinite;
    }
}

@media (max-width: 360px) {
    .scrolling-row-left {
        animation: marqueeLeft 2.5s linear infinite;
    }
}

/* Loading screen responsive styles */
@media (max-width: 992px) {
    .loading-text-container {
        position: absolute;
        left: 2rem;
        bottom: 12rem;
        transform: none;
        text-align: left;
        width: 90%;
        max-width: 600px;
    }

    .loading-text {
        font-size: 2.2rem;
        text-align: left;
    }

    .loading-percentage {
        font-size: 10rem;
        text-align: right;
        right: 2rem;
        bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .loading-text-container {
        bottom: 10rem;
    }

    .loading-text {
        font-size: 2rem;
    }

    .loading-percentage {
        font-size: 8rem;
    }
}

@media (max-width: 576px) {
    .loading-text-container {
        bottom: 8rem;
    }

    .loading-text {
        font-size: 1.8rem;
    }

    .loading-percentage {
        font-size: 6rem;
        bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .loading-text-container {
        left: 1.5rem;
        bottom: 7rem;
    }

    .loading-text {
        font-size: 1.6rem;
    }

    .loading-percentage {
        font-size: 5rem;
        bottom: 4rem;
        right: 1.5rem;
    }
}

@media (max-width: 360px) {
    .loading-text-container {
        left: 1rem;
        bottom: 6rem;
    }

    .loading-text {
        font-size: 1.4rem;
    }

    .loading-percentage {
        font-size: 4rem;
        bottom: 4rem;
        right: 1rem;
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

@media (max-width: 992px) {
    .particles-container {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .particles-container {
        height: 70vh;
    }
}

@media (max-width: 576px) {
    .particles-container {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .particles-container {
        height: 50vh;
    }
}

@media (max-width: 360px) {
    .particles-container {
        height: 45vh;
    }
}

/* Input focus stilleri */
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #fff;
}

/* Özel cursor tüm sayfa genelinde aktif olsun - tıklanabilir öğeler için de */
a, button, .menu-icon, .menu-text, .contact-btn, .option-btn,
.service-item, .project-card, .view-all-link, .wave-btn,
input[type="submit"], .close-modal, .social-icon, .footer-link {
    cursor: none !important;
}

/* Eğer tarayıcı cursor:none'u desteklemiyorsa varsayılana dön */
@media not all and (hover: hover) {
    a, button, .menu-icon, .menu-text, .contact-btn, .option-btn,
    .service-item, .project-card, .view-all-link, .wave-btn,
    input[type="submit"], .close-modal, .social-icon, .footer-link {
        cursor: pointer !important;
    }
}

/* Mobil görünüm için Türkçe karakter düzeltmesi */
@media (max-width: 768px) {
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
        line-height: 1;
        margin-bottom: 1.5rem;
        font-family: 'Arial', 'Helvetica', sans-serif; /* Mobilde güvenli font kullan */
        letter-spacing: normal;
        font-weight: 900; /* Daha kalın yazı tipi */
        text-rendering: optimizeLegibility; /* Karakter renderingini iyileştir */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Türkçe karakter düzeltmesi - özel harfler */
    .hero-text h1 .word {
        margin: 0 2px;
        padding: 0;
    }
    
    .hero-description {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-left: 0;
        max-width: 100%;
    }
    
    .social-icons {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .social-icons a i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-text {
        padding-left: 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
        font-family: 'Arial', 'Helvetica', sans-serif; /* Mobilde güvenli font kullan */
        text-rendering: optimizeLegibility;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
        font-family: 'Arial', 'Helvetica', sans-serif; /* Mobilde güvenli font kullan */
        font-weight: 900;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .social-icons {
        margin-top: 1.5rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .social-icons a i {
        font-size: 0.9rem;
    }
}

/* Responsive Project Tags */
@media (max-width: 992px) {
    .project-tags {
        gap: 0.4rem;
        justify-content: center;
    }
    
    .project-tags .tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

@media (max-width: 768px) {
    .project-tags {
        gap: 0.3rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .project-tags .tag {
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 15px;
        min-width: 65px;
        text-align: center;
        background-color: transparent;
    }
}

@media (max-width: 480px) {
    .project-tags {
        gap: 0.25rem;
    }
    
    .project-tags .tag {
        font-size: 0.65rem;
        padding: 2px 6px;
        border-radius: 12px;
        min-width: 55px;
    }
}

@media (max-width: 360px) {
    .project-tags {
        gap: 0.2rem;
    }
    
    .project-tags .tag {
        font-size: 0.58rem;
        padding: 2px 5px;
        border-radius: 10px;
        min-width: 45px;
    }
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    align-items: center;
}

.service-tag {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.service-tag:not(:last-child)::after {
    content: "•";
    display: inline-block;
    margin-left: 0.8rem;
    color: #333;
}

@media (max-width: 1200px) {
    .service-tag {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .service-tags {
        gap: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .service-tag {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    
    .service-tag:not(:last-child)::after {
        margin-left: 0.6rem;
    }
}

@media (max-width: 768px) {
    .service-tags {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        width: 100%;
    }
    
    .service-tag {
        font-size: 0.85rem;
        text-align: center;
        padding: 0.2rem 0.8rem;
        border: 1px solid rgba(0,0,0,0.3);
        border-radius: 20px;
        letter-spacing: 0;
        min-width: 80px;
    }
    
    .service-tag:not(:last-child)::after {
        content: none;
    }
}

@media (max-width: 576px) {
    .service-tags {
        gap: 0.4rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-tag {
        font-size: 0.75rem;
        padding: 0.15rem 0.5rem;
        min-width: 70px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-tags {
        gap: 0.3rem;
        margin-top: 0.7rem;
    }
    
    .service-tag {
        font-size: 0.7rem;
        padding: 0.1rem 0.4rem;
        font-weight: 500;
        min-width: 60px;
    }
}

@media (max-width: 360px) {
    .service-tags {
        margin-top: 0.5rem;
        gap: 0.25rem;
    }
    
    .service-tag {
        font-size: 0.52rem; /* 0.65rem'in %20 küçültülmüş hali */
        padding: 0.1rem 0.3rem;
        font-weight: 500;
        min-width: 50px;
    }
    
    .wave-text,
    .email-address {
        font-size: 1.5rem; /* En küçük ekranlar için daha da küçültüldü */
        white-space: nowrap; /* Alt satıra kaymasını önlemek için */
    }
}

/* Project tags (tag) mobil responsive düzenlemeleri */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}