/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll Animasyonları */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animasyon Gecikmeleri */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

.delay-800 {
    transition-delay: 0.8s;
}

/* Sayfa yükleme animasyonu */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a192f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: rotate 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-circle:nth-child(1) {
    border-top-color: #64ffda;
    animation-delay: 0s;
}

.loader-circle:nth-child(2) {
    border-right-color: #a259ff;
    animation-delay: 0.2s;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.loader-circle:nth-child(3) {
    border-bottom-color: #ff5edc;
    animation-delay: 0.4s;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.loaded .loader-wrapper {
    opacity: 0;
    visibility: hidden;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Bölümler için fade-in animasyonları */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

section:nth-child(1) {
    transition-delay: 0.2s;
}

section:nth-child(2) {
    transition-delay: 0.4s;
}

section:nth-child(3) {
    transition-delay: 0.6s;
}

section:nth-child(4) {
    transition-delay: 0.8s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    position: relative;
    overflow-x: hidden;
    background-color: #07132a; /* Daha koyu mavi arka plan */
}

#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
}

/* Ana içerik konteynerlerine şeffaflık ekleme ve z-index */
#mainContent {
    position: relative;
    z-index: 20;
}

/* Auth Buttons */
.auth-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 10px;
}

.auth-btn {
    background: #64ffda;
    color: #0a192f;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: #4cceac;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.admin-btn {
    background: #ff6b6b;
    color: #fff;
}

.admin-btn:hover {
    background: #e05252;
}

/* Login Form Styles */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.login-btn, .submit-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 10px;
}

.cancel-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #343a40;
}

.login-btn:hover, .submit-btn:hover {
    background: #0056b3;
}

.cancel-btn:hover {
    background: #5a6268;
}

.error-message {
    color: #dc3545;
    margin-top: 15px;
    text-align: center;
}

.success-message {
    color: #28a745;
    margin-top: 15px;
    text-align: center;
}

/* Support Button */
.support-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1001;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #64ffda;
    color: #0a192f;
    border: none;
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.3);
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    background: #4cceac;
}

/* Support Form */
.support-form {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 1001;
    width: 350px;
    background: #172a45;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.support-info {
    padding: 0 20px 10px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    margin-bottom: 15px;
}

.support-form.active {
    opacity: 1;
    transform: translateY(0);
}

.support-container {
    padding: 20px;
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
}

.admin-container {
    background: #172a45;
    width: 90%;
    max-width: 800px;
    height: 80%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border: 1px solid #64ffda;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #64ffda;
    background: #0a192f;
    border-radius: 8px 8px 0 0;
}

.admin-header h2 {
    color: #64ffda;
}

.admin-tabs {
    display: flex;
    padding: 0 20px;
    background: #0a192f;
    border-bottom: 1px solid #64ffda;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: #8892b0;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #64ffda;
    border-bottom-color: #64ffda;
}

.admin-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    background: #172a45;
    color: #ccd6f6;
}

.tab-content {
    display: none;
    height: 100%;
}

.tab-content.active {
    display: block;
}

.requests-list {
    margin-top: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    max-height: calc(100% - 50px);
    overflow-y: auto;
    padding: 10px;
}

.request-item {
    padding: 15px;
    border-bottom: 1px solid #64ffda;
    margin-bottom: 10px;
    border-radius: 4px;
    background: #0a192f;
    transition: transform 0.3s ease;
}

.request-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

.request-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.request-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.request-type {
    background: #007bff;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.request-type.öneri {
    background: #28a745;
}

.request-type.yardım {
    background: #ffc107;
    color: #333;
}

.request-type.işTeklifi {
    background: #6f42c1;
}

.request-type.diğer {
    background: #6c757d;
}

.request-date {
    color: #6c757d;
    font-size: 12px;
}

.request-contact {
    margin-bottom: 10px;
    font-size: 14px;
}

.request-contact span {
    color: #007bff;
    font-weight: 600;
}

.request-message {
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #eee;
}

.empty-message {
    text-align: center;
    color: #6c757d;
    padding: 20px;
}

