/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8f05e4;
    --secondary-color: #3ea8d2;
    --accent-color: #73ece8;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #f8f9fa;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-dark: #333333;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    --shadow-light: 0 4px 20px rgba(0, 212, 255, 0.1);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    position: absolute;
    left: 0;
    z-index: 1001;
}

.logo-container {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: 1;
}

.logo-image {
    position: relative;
    width: 34px;
    height: 34px;
    z-index: 2;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    z-index: 1001;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: absolute;
    right: 20px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Izgara katmanı */
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 60% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 30% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 255, 136, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.08) 0%, transparent 30%),
        linear-gradient(90deg, transparent 98%, var(--primary-color) 100%),
        linear-gradient(0deg, transparent 98%, var(--primary-color) 100%),
        linear-gradient(45deg, transparent 99%, rgba(0, 255, 136, 0.3) 100%),
        linear-gradient(-45deg, transparent 99%, rgba(255, 107, 53, 0.2) 100%),
        /* Siber güvenlik arka plan tasarımı */
        conic-gradient(from 0deg at 50% 50%, 
            rgba(255, 0, 0, 0.08) 0deg, 
            transparent 60deg, 
            rgba(0, 212, 255, 0.06) 120deg, 
            transparent 180deg, 
            rgba(255, 255, 0, 0.04) 240deg, 
            transparent 300deg, 
            rgba(255, 0, 0, 0.08) 360deg),
        radial-gradient(ellipse 150% 80% at 25% 20%, 
            rgba(255, 0, 0, 0.1) 0%, 
            rgba(139, 0, 0, 0.05) 30%, 
            transparent 60%),
        radial-gradient(ellipse 150% 80% at 75% 80%, 
            rgba(0, 212, 255, 0.08) 0%, 
            rgba(0, 100, 139, 0.04) 30%, 
            transparent 60%),
        radial-gradient(circle 300px at 50% 50%, 
            rgba(255, 255, 0, 0.02) 0%, 
            transparent 40%),
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.95) 0%, 
            rgba(20, 0, 0, 0.8) 15%, 
            rgba(0, 10, 20, 0.7) 30%, 
            rgba(10, 0, 15, 0.8) 45%, 
            rgba(0, 5, 15, 0.75) 60%, 
            rgba(15, 0, 10, 0.8) 75%, 
            rgba(0, 0, 0, 0.95) 100%),
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            rgba(255, 0, 0, 0.02) 1px, 
            transparent 2px, 
            transparent 100px),
        repeating-linear-gradient(0deg, 
            transparent 0px, 
            rgba(0, 212, 255, 0.02) 1px, 
            transparent 2px, 
            transparent 80px);
    background-size: 
        80px 80px, 120px 120px, 60px 60px, 100px 100px, 90px 90px, 70px 70px, 
        40px 40px, 40px 40px, 30px 30px, 35px 35px,
        400px 400px,
        100% 60%,
        100% 60%,
        100% 100%,
        100% 100%,
        100px 100px,
        80px 80px;
    opacity: 0.25;
    animation: matrix 15s linear infinite;
}

