/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    outline: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobilde üst navbar için cam efekti */
@media (max-width: 768px) {
    .header {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        outline: none;
        box-shadow: none;
    }
    
    .header.scrolled {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    }
}

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        border: none;
        outline: none;
    }
    
    @media (max-width: 768px) {
        .nav-container {
            justify-content: center;
        }
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Mobilde hero section için ekstra padding */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 120px;
        min-height: auto;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 10%;
    animation-delay: 1s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #1e3a8a;
}


.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e3a8a;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.highlight {
    color: #3b82f6;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.hero-description {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out 1s forwards;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out 1.5s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary i {
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-secondary i {
    color: #3b82f6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Monitor 3D Styles */
.monitor-3d {
    position: relative;
    width: 400px;
    height: 280px;
    transform-style: preserve-3d;
    transform: rotateX(-8deg) rotateY(8deg);
    transition: transform 0.3s ease-out;
    cursor: grab;
}

.monitor-3d:hover {
    transform: rotateX(-5deg) rotateY(5deg);
}

.monitor-screen {
    width: 400px;
    height: 250px;
    background: #2a2a2a;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 4px solid #1a1a1a;
}


.monitor-content {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.monitor-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

/* Slide 1 - Website Preview */
.slide-website {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.slide-logo {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
}

.slide-nav {
    display: flex;
    gap: 12px;
}

.slide-nav a {
    font-size: 8px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.slide-nav a:hover {
    color: #3b82f6;
}

.slide-hero {
    text-align: center;
    margin-bottom: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-hero h2 {
    font-size: 12px;
    color: #1e3a8a;
    margin-bottom: 6px;
    line-height: 1.2;
    font-weight: 600;
}

.slide-hero p {
    font-size: 8px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.slide-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.slide-buttons button {
    padding: 4px 12px;
    border: none;
    border-radius: 4px;
    font-size: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slide-buttons .btn-primary {
    background: #1e3a8a;
    color: white;
}

.slide-buttons .btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-1px);
}

.slide-buttons .btn-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.slide-buttons .btn-secondary:hover {
    background: #e2e8f0;
}

/* Services Preview */
.slide-services {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: auto;
    padding: 8px 0;
    border-top: 1px solid #e2e8f0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #64748b;
    transition: color 0.3s ease;
}

.service-item:hover {
    color: #3b82f6;
}

.service-item i {
    font-size: 12px;
}

.service-item span {
    font-size: 6px;
    font-weight: 500;
}

/* Slide 2 - Logo Display */
.slide-logo-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
}

.slide-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.slide-logo-display h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.slide-logo-display p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

/* Slide 3 - Compact Statistics Display */
.slide-stats-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 8px;
}

.stats-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.stats-row {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 140px;
}

.stat-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 32px;
    justify-content: center;
}

.stat-compact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-num {
    font-size: 12px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-text {
    font-size: 6px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Slide 4 - SEO Optimization */
.slide-seo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 6px;
    box-sizing: border-box;
}

.seo-header h3 {
    font-size: 10px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.seo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    width: 100%;
    max-width: 120px;
}

.seo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 22px;
    justify-content: center;
    transition: all 0.3s ease;
}

.seo-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.seo-item i {
    font-size: 8px;
    color: white;
    margin-bottom: 1px;
}

.seo-item span {
    font-size: 5px;
    font-weight: 500;
    color: white;
    text-align: center;
    line-height: 1;
}

/* Slide 5 - Admin Panel */
.slide-admin {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 6px;
    box-sizing: border-box;
}

.admin-header h3 {
    font-size: 10px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.admin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    width: 100%;
    max-width: 120px;
}

.admin-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-height: 22px;
    justify-content: center;
    transition: all 0.3s ease;
}

.admin-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.admin-item i {
    font-size: 8px;
    color: white;
    margin-bottom: 1px;
}

.admin-item span {
    font-size: 5px;
    font-weight: 500;
    color: white;
    text-align: center;
    line-height: 1;
}




.hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Mobilde scroll indicator'ı daha aşağı taşı */
@media (max-width: 768px) {
    .hero-scroll {
        bottom: 20px;
    }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(30, 58, 138, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
    color: #3b82f6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Masaüstü görünümü - Hizmetler 4'lü yan yana */
@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
    border-color: #3b82f6;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic {
    position: relative;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.about-graphic i {
    font-size: 3rem;
    color: white;
    position: absolute;
    animation: pulse 2s ease-in-out infinite;
}

.about-graphic i:nth-child(1) {
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.about-graphic i:nth-child(2) {
    bottom: 15%;
    left: 20%;
    animation-delay: 0.7s;
}

.about-graphic i:nth-child(3) {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.4s;
}

.about-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 15px;
}

.about-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: white;
    text-align: center;
}

.about-slogan span:first-child {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.about-slogan span:last-child {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.projects-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

/* Masaüstü görünümü için 2'li sıralama */
@media (min-width: 769px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.portfolio-stats {
    margin-top: 80px;
    padding: 60px 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    margin: 5px 0 0 0;
    font-weight: 500;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
}

.project-card.featured {
    border: 2px solid #3b82f6;
    position: relative;
}

.project-card.featured::before {
    content: 'Öne Çıkan';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image i {
    font-size: 4rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.project-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.project-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: #f1f5f9;
    color: #1e3a8a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.project-platforms {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.platform-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-tag.web {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.platform-tag.mobile {
    background: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #ce93d8;
}

.platform-tag.automation {
    background: #e8f5e8;
    color: #388e3c;
    border: 1px solid #c8e6c9;
}

.project-status {
    display: flex;
    justify-content: flex-start;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-badge.coming-soon {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.status-badge.completed {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.contact-details p {
    color: #64748b;
    font-size: 1rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-link:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Success Message */
.success-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 500;
    animation: slideInUp 0.5s ease-out;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.success-message i {
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.success-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.success-main {
    font-weight: 600;
    font-size: 1rem;
}

.success-sub {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer .logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.whatsapp-social:hover {
    background: #25d366 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

/* Drawer Styles */
.drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.drawer.open {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.drawer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

.drawer-nav {
    padding: 20px 0;
}

.drawer-nav-item {
    display: block;
    padding: 15px 20px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.drawer-nav-item:hover {
    background: #f8fafc;
    color: #1e3a8a;
    border-left-color: #3b82f6;
}

.drawer-nav-item.active {
    background: #f1f5f9;
    color: #1e3a8a;
    border-left-color: #3b82f6;
}

/* Mobile Navigation Bar */
.mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a8a;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 60px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 8px 4px;
    border-radius: 8px;
    min-width: 50px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.mobile-nav-item i {
    font-size: 18px;
}

.mobile-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-navbar {
        display: flex;
    }
    
    body {
        padding-bottom: 60px;
    }
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-weight: 500;
        letter-spacing: -0.01em;
        animation: fadeInUp 1s ease-out 0.3s forwards;
    }
    
    
    .hero-graphic {
        width: 250px;
        height: 250px;
    }
    
    .monitor-3d {
        width: 320px;
        height: 220px;
    }
    
    .monitor-screen {
        width: 320px;
        height: 180px;
    }
    
    
    .slide-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .slide-logo-display h3 {
        font-size: 18px;
    }
    
    .slide-logo-display p {
        font-size: 10px;
    }
    
    .stats-title {
        font-size: 9px;
    }
    
    .stats-row {
        gap: 6px;
        max-width: 120px;
    }
    
    .stat-compact {
        padding: 4px 3px;
        min-height: 28px;
    }
    
    .stat-num {
        font-size: 10px;
    }
    
    .stat-text {
        font-size: 5px;
    }
    
    .seo-header h3,
    .admin-header h3 {
        font-size: 8px;
    }
    
    .seo-content,
    .admin-content {
        gap: 6px;
        max-width: 100px;
        width: 100%;
    }
    
    .seo-item,
    .admin-item {
        padding: 3px;
        min-height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .seo-item i,
    .admin-item i {
        font-size: 9px;
    }
    
    .seo-item span,
    .admin-item span {
        font-size: 5px;
        text-align: center;
        line-height: 1.1;
    }
    
    /* Mobilde projeler tekli */
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Mobilde hizmetler tekli */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

/* Mobil görünümü için tekli sıralama */
@media (max-width: 480px) {
    .stats-row {
        max-width: 100px;
        gap: 4px;
    }
    
    .stat-compact {
        padding: 3px 2px;
        min-height: 24px;
    }
    
    .stat-num {
        font-size: 9px;
    }
    
    .stat-text {
        font-size: 4px;
    }
    
    .seo-content,
    .admin-content {
        max-width: 90px;
        gap: 4px;
    }
    
    .seo-item,
    .admin-item {
        padding: 2px;
        min-height: 20px;
    }
    
    .seo-item i,
    .admin-item i {
        font-size: 8px;
    }
    
    .seo-item span,
    .admin-item span {
        font-size: 4px;
    }
}
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .about-text {
        order: 1;
        padding: 0 20px;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-description {
        margin-bottom: 30px;
    }
    
    .about-image {
        order: 2;
        margin-top: 120px;
    }
    
    .about-graphic {
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .success-message {
        padding: 15px 16px;
        gap: 10px;
    }
    
    .success-main {
        font-size: 0.9rem;
    }
    
    .success-sub {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .hero-graphic i {
        font-size: 2.5rem;
    }
    
    .about-graphic {
        width: 180px;
        height: 180px;
        margin-top: 20px;
    }
    
    .about-graphic i {
        font-size: 1.8rem;
    }
    
    .about-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
    
    .about-slogan span:first-child {
        font-size: 0.7rem;
    }
    
    .about-slogan span:last-child {
        font-size: 0.9rem;
    }
}