/* Diğer stiller */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    background-color: rgba(10, 25, 47, 0.5);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Header ve Navigasyon */
header {
    background-color: rgba(10, 25, 47, 0.8);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #64ffda;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ccd6f6;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #64ffda;
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(10, 25, 47, 0.6);
    position: relative;
    z-index: 20;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.8);
    position: relative;
    z-index: 5;
}

.hero p {
    font-size: 1.5rem;
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.6);
    position: relative;
    z-index: 5;
}

.hero .highlight {
    color: #64ffda;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.8);
    font-weight: 700;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: #64ffda;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.8s ease-out;
}

.hero.fade-in .highlight::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    transition-delay: 0.8s;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    margin-top: 10px;
}

.typing-container {
    display: inline-block;
    min-height: 1.5em;
    position: relative;
    margin-top: 10px;
    font-size: 1.2rem;
}

.typing-text {
    color: #64ffda; /* Daha parlak renk */
    display: inline-block;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.8); /* Parlama efekti */
    font-weight: 500; /* Biraz daha kalın */
}

.typing-cursor {
    display: inline-block;
    color: #64ffda;
    font-weight: bold;
    animation: blink 1s step-end infinite;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.9); /* Daha güçlü parlama */
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Hakkımda Bölümü */
.about {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.75);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ccd6f6;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    padding-right: 30px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-media {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-image {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #64ffda;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto;
    background-color: #172a45;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.profile-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #172a45;
    z-index: 1;
}

.profile-fallback i {
    font-size: 80px;
    color: #64ffda;
    opacity: 0.8;
}

.profile-image img[src] {
    z-index: 2;
    position: relative;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
}

.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Ekstra tabletten cep telefonu boyutuna geçiş için responsif düzenlemeler */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .about-media {
        width: 100%;
    }
}

/* Yetenekler Bölümü */
.skills {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.75);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.skills h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ccd6f6;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.skill-card {
    background: #172a45;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
}

.skill-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #64ffda;
}

.skill-card h3 {
    margin-bottom: 15px;
    color: #ccd6f6;
}

/* Yeni SVG yuvarlak progress bar stilleri */
.skill-circle-svg {
    position: relative;
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0px 0px 8px rgba(100, 255, 218, 0.3));
}

.circle-bar {
    fill: none;
    stroke: #64ffda;
    stroke-width: 6;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.5, 0, 0.5, 1);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
    filter: drop-shadow(0px 0px 5px rgba(100, 255, 218, 0.6));
}

.circle-bar.animated {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.5, 0, 0.5, 1);
}

.circle-bg {
    fill: rgba(10, 25, 47, 0.6);
    stroke: rgba(100, 255, 218, 0.1);
    stroke-width: 6;
}

.circle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: bold;
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 60%;
    background: rgba(10, 25, 47, 0.6);
    border-radius: 50%;
    border: 2px solid rgba(100, 255, 218, 0.3);
}

/* İletişim Bölümü */
.contact {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.75);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Müşteri Yorumları Bölümü */
.testimonials {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.75);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.testimonials h2, .testimonials h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #ccd6f6;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background: #172a45;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
}