@keyframes matrix {
    0% {
        background-position: 
            0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0,
            0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }
    20% {
        background-position: 
            16px 16px, 24px 24px, 12px 12px, 20px 20px, 18px 18px, 14px 14px, 8px 8px, 8px 8px, 6px 6px, 7px 7px,
            80px 80px, 0 20%, 0 80%, 0 0, 0 0, 20px 20px, 16px 16px;
        transform: rotate(0.3deg);
        filter: hue-rotate(10deg);
    }
    40% {
        background-position: 
            32px 32px, 48px 48px, 24px 24px, 40px 40px, 36px 36px, 28px 28px, 16px 16px, 16px 16px, 12px 12px, 14px 14px,
            160px 160px, 0 40%, 0 60%, 0 0, 0 0, 40px 40px, 32px 32px;
        transform: rotate(-0.2deg);
        filter: hue-rotate(5deg);
    }
    60% {
        background-position: 
            48px 48px, 72px 72px, 36px 36px, 60px 60px, 54px 54px, 42px 42px, 24px 24px, 24px 24px, 18px 18px, 21px 21px,
            240px 240px, 0 60%, 0 40%, 0 0, 0 0, 60px 60px, 48px 48px;
        transform: rotate(0.4deg);
        filter: hue-rotate(-5deg);
    }
    80% {
        background-position: 
            64px 64px, 96px 96px, 48px 48px, 80px 80px, 72px 72px, 56px 56px, 32px 32px, 32px 32px, 24px 24px, 28px 28px,
            320px 320px, 0 80%, 0 20%, 0 0, 0 0, 80px 80px, 64px 64px;
        transform: rotate(-0.3deg);
        filter: hue-rotate(15deg);
    }
    100% {
        background-position: 
            80px 80px, 120px 120px, 60px 60px, 100px 100px, 90px 90px, 70px 70px, 40px 40px, 40px 40px, 30px 30px, 35px 35px,
            400px 400px, 0 100%, 0 0%, 0 0, 0 0, 100px 100px, 80px 80px;
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(143, 5, 228, 1) 0%, rgba(143, 5, 228, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatingGlow 8s ease-in-out infinite;
    box-shadow: 
        0 0 10px rgba(143, 5, 228, 0.4),
        0 0 20px rgba(143, 5, 228, 0.2),
        0 0 30px rgba(143, 5, 228, 0.1);
    filter: blur(0.5px);
}

.float-element:nth-child(1) { 
    top: 15%; left: 8%; 
    animation-delay: 0s; 
    animation-duration: 12s;
}
.float-element:nth-child(2) { 
    top: 65%; left: 85%; 
    animation-delay: 3s; 
    animation-duration: 10s;
}
.float-element:nth-child(3) { 
    top: 85%; left: 15%; 
    animation-delay: 6s; 
    animation-duration: 14s;
}
.float-element:nth-child(4) { 
    top: 35%; left: 95%; 
    animation-delay: 1.5s; 
    animation-duration: 11s;
}
.float-element:nth-child(5) { 
    top: 25%; left: 70%; 
    animation-delay: 4.5s; 
    animation-duration: 9s;
}
.float-element:nth-child(6) { 
    top: 75%; left: 30%; 
    animation-delay: 2.2s; 
    animation-duration: 13s;
}
.float-element:nth-child(7) { 
    top: 45%; left: 5%; 
    animation-delay: 7.8s; 
    animation-duration: 8.5s;
}
.float-element:nth-child(8) { 
    top: 90%; left: 60%; 
    animation-delay: 1.1s; 
    animation-duration: 15s;
}
.float-element:nth-child(9) { 
    top: 10%; left: 45%; 
    animation-delay: 5.3s; 
    animation-duration: 11.5s;
}
.float-element:nth-child(10) { 
    top: 55%; left: 92%; 
    animation-delay: 3.7s; 
    animation-duration: 9.8s;
}
.float-element:nth-child(11) { 
    top: 30%; left: 25%; 
    animation-delay: 6.9s; 
    animation-duration: 12.3s;
}
.float-element:nth-child(12) { 
    top: 70%; left: 75%; 
    animation-delay: 2.8s; 
    animation-duration: 10.7s;
}
.float-element:nth-child(13) { 
    top: 20%; left: 35%; 
    animation-delay: 4.1s; 
    animation-duration: 11.2s;
}
.float-element:nth-child(14) { 
    top: 80%; left: 45%; 
    animation-delay: 1.6s; 
    animation-duration: 9.4s;
}
.float-element:nth-child(15) { 
    top: 15%; left: 85%; 
    animation-delay: 6.7s; 
    animation-duration: 12.8s;
}
.float-element:nth-child(16) { 
    top: 60%; left: 15%; 
    animation-delay: 3.3s; 
    animation-duration: 10.1s;
}
.float-element:nth-child(17) { 
    top: 40%; left: 65%; 
    animation-delay: 5.9s; 
    animation-duration: 13.5s;
}
.float-element:nth-child(18) { 
    top: 90%; left: 25%; 
    animation-delay: 2.4s; 
    animation-duration: 8.9s;
}
.float-element:nth-child(19) { 
    top: 25%; left: 55%; 
    animation-delay: 7.2s; 
    animation-duration: 11.8s;
}
.float-element:nth-child(20) { 
    top: 75%; left: 85%; 
    animation-delay: 1.8s; 
    animation-duration: 10.3s;
}
.float-element:nth-child(21) { 
    top: 35%; left: 25%; 
    animation-delay: 4.7s; 
    animation-duration: 12.1s;
}
.float-element:nth-child(22) { 
    top: 65%; left: 95%; 
    animation-delay: 3.1s; 
    animation-duration: 9.7s;
}
.float-element:nth-child(23) { 
    top: 10%; left: 75%; 
    animation-delay: 6.4s; 
    animation-duration: 13.2s;
}
.float-element:nth-child(24) { 
    top: 85%; left: 35%; 
    animation-delay: 2.9s; 
    animation-duration: 10.9s;
}
.float-element:nth-child(25) { 
    top: 45%; left: 5%; 
    animation-delay: 5.2s; 
    animation-duration: 11.6s;
}
.float-element:nth-child(26) { 
    top: 30%; left: 95%; 
    animation-delay: 4.8s; 
    animation-duration: 12.4s;
}
.float-element:nth-child(27) { 
    top: 70%; left: 55%; 
    animation-delay: 1.7s; 
    animation-duration: 9.2s;
}
.float-element:nth-child(28) { 
    top: 20%; left: 15%; 
    animation-delay: 7.5s; 
    animation-duration: 13.8s;
}
.float-element:nth-child(29) { 
    top: 80%; left: 75%; 
    animation-delay: 3.6s; 
    animation-duration: 10.5s;
}
.float-element:nth-child(30) { 
    top: 50%; left: 45%; 
    animation-delay: 5.8s; 
    animation-duration: 11.9s;
}

@keyframes floatingGlow {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.4; 
        box-shadow: 
            0 0 10px rgba(0, 212, 255, 0.4),
            0 0 20px rgba(0, 212, 255, 0.2),
            0 0 30px rgba(0, 212, 255, 0.1);
    }
    25% { 
        transform: translateY(-40px) translateX(30px) scale(1.3); 
        opacity: 0.6; 
        box-shadow: 
            0 0 15px rgba(0, 212, 255, 0.6),
            0 0 30px rgba(0, 212, 255, 0.3),
            0 0 45px rgba(0, 212, 255, 0.15);
    }
    50% { 
        transform: translateY(-60px) translateX(-20px) scale(0.7); 
        opacity: 0.2; 
        box-shadow: 
            0 0 5px rgba(0, 212, 255, 0.3),
            0 0 10px rgba(0, 212, 255, 0.15),
            0 0 15px rgba(0, 212, 255, 0.05);
    }
    75% { 
        transform: translateY(-30px) translateX(40px) scale(1.2); 
        opacity: 0.5; 
        box-shadow: 
            0 0 12px rgba(0, 212, 255, 0.5),
            0 0 25px rgba(0, 212, 255, 0.25),
            0 0 35px rgba(0, 212, 255, 0.1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes dotFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.2); 
        opacity: 0.9; 
    }
    50% { 
        transform: translateY(-50px) translateX(-15px) scale(0.8); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-20px) translateX(25px) scale(1.1); 
        opacity: 0.7; 
    }
}

