:root {
    --primary-color: #4F46E5;
    --secondary-color: #7C3AED;
    --dark-color: #111827;
    --light-color: #F9FAFB;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}

/* Animated Shapes */
.shape {
    position: absolute;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: floatAnimation 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    animation-delay: 6s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 10%;
    animation-delay: 8s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Code Animation */
.code-animation {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    perspective: 1000px;
}

.code-window {
    width: 380px;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotateY(-10deg) rotateX(5deg);
    animation: windowFloat 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
    padding: 12px 20px;
    background: rgba(40, 40, 40, 0.9);
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.window-controls span:nth-child(1) { background: #ff5f57; }
.window-controls span:nth-child(2) { background: #febc2e; }
.window-controls span:nth-child(3) { background: #28c840; }

.window-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: monospace;
}

.code-content {
    padding: 20px;
    position: relative;
}

.code-line {
    color: #e6e6e6;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 5px 0;
    opacity: 0;
    animation: typeLine 0.1s ease forwards;
}

.code-dot {
    color: rgba(255, 255, 255, 0.2);
    margin-right: 8px;
}

.cursor {
    position: absolute;
    width: 2px;
    height: 18px;
    background: var(--primary-color);
    animation: blink 1s infinite;
}

@keyframes windowFloat {
    0%, 100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-8deg) rotateX(3deg) translateY(-10px);
    }
}

@keyframes typeLine {
    from {
        transform: translateX(-10px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Delay each line */
.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }
.code-line:nth-child(8) { animation-delay: 0.8s; }
.code-line:nth-child(9) { animation-delay: 0.9s; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .code-window {
        transform: scale(0.9) rotateY(-10deg) rotateX(5deg);
    }
}

@media (max-width: 992px) {
    .code-animation {
        display: none;
    }
}

/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Tech Stack Styles */
.tech-stack {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.tech-icons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
}

.tech-icons i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tech-icons i:hover {
    color: white;
    transform: translateY(-2px);
}

.tech-divider {
    height: 15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.3rem;
}

/* Icon specific colors */
.fa-windows:hover { color: #00A4EF !important; }
.fa-python:hover { color: #FFD43B !important; }
.fa-php:hover { color: #777BB3 !important; }
.fa-database:hover { color: #00618A !important; }
.fa-hashtag:hover { color: #68217A !important; }
.fa-git-alt:hover { color: #F05032 !important; }
.fa-github:hover { color: #ffffff !important; }

/* Navbar */
.navbar {
    background: rgba(17, 24, 39, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Projects Section Styles */
.projects-section {
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

/* Bootstrap Grid Equal Heights */
.projects-section .row {
    display: flex;
    flex-wrap: wrap;
}

.projects-section .col-md-4 {
    display: flex;
    margin-bottom: 2rem;
}

.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    position: relative;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, 
.filter-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Project Card Styles */
.project-card {
    position: relative;
    background: rgba(26, 27, 38, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(114, 137, 218, 0.15) 0%,
        rgba(114, 137, 218, 0) 100%
    );
    z-index: 0;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1;
    margin: -18px -18px 15px -18px;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 27, 38, 0) 0%,
        rgba(26, 27, 38, 0.95) 100%
    );
    opacity: 0.7;
    transition: all 0.3s ease;
}

.project-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-content {
    position: relative;
    z-index: 1;
    padding: 5px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.project-title {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.project-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 46, 58, 0.95);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.project-category i {
    color: #5026b1; /* Mor renk */
    font-size: 14px;
    filter: drop-shadow(0 2px 4px rgba(58, 19, 148, 0.3));
}

.project-category:hover {
    background: rgba(58, 19, 148, 1);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.project-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
    flex: 1;
}

.project-link {
    color: #7289da;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(114, 137, 218, 0.15);
    gap: 8px;
    align-self: flex-start;
    flex-shrink: 0;
}

.project-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.project-link:hover {
    background: rgba(114, 137, 218, 0.25);
    color: #7289da;
    transform: translateX(5px);
}

.project-link:hover i {
    transform: translateX(3px);
}

/* Hover Effects */
.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(114, 137, 218, 0.4);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card:hover .project-image::after {
    opacity: 0.85;
    background: linear-gradient(
        180deg,
        rgba(26, 27, 38, 0) 0%,
        rgba(26, 27, 38, 1) 100%
    );
}

/* Glow effect on hover */
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(
        45deg,
        rgba(114, 137, 218, 0.5) 0%,
        rgba(114, 137, 218, 0) 100%
    );
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.project-card:hover::after {
    opacity: 0.15;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--dark-color);
        color: var(--light-color);
    }
    
    .project-card {
        background: rgba(17, 24, 39, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .card-body {
        color: var(--light-color);
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Logo Styles */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.text-gradient::after {
    content: '.Dev';
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
    filter: blur(8px);
    opacity: 0.5;
    background: var(--gradient);
    -webkit-background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: blur(8px);
        opacity: 0.5;
    }
    to {
        filter: blur(12px);
        opacity: 0.8;
    }
}

/* Navbar hover effect update */
.navbar-brand {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-brand:hover .text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section Styles */
.about-section {
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.about-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Skills Styles */
.skills-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.skill-category-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skill-category-title i {
    color: var(--primary-color);
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    width: 80px;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--gradient);
    transform: translateY(-2px);
}

/* Code Stats */
.code-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animation for skill bars */
.skill-progress {
    animation: progressAnimation 1.5s ease-out forwards;
}

@keyframes progressAnimation {
    from { width: 0; }
}

/* Contact Section Styles */
.contact-section {
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p, 
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        padding: 2rem;
    }
}

/* Footer Yeni Stiller */
.footer-section {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.footer-logo:hover {
    color: white;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about {
    margin: 1.5rem 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-5px);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.tech-item:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-right: 15px;
    margin-top: 4px;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    padding-bottom: 20px;
}

.copyright {
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 767px) {
    .footer-title {
        margin-top: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

/* Project Filter Animation */
[data-category] {
    transition: all 0.4s ease-out;
    opacity: 1;
    transform: translateY(0);
}

.no-projects-message {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 2rem 0;
    transition: all 0.4s ease-out;
    opacity: 1;
    transform: translateY(0);
    display: none;
}

.no-projects-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-projects-message h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-projects-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Project Details Section Styles */
.project-details-section {
    background: var(--dark-color);
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.project-description {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
}

.project-description::-webkit-scrollbar {
    width: 6px;
}

.project-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.project-description::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.project-main-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.project-image-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-meta {
    margin-bottom: 30px;
}

.project-meta .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.project-meta .meta-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.project-meta .meta-item span {
    margin-right: 10px;
}

.project-meta .meta-item strong {
    color: white;
}

.project-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-actions .btn {
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-actions .btn-gradient {
    background: var(--gradient);
    border: none;
    color: white;
}

.project-actions .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.project-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-description p {
    margin-bottom: 20px;
}

.project-description h3, 
.project-description h4 {
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
}

.project-description ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.project-description ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .project-info-card {
        padding: 20px;
        margin-top: 20px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-description {
        font-size: 1rem;
    }
}

/* Solid Navbar Style */
.navbar-solid {
    background: rgba(17, 24, 39, 0.9) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-solid .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-solid .nav-link:hover,
.navbar-solid .nav-link.active {
    color: rgba(255, 255, 255, 1) !important;
}

/* Blog Section Styles */
.blog-section {
    background: var(--dark-color);
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

/* Blog Grid Equal Heights */
.blog-section .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-section .col-md-4,
.blog-section .col-lg-4 {
    display: flex;
    margin-bottom: 2rem;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(79, 70, 229, 0.3);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-category span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* En fazla 3 satır göster */
    -webkit-box-orient: vertical;
    flex: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
    flex-shrink: 0;
}

.read-more:hover {
    background: var(--gradient);
    color: white;
    transform: translateX(5px);
}

/* Empty Blog State */
.empty-blog {
    padding: 80px 0;
    text-align: center;
}

.empty-blog i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.empty-blog h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.empty-blog p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Blog Details Styles */
.blog-details-section {
    background: var(--dark-color);
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.blog-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto;
}

.blog-category-badge {
    display: inline-block;
    background: var(--gradient);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-category-badge span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.meta-item i {
    color: var(--primary-color);
}

.blog-main-image {
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.blog-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2,
.blog-content h3 {
    color: white;
    margin: 2rem 0 1rem;
}

.blog-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-content-wrapper {
        padding: 1.5rem;
    }

    .blog-content {
        font-size: 1rem;
    }
    
    .blog-main-image {
        height: 300px;
    }
}