.testimonial-text {
    font-style: italic;
    color: #8892b0;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 50px;
    color: rgba(100, 255, 218, 0.2);
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.author-image i {
    font-size: 50px;
    color: #64ffda;
}

.author-info h4 {
    color: #ccd6f6;
    margin-bottom: 5px;
}

.author-info p {
    color: #8892b0;
    font-size: 14px;
}

.rating {
    margin-top: 5px;
}

.rating i {
    color: #ffca28;
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.prev-btn, .next-btn {
    background: transparent;
    border: none;
    color: #64ffda;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    transform: scale(1.2);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(100, 255, 218, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #64ffda;
    transform: scale(1.2);
}

/* Yorum Formu - Daha kompakt ve ayrı bir sayfa gibi tasarlanmış */
.testimonial-form-container {
    max-width: 700px;
    margin: 60px auto 0;
    background: #172a45;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transform: scale(0); /* Başlangıçta gizli */
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2000;
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.testimonial-form-container.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.form-info {
    color: #8892b0;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-form .form-group {
    margin-bottom: 20px;
}

.testimonial-form small {
    font-size: 12px;
    display: block;
    margin-top: 5px;
    color: #8892b0;
}

/* Yorum gönder düğmesi */
.add-testimonial-btn {
    position: relative;
    display: block;
    margin: 30px auto 0;
    background: #64ffda;
    color: #0a192f;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-testimonial-btn:hover {
    background: #4cceac;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

/* Overlay */
.testimonial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.8);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.testimonial-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Yorum formunu kapat düğmesi */
.close-testimonial-form {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #64ffda;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-testimonial-form:hover {
    transform: rotate(90deg);
    color: #4cceac;
}

/* Admin Panel - Yorumlar Sekmesi */
.testimonials-admin {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-section {
    background: #0a192f;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.testimonials-section h4 {
    color: #64ffda;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    padding-bottom: 10px;
}

.testimonial-item {
    background: #172a45;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.testimonial-item-name {
    font-weight: bold;
    color: #ccd6f6;
}

.testimonial-item-date {
    color: #8892b0;
    font-size: 14px;
}

.testimonial-item-position {
    color: #64ffda;
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonial-item-text {
    color: #8892b0;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-item-rating {
    display: flex;
    margin-bottom: 15px;
}

.testimonial-item-rating i {
    color: #ffca28;
    margin-right: 3px;
}

.testimonial-item-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.approve-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reject-btn, .delete-testimonial {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.approve-btn:hover {
    background: #218838;
}

.reject-btn:hover, .delete-testimonial:hover {
    background: #e05252;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.prev-btn, .next-btn {
    background: transparent;
    border: none;
    color: #64ffda;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    transform: scale(1.2);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(100, 255, 218, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #64ffda;
    transform: scale(1.2);
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ccd6f6;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #64ffda;
}

.contact-item p {
    color: #8892b0;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    color: #8892b0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #64ffda;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #0a192f;
    color: #8892b0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    overflow: hidden;
}

footer p {
    position: relative;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    animation: footerGlow 4s linear infinite;
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    nav ul li {
        margin: 8px 0;
    }
    
    .hero {
        padding-top: 60px; /* Header'a göre içeriği aşağı kaydır */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobil için düzeltilmiş header davranışı */
    header {
        top: 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    #mainContent {
        padding-top: 60px; /* Header yüksekliği kadar padding ekle */
    }
    
    .auth-buttons {
        top: 70px; /* Header'ın altına taşı */
    }
}

/* Admin Panel Styles */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: #0a192f;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 15px;
}

.stat-card h4 {
    color: #ccd6f6;
    margin-bottom: 10px;
    font-size: 1rem;
}

.stat-card p {
    color: #64ffda;
    font-size: 1.5rem;
    font-weight: bold;
}

.admin-settings {
    margin-top: 20px;
}

.settings-form {
    background: #0a192f;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.settings-form .form-group {
    margin-bottom: 20px;
}

.settings-form label {
    display: block;
    margin-bottom: 8px;
    color: #ccd6f6;
    font-weight: 500;
}

.settings-form input, .settings-form select, .settings-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #64ffda;
    background: #172a45;
    color: #ccd6f6;
}

.admin-save-btn {
    background: #64ffda;
    color: #0a192f;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.admin-save-btn:hover {
    background: #4cceac;
    transform: translateY(-2px);
}

.delete-request {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.delete-request:hover {
    background: #e05252;
    transform: translateY(-2px);
}

/* Skill icon specific colors */
.html-icon {
    color: #e34c26; /* HTML5 rengi */
}

.css-icon {
    color: #2965f1; /* CSS3 rengi */
}

.python-icon {
    color: #3776ab; /* Python rengi */
}

.java-icon {
    color: #f89820; /* Java rengi */
}

.skill-card:hover .html-icon {
    color: #e34c26;
    text-shadow: 0 0 15px rgba(227, 76, 38, 0.8);
}

.skill-card:hover .css-icon {
    color: #2965f1;
    text-shadow: 0 0 15px rgba(41, 101, 241, 0.8);
}

.skill-card:hover .python-icon {
    color: #3776ab;
    text-shadow: 0 0 15px rgba(55, 118, 171, 0.8);
}

/* Yıldız Puanlama */
.rating-selector {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.stars input {
    display: none;
}

.stars label {
    color: #8892b0;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input:checked ~ label {
    color: #ffca28;
}

/* Diğer bölümlerdeki metinleri belirginleştir */
section h2 {
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

/* İçerik Düzeni */
.content-wrapper {
    padding-top: 20px; /* Header'ın altında başlaması için */
}

/* Buton Stilleri */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: #64ffda;
    color: #0a192f;
}

.primary-btn:hover {
    background: #4cceac;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.secondary-btn {
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda;
}

.secondary-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.1);
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Dil Değiştirme ve Tema Butonu */
.language-switch a, .theme-switch button {
    background: none;
    border: none;
    color: #ccd6f6;
    cursor: pointer;
    transition: color 0.3s ease;
}

.theme-switch button {
    font-size: 16px;
    padding: 0;
}

.language-switch a:hover, .theme-switch button:hover {
    color: #64ffda;
}

/* Karanlık Mod Çevirici */
body.dark-mode {
    background-color: #07132a;
    color: #fff;
}

body.light-mode {
    background-color: #f8f9fa;
    color: #333;
}

body.light-mode .container {
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.light-mode nav ul li a {
    color: #333;
}

body.light-mode nav ul li a:hover {
    color: #0077cc;
}

body.light-mode .highlight {
    color: #0077cc;
}

body.light-mode .highlight::after {
    background-color: rgba(0, 119, 204, 0.2);
}

body.light-mode .skill-card, 
body.light-mode .project-card, 
body.light-mode .blog-card, 
body.light-mode .testimonial-content {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .skill-card:hover,
body.light-mode .project-card:hover,
body.light-mode .blog-card:hover,
body.light-mode .testimonial-content:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

body.light-mode h2, body.light-mode h3 {
    color: #0077cc;
}

body.light-mode .btn {
    background-color: #0077cc;
    color: #fff;
}

body.light-mode .primary-btn:hover {
    background-color: #005fa3;
}

body.light-mode .secondary-btn {
    background-color: transparent;
    color: #0077cc;
    border: 2px solid #0077cc;
}

body.light-mode .secondary-btn:hover {
    background-color: rgba(0, 119, 204, 0.1);
}

body.light-mode .circle-bar {
    stroke: #0077cc;
}

body.light-mode .circle-bg {
    stroke: rgba(0, 119, 204, 0.2);
}

body.light-mode .skill-card i {
    color: #0077cc;
}

body.light-mode .social-link {
    color: #333;
    background-color: #f1f1f1;
}

body.light-mode .social-link:hover {
    background-color: #0077cc;
    color: #fff;
}

body.light-mode footer {
    background-color: #333;
    color: #fff;
}

body.light-mode .chatbot-toggle-btn,
body.light-mode .support-button {
    background-color: #0077cc;
}

body.light-mode .chatbot-toggle-btn:hover,
body.light-mode .support-button:hover {
    background-color: #005fa3;
}

body.light-mode .chatbot-container,
body.light-mode .support-container,
body.light-mode .login-container {
    background-color: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

body.light-mode .chatbot-header,
body.light-mode .support-header {
    background-color: #0077cc;
    color: #fff;
}

body.light-mode .chat-message.bot {
    background-color: #f1f7ff;
    border: 1px solid #e1e8f0;
}

body.light-mode .chat-message.user {
    background-color: #e1f5fe;
    border: 1px solid #b3e5fc;
}

body.light-mode .chat-option-btn {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

body.light-mode .chat-option-btn:hover {
    background-color: #e1e8f0;
    border-color: #ccc;
}

body.light-mode .submit-btn {
    background-color: #0077cc;
}

body.light-mode .submit-btn:hover {
    background-color: #005fa3;
}

/* Aciliyet Seviyeleri İçin Renk Kodları */
.high-urgency {
    background-color: #ff4d4d;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
}

.medium-urgency {
    background-color: #ffa64d;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
}

.low-urgency {
    background-color: #4da6ff;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
}

body.light-mode .high-urgency {
    background-color: #db3737;
}

body.light-mode .medium-urgency {
    background-color: #e68a00;
}

body.light-mode .low-urgency {
    background-color: #077BD8;
}

/* Video Container */
.about-video {
    flex: 1;
    margin-top: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Sertifikalar Bölümü */
.certificates {
    margin-top: 50px;
}

.certificates h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #ccd6f6;
}

.certificates-info {
    background: #172a45;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.2);
    text-align: center;
}

.certificates-info p {
    color: #8892b0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.learning-progress {
    margin-top: 25px;
}

.learning-item {
    margin-bottom: 15px;
}

.learning-title {
    display: block;
    color: #64ffda;
    font-weight: 600;
    margin-bottom: 10px;
}

.learning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.learning-tags span {
    background: #0a192f;
    color: #64ffda;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.learning-tags span:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.1);
    border-color: #64ffda;
}

/* Projeler Bölümü */
.projects {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.75);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.projects h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ccd6f6;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.projects-note {
    background-color: rgba(100, 255, 218, 0.05);
    border-left: 3px solid #64ffda;
    padding: 10px 15px;
    margin-bottom: 30px;
    border-radius: 3px;
}

.projects-note p {
    color: #8892b0;
    font-size: 14px;
    margin: 0;
}

.projects-note i {
    color: #64ffda;
    margin-right: 5px;
}

.project-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    color: #8892b0;
    border: 1px solid #64ffda;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #172a45;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    background-color: #0a192f; /* Fotoğraf olmadığında arkaplan rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.project-img::before {
    content: attr(data-alt);
    color: #64ffda;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
    position: absolute;
}

.project-img.image-error::before {
    opacity: 1;
    z-index: 2;
    font-size: 18px;
    text-align: center;
    width: 100%;
}

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

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

.project-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 42, 69, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-links {
    opacity: 1;
}

.project-link {
    width: 40px;
    height: 40px;
    background: #64ffda;
    color: #0a192f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: #ccd6f6;
    margin-bottom: 10px;
}

.project-info p {
    color: #8892b0;
    margin-bottom: 15px;
    font-size: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tech span {
    background: #0a192f;
    color: #64ffda;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.project-disclaimer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed rgba(100, 255, 218, 0.3);
}

.project-disclaimer p {
    color: #ff6b6b;
    font-size: 12px;
    font-style: italic;
}

/* Blog Bölümü */
.blog {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.75);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.blog h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ccd6f6;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: rgba(10, 25, 47, 0.7);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

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

.blog-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-img::before {
    content: attr(data-alt);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0a192f;
    color: #64ffda;
    padding: 20px;
    font-size: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.blog-img.image-error::before {
    visibility: visible;
    opacity: 1;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #64ffda;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-info h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #e6f1ff;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-info h3 {
    color: #64ffda;
}

.blog-info p {
    color: #8892b0;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: #fff;
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #0a192f;
    color: #8892b0;
    font-size: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-more {
    text-align: center;
}

/* Chat Widget */
.chat-widget {
    margin: 20px 0;
    background: #172a45;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.chat-header {
    background: #0a192f;
    padding: 15px;
    border-bottom: 1px solid #64ffda;
}

.chat-header h3 {
    margin: 0;
    color: #64ffda;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-options {
    display: flex;
    padding: 15px;
}

.chat-option {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chat-option.whatsapp {
    background: #25D366;
}

.chat-option.chatbot {
    background: #007bff;
    border: none;
}

.chat-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Chatbot Modal */
.chatbot-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #64ffda;
    color: #0a192f;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-toggle-btn i {
    font-size: 24px;
}

.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.4);
}

.chatbot-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #0a192f;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    z-index: 999;
    border: 1px solid #64ffda;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.chatbot-modal.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

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

.chatbot-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chatbot-header {
    background: #172a45;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #64ffda;
}

.chatbot-header h3 {
    margin: 0;
    color: #64ffda;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.chatbot-header .status {
    width: 8px;
    height: 8px;
    background: #4cceac;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #0a192f;
}

.chat-message {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    animation: messageIn 0.3s forwards;
}

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

.chat-message.user {
    align-self: flex-end;
    background: #64ffda;
    color: #0a192f;
    border-bottom-right-radius: 4px;
}

.chat-message.bot {
    align-self: flex-start;
    background: #172a45;
    color: #ccd6f6;
    border-bottom-left-radius: 4px;
}

/* Öneri mesajları için özel stil */
.chat-message.bot.suggestion {
    background: rgba(100, 255, 218, 0.15);
    border: 1px dashed #64ffda;
    max-width: 90%;
}

.chat-message.bot.suggestion p {
    margin-bottom: 10px;
    color: #e6f1ff;
}

.chat-message.bot.suggestion strong {
    color: #64ffda;
    font-weight: 600;
}

/* Öneri butonları için stil */
.suggestion-buttons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.suggestion-btn {
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.suggestion-btn.yes {
    background: #64ffda;
    color: #0a192f;
}

.suggestion-btn.no {
    background: #172a45;
    color: #ccd6f6;
    border: 1px solid #64ffda;
}

.suggestion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.suggestion-btn:active {
    transform: translateY(0);
}

.suggestion-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.chatbot-input {
    display: flex;
    padding: 10px 15px;
    background: #172a45;
    border-top: 1px solid rgba(100, 255, 218, 0.2);
}

.chatbot-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    background: #0a192f;
    color: #ccd6f6;
}

.chatbot-input input:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

.chatbot-input button {
    margin-left: 10px;
    background: #64ffda;
    color: #0a192f;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: #4cceac;
    transform: translateY(-2px);
}

.bot-typing {
    display: flex;
    align-items: center;
    background: rgba(23, 42, 69, 0.8);
    border-radius: 10px;
    padding: 8px 12px;
    margin: 5px 0;
    max-width: 80%;
    align-self: flex-start;
}

.bot-typing span {
    color: #8892b0;
    font-size: 14px;
    margin-right: 8px;
}

/* Typing Dots (Bot yazıyor için) */
.bot-typing .typing-dots {
    display: flex;
    gap: 3px;
    padding: 0;
}

.bot-typing .typing-dots span {
    width: 8px; /* Boyutu büyüttük */
    height: 8px; /* Boyutu büyüttük */
    background: #64ffda; /* Daha parlak yeşil renk */
    border-radius: 50%;
    margin: 0 2px; /* Aralarında daha fazla boşluk */
    animation: typingBounce 1.4s infinite;
    box-shadow: 0 0 8px rgba(100, 255, 218, 0.8); /* Parlama efekti */
}

.bot-typing .typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.bot-typing .typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
        box-shadow: 0 0 12px rgba(100, 255, 218, 1); /* Animasyon sırasında daha güçlü parlama */
    }
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }
}

/* Footer Geliştirmeleri */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.footer-about h3, .footer-links h3, .footer-newsletter h3 {
    color: #64ffda;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-about p {
    color: #8892b0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #64ffda;
}

.footer-newsletter p {
    color: #8892b0;
    margin-bottom: 15px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    background: #172a45;
    color: #ccd6f6;
    border-radius: 4px 0 0 4px;
}

.footer-newsletter button {
    background: #64ffda;
    color: #0a192f;
    border: none;
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter button:hover {
    background: #4cceac;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #8892b0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #64ffda;
    transform: translateY(-3px);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .content-wrapper {
        padding-top: 60px; /* Mobil görünümde daha fazla padding */
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    nav ul li {
        margin: 8px 0;
    }
    
    .language-switch, .theme-switch {
        margin-top: 15px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-video {
        margin-top: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .certificate-card img {
        height: 150px;
    }
    
    .project-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .chatbot-modal {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .hero {
        padding-top: 60px; /* Header'a göre içeriği aşağı kaydır */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobil için düzeltilmiş header davranışı */
    header {
        top: 0;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    #mainContent {
        padding-top: 60px; /* Header yüksekliği kadar padding ekle */
    }
    
    .auth-buttons {
        top: 70px; /* Header'ın altına taşı */
    }
}

/* Blog Detay Sayfası */
.blog-detail {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.75);
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.blog-header {
    margin-bottom: 30px;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: #e6f1ff;
    margin: 15px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: #fff;
}

.back-link:hover i {
    transform: translateX(-5px);
}

.blog-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    background: rgba(23, 42, 69, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: #64ffda;
    margin: 25px 0 15px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    padding-bottom: 10px;
}

.blog-content h2:first-child {
    margin-top: 0;
}

.blog-content h3 {
    font-size: 1.4rem;
    color: #e6f1ff;
    margin: 20px 0 10px;
}

.blog-content p {
    color: #8892b0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.blog-content ul, .blog-content ol {
    color: #8892b0;
    margin: 15px 0;
    padding-left: 25px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-content a {
    color: #64ffda;
    text-decoration: none;
    border-bottom: 1px dashed #64ffda;
    transition: all 0.3s ease;
}

.blog-content a:hover {
    color: #fff;
    border-bottom-style: solid;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(23, 42, 69, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.blog-tags span {
    color: #e6f1ff;
    font-weight: 600;
}

.blog-tags a {
    background: #0a192f;
    color: #64ffda;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-tags a:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share span {
    color: #e6f1ff;
    font-weight: 600;
}

.share-link {
    width: 36px;
    height: 36px;
    background: #0a192f;
    color: #64ffda;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.prev-post, .next-post {
    background: rgba(23, 42, 69, 0.8);
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 0 0 48%;
}

.prev-post {
    text-align: left;
}

.next-post {
    text-align: right;
}

.prev-post span, .next-post span {
    display: block;
    color: #64ffda;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.prev-post h3, .next-post h3 {
    color: #e6f1ff;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.prev-post:hover, .next-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.prev-post:hover h3, .next-post:hover h3 {
    color: #64ffda;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .blog-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .prev-post, .next-post {
        flex: 0 0 100%;
    }
    
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h2 {
        font-size: 1.6rem;
    }
    
    .blog-content h3 {
        font-size: 1.3rem;
    }
} 

/* Chatbot Seçenek Butonları - Daha parlak */
.chat-options-container {
    margin: 15px 0;
    padding: 0 5px;
    width: 100%;
}

.chat-option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.chat-option-btn {
    background-color: rgba(23, 42, 69, 0.8);
    color: #64ffda;
    border: 1px solid #64ffda;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(100, 255, 218, 0.2);
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.chat-option-btn:hover {
    background-color: rgba(100, 255, 218, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.8);
    border-color: #7cffdf;
}

.chat-option-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(100, 255, 218, 0.3);
}

/* Yazıyor... animasyonu */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 10px;
    justify-content: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background-color: #64ffda;
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0% {
        transform: translateY(0);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-5px);
        opacity: 1;
    }
    50% {
        transform: translateY(0);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
}

/* Responsive Chatbot Seçenekler */
@media (max-width: 600px) {
    .chat-option-buttons {
        flex-direction: column;
    }
    .chat-option-btn {
        width: 100%;
    }
}

/* Mobile Responsive Styles - Enhanced for phone */
@media (max-width: 768px) {
    /* Header - Non-sticky on mobile */
    header {
        position: relative;
    }
    
    /* Navigation adjustments */
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 0;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    /* Content padding adjustment */
    .content-wrapper {
        padding-top: 0;
    }
    
    /* Section padding adjustments */
    section {
        padding: 60px 0 !important;
    }
    
    /* Skills section mobile optimization */
    .skills-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px;
        padding: 10px;
    }
    
    .skill-card {
        width: 100%;
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        margin-bottom: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .skill-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: #64ffda;
        opacity: 0.7;
    }
    
    .skill-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .skill-card i {
        font-size: 2.5rem;
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
        width: 50px;
        display: flex;
        justify-content: center;
        text-shadow: 0 0 10px rgba(100, 255, 218, 0.6);
    }
    
    .skill-card h3 {
        margin-bottom: 5px;
        font-size: 1.2rem;
        min-width: 80px;
        margin-right: 15px;
    }
    
    .skill-circle-svg {
        width: 80px;
        height: 80px;
        margin: 0;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .circle-inner {
        font-size: 16px;
        width: 70%;
        height: 70%;
    }
    
    /* Adjust SVG circles for mobile */
    .circle-bar, .circle-bg {
        stroke-width: 5;
    }
    
    /* Adjust hero section */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Other mobile adjustments */
    .container {
        padding: 20px;
        margin: 0 10px;
    }
    
    /* Project cards adjustment */
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Extreme small devices */
@media (max-width: 480px) {    
    .container {
        padding: 15px;
        margin: 0 5px;
    }
    
    .skill-card {
        padding: 15px;
    }
    
    .skill-card i {
        font-size: 2.2rem;
        margin-right: 15px;
    }
    
    .skill-circle-svg {
        width: 70px;
        height: 70px;
    }
    
    .circle-inner {
        font-size: 14px;
    }
}

/* Form için ek stiller */
.form-info {
    background-color: rgba(100, 255, 218, 0.1);
    border-radius: 5px;
    padding: 10px 15px;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #8892b0;
    border-left: 3px solid #64ffda;
}

.form-info i {
    color: #64ffda;
    margin-right: 5px;
}

.form-note {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #8892b0;
    text-align: right;
}

.required {
    color: #ff6b6b;
    font-weight: bold;
    margin-left: 2px;
}

/* Destek formu geliştirmeleri */
.support-form {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 1001;
    width: 350px;
    background: #172a45;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.support-info {
    padding: 0 20px 10px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    margin-bottom: 15px;
}

.support-form.active {
    opacity: 1;
    transform: translateY(0);
}

.support-container {
    padding: 20px;
}

/* Yorum formu stillerini düzelt */
.testimonial-form-container {
    background: #172a45;
    border: 1px solid rgba(100, 255, 218, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-overlay {
    backdrop-filter: blur(3px);
}

/* Blog kartları için stil iyileştirmeleri */
.blog-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Mobil Uyumluluk Düzenlenmesi */
@media only screen and (max-width: 768px) {
    /* Genel Yapı */
    .container {
        width: 90%;
        padding: 20px 10px;
    }
    
    /* Menü Düzenlemesi */
    header nav {
        padding: 10px 0;
    }
    
    header nav ul {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(10, 25, 47, 0.95);
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }
    
    header nav ul.active {
        right: 0;
    }
    
    header nav ul li {
        margin: 15px 0;
    }
    
    /* Hamburger Menü */
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 100;
        cursor: pointer;
        width: 30px;
        height: 25px;
    }
    
    .menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #64ffda;
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }
    
    .menu-toggle span:nth-child(1) {
        top: 0px;
    }
    
    .menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
        top: 10px;
    }
    
    .menu-toggle span:nth-child(4) {
        top: 20px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    .menu-toggle.active span:nth-child(2) {
        transform: rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
    
    .menu-toggle.active span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
    }
    
    /* Bölümlerin Düzenlenmesi */
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero .subtitle {
        font-size: 16px;
    }
    
    .hero .typing-text {
        font-size: 16px;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-text, .about-media {
        width: 100%;
    }
    
    /* Yetenekler */
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card {
        margin-bottom: 20px;
    }
    
    /* Projeler */
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        margin-bottom: 30px;
    }
    
    .project-filter {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        margin-bottom: 10px;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Yorumlar */
    .testimonials-slider {
        width: 100%;
    }
    
    .testimonial-controls {
        margin-top: 15px;
    }
    
    /* İletişim */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form, .contact-info {
        width: 100%;
    }
    
    /* Footer */
    footer {
        padding: 20px 0;
    }
    
    /* Admin Panel ve Formlar */
    .admin-container, .support-container, .chatbot-container, .login-container {
        width: 90%;
        margin: 10px auto;
        padding: 20px 15px;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    /* Chatbot ve Destek */
    .chatbot-modal, .support-form {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .chatbot-container, .support-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: none;
    }
}

@media only screen and (max-width: 480px) {
    /* Extra Small Devices */
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    /* Admin Panel */
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        margin-bottom: 15px;
    }
}

/* Menü Toggle JavaScript entegrasyonu için gereken div'i ekle */

/* Hide background animation on mobile */
@media (max-width: 768px) {
    #backgroundCanvas {
        display: none;
    }
}