@keyframes cardSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: dotFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(143, 5, 228, 0.5);
}

.floating-dot:nth-child(1) { 
    top: 15%; 
    left: 10%; 
    animation-delay: 0s; 
    animation-duration: 12s;
}
.floating-dot:nth-child(2) { 
    top: 25%; 
    right: 15%; 
    animation-delay: 2s; 
    animation-duration: 18s;
}
.floating-dot:nth-child(3) { 
    top: 45%; 
    left: 5%; 
    animation-delay: 4s; 
    animation-duration: 15s;
}
.floating-dot:nth-child(4) { 
    top: 35%; 
    right: 25%; 
    animation-delay: 1s; 
    animation-duration: 20s;
}
.floating-dot:nth-child(5) { 
    top: 65%; 
    left: 20%; 
    animation-delay: 3s; 
    animation-duration: 14s;
}
.floating-dot:nth-child(6) { 
    top: 55%; 
    right: 10%; 
    animation-delay: 5s; 
    animation-duration: 16s;
}
.floating-dot:nth-child(7) { 
    top: 75%; 
    left: 35%; 
    animation-delay: 2.5s; 
    animation-duration: 13s;
}
.floating-dot:nth-child(8) { 
    top: 85%; 
    right: 30%; 
    animation-delay: 1.5s; 
    animation-duration: 17s;
}
.floating-dot:nth-child(9) { 
    top: 20%; 
    left: 50%; 
    animation-delay: 3.5s; 
    animation-duration: 19s;
}
.floating-dot:nth-child(10) { 
    top: 60%; 
    right: 40%; 
    animation-delay: 4.5s; 
    animation-duration: 11s;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.hero-text-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.text-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(0, 212, 255, 0.2) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 212, 255, 0.2) 100%);
    background-size: 20px 20px;
    animation: textMatrix 12s linear infinite;
    opacity: 0.3;
}

.text-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: textParticleFloat 10s ease-in-out infinite;
}

.text-particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.text-particle:nth-child(2) { top: 30%; left: 90%; animation-delay: 2s; }
.text-particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.text-particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 1s; }
.text-particle:nth-child(5) { top: 20%; left: 70%; animation-delay: 3s; }
.text-particle:nth-child(6) { top: 70%; left: 95%; animation-delay: 5s; }

.text-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-ring {
    position: absolute;
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 50%;
    animation: textRingRotate 18s linear infinite;
}

.text-ring:nth-child(1) {
    width: 150px;
    height: 150px;
    animation-duration: 18s;
}

.text-ring:nth-child(2) {
    width: 220px;
    height: 220px;
    animation-duration: 22s;
    animation-direction: reverse;
}

.text-ring:nth-child(3) {
    width: 290px;
    height: 290px;
    animation-duration: 26s;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards 0.4s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards 0.6s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1s ease forwards 0.8s;
    position: relative;
    z-index: 10;
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cyber-sphere {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sphere-core {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    25% { 
        transform: scale(1.05); 
        opacity: 0.9; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
    75% { 
        transform: scale(1.05); 
        opacity: 0.9; 
    }
}





@keyframes textMatrix {
    0% { 
        transform: translate(0, 0) rotate(0deg);
        background-position: 0px 0px;
    }
    100% { 
        transform: translate(20px, 20px) rotate(360deg);
        background-position: 20px 20px;
    }
}

@keyframes textParticleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-10px) translateX(5px) scale(1.1); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-15px) translateX(-3px) scale(0.9); 
        opacity: 0.4; 
    }
    75% { 
        transform: translateY(-8px) translateX(8px) scale(1.05); 
        opacity: 0.8; 
    }
}

@keyframes textRingRotate {
    0% { 
        transform: rotate(0deg); 
        opacity: 0.15; 
    }
    50% { 
        opacity: 0.3; 
    }
    100% { 
        transform: rotate(360deg); 
        opacity: 0.15; 
    }
}

.sphere-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-bg);
    font-weight: 700;
    z-index: 10;
}

.sphere-logo-img {
    width: 400px;
    height: 400     px;
    margin-bottom: 4px;
    object-fit: contain;
    animation: logoPulse 4s ease-in-out infinite;
}

.sphere-logo span {
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 1px;
}

.sphere-logo span:first-of-type {
    margin-bottom: 2px;
}





.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 1px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(1.5); opacity: 0.5; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--darker-bg);
    padding: 3rem 0;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.mission-card {
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(143, 5, 228, 0.1) 0%, 
        rgba(62, 168, 210, 0.05) 50%, 
        rgba(143, 5, 228, 0.1) 100%);
    border: 1px solid rgba(143, 5, 228, 0.2);
}

.mission-card:hover {
    border-color: rgba(143, 5, 228, 0.4);
    box-shadow: 0 20px 40px rgba(143, 5, 228, 0.15);
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

/* Projects Section */
.projects {
    background: var(--dark-bg);
    overflow: hidden;
    padding: 3rem 0;
}

.projects-slider {
    position: relative;
    margin-top: 3rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    z-index: 2;
}

.projects-slider .slider-container {
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-right: 0;
    padding: 20px 0;
}



.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.projects-slider .slider-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 5vw;
    width: max-content;
    align-items: stretch;
}

.projects-slider .slider-track .project-card {
    min-width: 350px;
    flex: 0 0 350px;
    margin: 0;
    position: relative;
    box-sizing: border-box;
    transition: all 0.4s ease;
    scroll-snap-align: center;
    height: 450px;
}

.projects-slider .slider-track .project-card.active {
    opacity: 1;
    transform: scale(1);
}

.projects-slider .slider-track .project-card.inactive {
    opacity: 0.4;
    transform: scale(0.95);
}

/* Blog Grid Styles - Grid + More Design */
.blog-slider {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.blog-slider .slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-right: 0;
}



.blog-slider .slider-container::-webkit-scrollbar {
    display: none;
}

.blog-slider .slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    width: fit-content;
    padding: 1rem 5vw;
}

.blog-slider .slider-track .blog-article {
    min-width: 350px;
    flex: 0 0 350px;
    margin: 0;
    position: relative;
    box-sizing: border-box;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 450px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

/* Blog kartları için aktif/inaktif durumu kaldırıldı - tüm kartlar aynı görünürlükte */

.blog-slider .slider-track .blog-article::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 230px;
    height: 230px;
    background-image: url('white-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-slider .slider-track .article-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-slider .slider-track .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-slider .slider-track .blog-article:hover .article-image img {
    transform: scale(1.1);
}

.blog-slider .slider-track .blog-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.blog-slider .slider-track .blog-article:hover::after {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1);
}

/* Blog Slider Article Content Styles */
.blog-slider .slider-track .article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.blog-slider .slider-track .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-slider .slider-track .article-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.blog-slider .slider-track .article-date {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.7;
    position: relative;
}

.blog-slider .slider-track h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-left: 0;
}

.blog-slider .slider-track h3::before {
    display: none;
}

.blog-slider .slider-track p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-light);
}

.blog-slider .slider-track .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.8rem;
    max-height: 50px;
    overflow: hidden;
}

.blog-slider .slider-track .article-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.blog-slider .slider-track .read-more {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
}

/* Loading and error states */
.loading, .no-blogs, .no-projects {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loading {
    color: var(--primary-color);
}

.no-blogs {
    color: var(--text-muted);
}

.blog-slider .slider-track .read-more {
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 0.8;
    flex-shrink: 0;
    padding: 0.3rem 0;
}

.blog-slider .slider-track .read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    opacity: 1;
}

.blog-slider .slider-track .read-more i {
    transition: transform 0.3s ease;
}

.blog-slider .slider-track .read-more:hover i {
    transform: translateX(3px);
}

.blog-slider .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.blog-slider .slider-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-slider .slider-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.blog-slider .slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.blog-slider .slider-dots {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.blog-slider .slider-dot,
.blog-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-slider .slider-dot.active,
.blog-slider .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.blog-grid .blog-article {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 450px;
    display: flex;
    flex-direction: column;
}

.blog-grid .blog-article:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.blog-grid .article-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-grid .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-grid .blog-article:hover .article-image img {
    transform: scale(1.1);
}

.blog-grid .article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.blog-grid h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-grid p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-grid .article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.8rem;
    max-height: 50px;
    overflow: hidden;
}

.blog-grid .article-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.blog-grid .read-more {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 0.8;
    flex-shrink: 0;
    padding: 0.3rem 0;
}

.blog-grid .read-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    opacity: 1;
}

.blog-grid .read-more i {
    transition: transform 0.3s ease;
}

.blog-grid .read-more:hover i {
    transform: translateX(3px);
}

.blog-article {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 300px;
    padding: 1.5rem;
}

.blog-article::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background-image: url('white-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(143, 5, 228, 0.05) 0%, 
        rgba(0, 212, 255, 0.03) 50%, 
        rgba(143, 5, 228, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.blog-article:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.blog-article:hover::after {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1);
}

.blog-article:hover::before {
    opacity: 1;
}

/* .article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
} */

/* .category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.category-badge i {
    font-size: 0.8rem;
    color: var(--secondary-color);
} */

/* Loading and error states */
.loading, .no-blogs {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loading {
    color: var(--primary-color);
    font-weight: 500;
}

.loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 12px;
}

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



.no-blogs {
    color: var(--text-muted);
    font-style: italic;
}

.category-badge:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2) 0%, 
        transparent 50%, 
        rgba(255, 107, 53, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.blog-article:hover .article-image::after {
    opacity: 1;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) contrast(1.2) saturate(1.1);
}

.blog-article:hover .article-image img {
    transform: scale(1.2) rotate(2deg);
    filter: brightness(1.2) contrast(1.3) saturate(1.3);
}

.article-content {
    padding: 0;
    position: relative;
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    white-space: nowrap;
    max-width: 150px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.article-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.blog-article:hover .article-category::before {
    left: 100%;
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.7;
    position: relative;
}

.article-date::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.blog-article h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.blog-article:hover h3::before {
    transform: scaleY(1);
}

.blog-article p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 400;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.article-tags span {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    position: relative;
    overflow: hidden;
}

.article-tags span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

.article-tags span:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.article-tags span:hover::before {
    left: 100%;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    padding: 0.8rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: width 0.4s ease;
}

.read-more:hover {
    gap: 1.2rem;
    color: var(--primary-color);
}

.read-more:hover::before {
    width: 100%;
}

.read-more i {
    transition: transform 0.4s ease;
    font-size: 0.8rem;
}

.read-more:hover i {
    transform: translateX(8px) scale(1.2);
}

.blog-actions {
    text-align: center;
    margin-top: 25px;
}

.blog-actions .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(143, 5, 228, 0.6);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(143, 5, 228, 0.2);
    backdrop-filter: blur(10px);
    text-transform: none;
    letter-spacing: normal;
    clip-path: none;
}

.blog-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.blog-actions .btn:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    box-shadow: 0 8px 25px rgba(143, 5, 228, 0.4);
}

.blog-actions .btn:hover::before {
    left: 100%;
}

.blog-actions .btn:active {
    transform: translateY(-1px) scale(0.98);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    box-shadow: 0 4px 15px rgba(143, 5, 228, 0.3);
}

.slider-track .project-card::after,
.slider-track .blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1rem;
    width: 1rem;
    height: 100%;
    background: transparent;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.slider-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.dot:hover {
    background: rgba(0, 212, 255, 0.5);
}

/* Project Cards - Removed old styles to avoid conflicts */

/* Blog Section */
.blog {
    background: var(--darker-bg);
    overflow: hidden;
    padding: 3rem 0;
}



.blog-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlide 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 15px;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 17px;
    filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.blog-card:hover::before {
    opacity: 0.1;
}

.blog-card:hover::after {
    opacity: 0.3;
}

.blog-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
    transition: all 0.5s ease;
    position: relative;
}

.blog-card:hover .blog-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-details span {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-details span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blog-details span:hover::before {
    left: 100%;
}

.blog-details span:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}



.footer-logo i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-bg);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    opacity: 0.7;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-1px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        right: auto;
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .cyber-sphere {
        width: 300px;
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Blog kartları responsive */
    .blog-article {
        padding: 1rem;
        min-height: 250px;
    }
    
    .blog-article h3 {
        font-size: 1.2rem;
        padding-left: 15px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .article-category {
        max-width: 120px;
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
    
    .article-date {
        font-size: 0.75rem;
    }
    
    .article-tags {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .article-tags span {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Blog slider responsive */
    .blog-slider .slider-track .blog-article {
        min-width: 280px;
        flex: 0 0 280px;
        height: 400px;
    }
    
    .blog-slider .slider-track .article-content {
        padding: 1rem;
    }
    
    .blog-slider .slider-track h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .blog-slider .slider-track p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .cyber-sphere {
        width: 250px;
        height: 250px;
    }
    
    /* Blog kartları küçük ekranlar */
    .blog-article {
        padding: 0.8rem;
        min-height: 200px;
    }
    
    .blog-article h3 {
        font-size: 1.1rem;
        padding-left: 10px;
        margin-bottom: 1rem;
    }
    
    .article-meta {
        margin-bottom: 1rem;
    }
    
    .article-category {
        max-width: 100px;
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
    
    .article-date {
        font-size: 0.7rem;
    }
    
    .blog-article p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .article-tags span {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .read-more {
        font-size: 0.8rem;
    }
    
    /* Blog kartları responsive logo */
    .blog-article::after {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
    
    .blog-article:hover::after {
        opacity: 0.04;
    }
    
    /* Blog slider responsive */
    .blog-slider .slider-track .blog-article {
        min-width: 280px;
        flex: 0 0 280px;
        height: 350px;
    }
    
    .blog-slider .slider-track .blog-article::after {
        width: 50px;
        height: 50px;
        opacity: 0;
    }
    
    .blog-slider .slider-track .blog-article:hover::after {
        opacity: 0.06;
    }
    
    .blog-slider .slider-track .article-content {
        padding: 1rem;
    }
    
    .blog-slider .slider-track .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-slider .slider-track .article-category {
        max-width: 100px;
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
    }
    
    .blog-slider .slider-track h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .blog-slider .slider-track p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    /* Dot navigation responsive */
    .blog-slider .slider-dots {
        gap: 0.25rem;
        max-width: 90%;
    }
    
    .blog-slider .slider-dot,
    .blog-slider .dot {
        width: 8px;
        height: 8px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.team-member,
.about-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Project Card Design */
.project-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 450px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 230px;
    height: 230px;
    background-image: url('white-transparent.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.project-card:hover::after {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1);
}

/* Project Card Header */
.project-header {
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(139, 69, 190, 0.12) 0%, 
        rgba(59, 130, 246, 0.08) 50%, 
        rgba(139, 69, 190, 0.12) 100%);
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    gap: 1rem;
}

/* GitHub Icon in Project Cards */
.project-header .fab.fa-github {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    margin-right: 0.5rem;
}

.project-card:hover .project-header .fab.fa-github {
    transform: scale(1.1);
    color: var(--secondary-color);
}





/* Project Header Title */
.project-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

/* Project cards - old styles removed to avoid conflicts */

/* Project Card Content */
.project-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.project-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

/* Enhanced Project Tags */
.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0;
}

.project-details span {
    background: linear-gradient(135deg, 
        rgba(139, 69, 190, 0.15), 
        rgba(59, 130, 246, 0.1));
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(139, 69, 190, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(139, 69, 190, 0.1);
}

.project-details span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.project-details span:hover {
    background: linear-gradient(135deg, #8B45BE, #3B82F6);
    color: white;
    border-color: #8B45BE;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 69, 190, 0.4);
}

.project-details span:hover::before {
    left: 100%;
}

/* Project links removed */

/* Project stats removed */

/* Enhanced Card Hover Effects */
.project-card:hover .project-content {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.03));
}

.project-card:hover .project-details span {
    border-color: rgba(0, 212, 255, 0.4);
}

.project-card:hover .project-links {
    border-top-color: rgba(0, 212, 255, 0.2);
}

/* Project Card Background Image */
.project-card {
    background: linear-gradient(135deg, 
        rgba(139, 69, 190, 0.1) 0%, 
        rgba(59, 130, 246, 0.08) 50%, 
        rgba(139, 69, 190, 0.1) 100%);
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(139, 69, 190, 0.2);
    backdrop-filter: blur(25px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlide 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 20px 40px rgba(139, 69, 190, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }

/* Project card background logo removed */

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.03) 0%, 
        rgba(0, 255, 136, 0.02) 50%, 
        rgba(255, 107, 53, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    border-radius: 24px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

/* Reports Section */
.reports {
    padding: 3rem 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.reports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(143, 5, 228, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(143, 5, 228, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.reports .container {
    position: relative;
    z-index: 2;
}

/* Coming Soon Overlay for Reports - Single overlay for cards and button */
.reports-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px); /* Increased height to cover more area */
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.5) 0%, 
            rgba(0, 0, 0, 0.6) 50%, 
            rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(6px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: 12px;
}

/* Coming Soon Sign */
.reports-grid::after {
    content: 'YAKINDA...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 15px rgba(143, 5, 228, 0.6);
    z-index: 20;
    pointer-events: none;
    letter-spacing: 3px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: textTyping 3s steps(9) infinite;
}



@keyframes textTyping {
    0% {
        content: '';
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    8% {
        content: 'Y';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    16% {
        content: 'YA';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    24% {
        content: 'YAK';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    32% {
        content: 'YAKI';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    40% {
        content: 'YAKIN';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    48% {
        content: 'YAKIND';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    56% {
        content: 'YAKINDA';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    64% {
        content: 'YAKINDA.';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    72% {
        content: 'YAKINDA..';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    80% {
        content: 'YAKINDA...';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    87% {
        content: 'YAKINDA...';
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.02);
    }
    93% {
        content: 'YAKINDA...';
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
    97% {
        content: 'YAKINDA...';
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.02);
    }
    100% {
        content: 'YAKINDA...';
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
}



.reports-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    position: relative;
}

.report-card {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    min-height: 45px;
    display: flex;
    align-items: center;
    box-shadow: none;
    border-left: 4px solid var(--primary-color);
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(143, 5, 228, 0.05) 0%, 
        transparent 30%, 
        rgba(143, 5, 228, 0.05) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.report-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(143, 5, 228, 0.2) 100%);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: -1;
}

.report-card:hover {
    transform: translateX(3px) translateY(-2px);
    border-left-color: var(--secondary-color);
    border-left-width: 5px;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 
        0 0 20px rgba(143, 5, 228, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(143, 5, 228, 0.1);
}

.report-card:hover::before {
    transform: translateX(100%);
}

.report-icon {
    position: relative;
    width: 35px;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.report-card:hover .report-icon {
    width: 40px;
    margin-left: 15px;
}

.report-icon i {
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-shadow: 0 0 6px rgba(143, 5, 228, 0.3);
}

.report-card:hover .report-icon i {
    transform: scale(1.1);
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.report-content {
    padding: 10px 15px 10px 8px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.report-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    position: relative;
    text-align: left;
}

.report-content h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--primary-color);
    border-radius: 1px;
}

.report-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.8rem;
    text-align: left;
}

.report-meta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 0;
    font-size: 0.8rem;
    padding: 8px 0;
    border-top: 1px solid rgba(143, 5, 228, 0.4);
}

.report-date,
.report-pages {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    text-shadow: 0 0 6px rgba(143, 5, 228, 0.6);
}

.report-date::before {
    content: '📅';
    font-size: 1rem;
}

.report-pages::before {
    content: '📄';
    font-size: 1rem;
}

.reports-actions {
    text-align: center;
    margin-top: 25px;
}

.reports-actions .btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(143, 5, 228, 0.6);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(143, 5, 228, 0.2);
    backdrop-filter: blur(10px);
}

.reports-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.reports-actions .btn:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    box-shadow: 0 8px 25px rgba(143, 5, 228, 0.4);
}

.reports-actions .btn:hover::before {
    left: 100%;
}

.reports-actions .btn:active {
    transform: translateY(-1px) scale(0.98);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(143, 5, 228, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    box-shadow: 0 4px 15px rgba(143, 5, 228, 0.3);
}

.report-card .btn-secondary {
    background: transparent;
    border: 1px solid rgba(143, 5, 228, 0.3);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.report-card .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(143, 5, 228, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.report-card .btn-secondary:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
    border-color: var(--primary-color);
    background: rgba(143, 5, 228, 0.05);
    box-shadow: 0 2px 6px rgba(143, 5, 228, 0.15);
}

.report-card .btn-secondary:hover::before {
    width: 100%;
}

/* Responsive Design for Reports */
@media (max-width: 768px) {
    .reports {
        padding: 80px 0 60px;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .report-card {
        padding: 25px;
    }
    
    .report-content h3 {
        font-size: 1.2rem;
    }
    
    .report-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Logos Section */
.logos-section {
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
    min-height: 120px;
}

.partner-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* YILDIZ logosu için özel stil - sibervatan logosu ile aynı boyutta */
.partner-logo[src*="YILDIZ.png"] {
    height: 250px;
    width: auto;
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Design for Logos */
@media (max-width: 768px) {
    .logos-section {
        padding: 30px 0;
    }
    
    .logos-container {
        gap: 50px;
    }
    
    .partner-logo {
        height: 30px;
        width: auto;
    }
    
    /* YILDIZ logosu için özel stil - mobil */
    .partner-logo[src*="YILDIZ.png"] {
        height: 30px;
        width: auto;
    }
}


