﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

/* Modern Professional Website Styles */
:root {
    --color-primary: #2563eb;
    --color-secondary: #38b6ff;
    --color-accent: #5f2eea;
    --color-bg: #f8fafc;
    --color-dark: #1e293b;
    --color-light: #fff;
    --color-muted: #94a3b8;
    --gradient-main: linear-gradient(120deg, #38b6ff 0%, #2563eb 100%);
    --gradient-hero: linear-gradient(135deg, #e0e7ff 0%, #38b6ff 40%, #5f2eea 80%, #fff 100%);
    --gradient-footer: linear-gradient(120deg, #16161a 0%, #7f5af0 100%);
    --shadow-card: 0 8px 32px 0 rgba(56,182,255,0.10);
    --shadow-hover: 0 16px 40px 0 rgba(56,182,255,0.18);
    --radius-lg: 2rem;
    --radius-md: 1.2rem;
    --radius-sm: 0.7rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #aaa #222;
}

html, body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background: var(--color-bg);
    color: var(--color-dark);
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-muted);
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e7ff 0%, #38b6ff 40%, #2563eb 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(56, 182, 255, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar Modern Geçişler ve Profesyonel Stil */
.navbar {
    background: #fff !important;
    box-shadow: 0 2px 24px 0 rgba(56,182,255,0.06);
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, box-shadow 0.3s;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    min-height: 0;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.13);
}
.navbar-brand {
    min-width: 105px;
    padding: 0;
}
.header-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    margin-right: 0;
    box-shadow: 0 2px 12px 0 rgba(127,90,240,0.10);
}
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark) !important;
    margin: 0 0.5rem;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: color 0.5s, box-shadow 0.5s;
    outline: none;
    background: transparent;
    z-index: 1;
    overflow: hidden;
}
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    border-radius: var(--radius-sm);
}
.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
    opacity: 1;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #fff !important;
    box-shadow: 0 2px 12px 0 rgba(127,90,240,0.10);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.7s cubic-bezier(.4,0,.2,1);
    transform: translateX(-50%);
    z-index: 2;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}
@media (max-width: 991px) {
    .header-logo-big { height: 60px; width: 60px; }
    .navbar-brand { min-width: 60px; }
    .navbar-nav {
        padding: 1rem 0;
    }
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.7rem 1.2rem !important;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
    }
    .navbar-nav .nav-link::before {
        display: none;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        background: var(--gradient-main);
        color: #fff !important;
        transform: translateX(10px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .navbar-collapse {
        background: #fff;
        border-radius: var(--radius-md);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        padding: 0.5rem;
        margin-top: 1rem;
    }
}
@media (max-width: 600px) {
    .header-logo-big { height: 32px; width: 32px; }
    .navbar-brand { min-width: 32px; }
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem !important;
        margin: 0.3rem 0;
    }
    .navbar-collapse {
        padding: 0.3rem;
        margin-top: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at 60% 40%, #e0e7ff 0%, #38b6ff 50%, #5f2eea 100%);
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="120" viewBox="0 0 1440 120" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H1440V80C1200 120 800 40 0 120V0Z" fill="white"/></svg>') no-repeat bottom center/cover;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem 1rem 7rem 1rem;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 32px rgba(56,182,255,0.10);
}

.hero-title span {
    background: linear-gradient(90deg, #38b6ff 0%, #5f2eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero-title b {
    color: #2563eb;
    text-shadow: 0 2px 12px rgba(56,182,255,0.13);
}

.hero-subtitle, .hero-description {
    color: #e3e8f7;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

.hero-visual {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 48px rgba(56,182,255,0.18));
    border-radius: 2rem;
    background: rgba(255,255,255,0.08);
}

.btn-hero {
    background: var(--gradient-main);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.2rem 2.8rem;
    border-radius: 2.5rem;
    border: none;
    box-shadow: 0 8px 32px 0 rgba(56,182,255,0.18);
    margin-bottom: 2.5rem;
    margin-top: 1.2rem;
    text-decoration: none !important;
    outline: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-hero:hover, .btn-hero:focus {
    filter: brightness(1.1) drop-shadow(0 0 12px #38b6ff);
    transform: scale(1.05);
    text-decoration: none !important;
}

.btn-hero:active {
    transform: scale(0.98);
}

.btn-hero i {
    margin-right: 0.5rem;
}

.btn-hero, .btn-hero:visited, .btn-hero:active {
    text-decoration: none !important;
}

/* Stats Section */
.stats-section {
    background: #fff;
    padding: 4rem 0 2rem 0;
}

.stat-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.10);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    border: 2px solid #e0e7ff;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
}

.stat-card:hover {
    box-shadow: 0 8px 40px 0 rgba(56,182,255,0.18);
    border: 2px solid #2563eb;
    transform: none;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff !important;
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.13);
    transition: background 0.3s, transform 0.3s;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #5f2eea 0%, #38b6ff 100%);
    transform: scale(1.12) rotate(-6deg);
}

.stat-number {
    font-size: 2.7rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.stat-label {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* Farklı renkli kartlar için */
.stat-blue .stat-icon { background: linear-gradient(135deg, #38b6ff 0%, #2563eb 100%); }
.stat-green .stat-icon { background: linear-gradient(135deg, #34d399 0%, #059669 100%); }
.stat-purple .stat-icon { background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%); }
.stat-orange .stat-icon { background: linear-gradient(135deg, #fbbf24 0%, #f59e42 100%); }

.stat-green .stat-number { color: #059669; }
.stat-purple .stat-number { color: #7c3aed; }
.stat-orange .stat-number { color: #f59e42; }

.stat-card.stat-green:hover { border: 2px solid #059669; }
.stat-card.stat-purple:hover { border: 2px solid #7c3aed; }
.stat-card.stat-orange:hover { border: 2px solid #f59e42; }

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Services Section */
.services-section {
    background: var(--color-bg);
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-primary);
    letter-spacing: 1px;
    animation: fadeInUp 1s both;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s 0.2s both;
}

.service-card, .project-card, .testimonial-card, .contact-card {
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.10);
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    border: 2px solid #e0e7ff;
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.8s cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(8px);
    z-index: 1;
    margin-bottom: 2rem;
}

.service-card:hover, .project-card:hover, .testimonial-card:hover, .contact-card:hover {
    box-shadow: 0 8px 40px 0 rgba(56,182,255,0.18);
    transform: translateY(-8px) scale(1.04);
    border: 2.5px solid #2563eb;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #38b6ff 0%, #2563eb 100%);
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.13);
    position: relative;
    z-index: 1;
    transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #5f2eea 0%, #38b6ff 100%);
    transform: scale(1.12) rotate(-6deg);
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #38b6ff33 0%, transparent 70%);
    z-index: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1);}
    50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.15);}
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1);}
}

.service-hover-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    position: absolute;
    left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
    background: rgba(38,99,235,0.07);
    border-radius: 1rem;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    color: #2563eb;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover .service-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.project-image {
    height: 180px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-bottom: 1rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.project-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--color-dark);
}

.project-content p {
    color: var(--color-muted);
    margin-bottom: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fb;
    padding: 6rem 0 4rem 0;
}

.testimonial-card {
    text-align: left;
    min-height: 260px;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 1rem;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}

.testimonial-info h6 {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--color-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #23244a 0%, #3b267a 100%);
    color: #fff;
    padding: 6rem 0 4rem 0;
}

.contact-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-card p {
    color: var(--color-muted);
    margin-bottom: 0;
}

/* Footer */
footer {
    background: #11131a !important;
    color: #fff;
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 10;
    background-image: none !important;
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section p, .footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #23244a;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    background: transparent;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gradient-main);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    font-size: 1.3rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 1s both;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.5rem; }
    .hero-content { padding: 2rem 0.5rem 4rem 0.5rem; }
    .service-card, .project-card, .testimonial-card, .contact-card { padding: 1.2rem 0.7rem 2.5rem 0.7rem; }
    .hero-visual { max-width: 340px; }
    .service-hover-info { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; }
}

@media (max-width: 600px) {
    .hero-section { padding-top: 80px; }
    .service-card, .project-card, .testimonial-card, .contact-card { padding: 0.8rem 0.5rem 2rem 0.5rem; }
    .section-title { font-size: 1.2rem; }
    .hero-title { font-size: 1.3rem; }
    .hero-content { padding: 1.2rem 0.2rem 2.5rem 0.2rem; }
    .hero-visual { max-width: 220px; }
    .service-hover-info { font-size: 0.95rem; }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-main);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.rounded-custom {
    border-radius: 20px;
}

.border-custom {
    border: 1px solid var(--border-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    background: #222; /* Track: koyu gri/siyah */
}
::-webkit-scrollbar-thumb {
    background: #aaa; /* Thumb: açık gri */
    border-radius: 6px;
}
/* Firefox için */
* {
    scrollbar-width: thin;
    scrollbar-color: #aaa #222;
}

/* Apple Tarzı Hero Section */
.hero-section-apple {
    background: #fff;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 0;
    overflow: hidden;
}
.hero-section-apple .container {
    z-index: 2;
    position: relative;
}
.hero-title-apple {
    font-family: 'Inter', 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}
.hero-title-apple span {
    color: #2563eb;
    font-weight: 900;
    font-size: 3.5rem;
}
.hero-subtitle-apple {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.btn-hero-apple {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.85rem 2.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 4px 24px 0 rgba(56,182,255,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    outline: none;
    display: inline-block;
    text-decoration: none;
}
.btn-hero-apple:hover, .btn-hero-apple:focus {
    background: #1746a2;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(56,182,255,0.18);
    transform: translateY(-2px) scale(1.03);
}
.hero-visual-apple {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(56,182,255,0.10));
}
.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}
@media (max-width: 991px) {
    .hero-title-apple { font-size: 2rem; }
    .hero-title-apple span { font-size: 2.2rem; }
    .hero-visual-apple { max-width: 400px; }
}
@media (max-width: 600px) {
    .hero-section-apple { padding-top: 40px; }
    .hero-title-apple { font-size: 1.2rem; }
    .hero-title-apple span { font-size: 1.3rem; }
    .hero-visual-apple { max-width: 280px; }
    .btn-hero-apple { font-size: 1rem; padding: 0.7rem 1.5rem; }
}

/* Üst Dalga (Hero Section) */
.hero-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
}
.hero-wave-top svg {
    display: block;
    width: 100%;
    height: 80px;
}
.hero-section-apple {
    position: relative;
    z-index: 2;
}
@media (max-width: 991px) {
    .hero-wave-top svg { height: 50px; }
}
@media (max-width: 600px) {
    .hero-wave-top svg { height: 30px; }
}

/* Sadece Logo için Header Ayarları */
.header-logo-big {
    height: 105px;
    width: 105px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    margin: 0 0.5rem 0 0;
    padding: 0;
    background: none;
    box-shadow: none;
    transition: none;
}

/* Stat kartı ikon renkleri */
.stat-blue .stat-icon i { color: #2563eb; }
.stat-green .stat-icon i { color: #059669; }
.stat-purple .stat-icon i { color: #7c3aed; }
.stat-orange .stat-icon i { color: #f59e42; }

/* Modern Hizmet Kartları */
.modern-service-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.10);
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    text-align: left;
    position: relative;
    overflow: visible;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    border: 2.5px solid #e0e7ff;
    z-index: 1;
}
.modern-service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #222;
}
.modern-service-card p {
    color: #555;
    margin-bottom: 1.2rem;
}
.modern-service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem 1rem 1rem 0;
    font-size: 2rem;
    background: #f3f6fd;
    color: #2563eb;
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.13);
    position: relative;
    z-index: 2;
    transition: background 0.3s, color 0.3s;
}
.modern-service-corner {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 60px;
    height: 60px;
    border-radius: 1.5rem 0 2.5rem 0;
    z-index: 1;
    background: linear-gradient(135deg, #2563eb 0%, #38b6ff 100%);
    opacity: 0.13;
    transition: opacity 0.3s;
}
.modern-service-card-blue .modern-service-corner { background: linear-gradient(135deg, #2563eb 0%, #38b6ff 100%); }
.modern-service-card-green .modern-service-corner { background: linear-gradient(135deg, #059669 0%, #34d399 100%); }
.modern-service-card-purple .modern-service-corner { background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%); }
.modern-service-card-orange .modern-service-corner { background: linear-gradient(135deg, #f59e42 0%, #fbbf24 100%); }
.modern-service-card-pink .modern-service-corner { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }
.modern-service-card-teal .modern-service-corner { background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%); }

.modern-service-card:hover {
    box-shadow: 0 8px 40px 0 rgba(56,182,255,0.18);
    transform: translateY(-8px) scale(1.04);
    border: 2.5px solid #2563eb;
}
.modern-service-card:hover .modern-service-corner {
    opacity: 0.22;
}
.modern-service-card:hover .modern-service-icon {
    background: #2563eb;
    color: #fff;
}
.modern-service-hover-info {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    background: #2563eb;
    color: #fff;
    border-radius: 0.8rem;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.13);
    z-index: 3;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}
.modern-service-card:hover .modern-service-hover-info {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
@media (max-width: 991px) {
    .modern-service-card { min-height: 280px; padding: 1.2rem 0.7rem 2.5rem 0.7rem; }
    .modern-service-hover-info { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; }
}
@media (max-width: 600px) {
    .modern-service-card { min-height: 220px; padding: 0.8rem 0.5rem 2rem 0.5rem; }
    .modern-service-hover-info { font-size: 0.95rem; }
}

/* --- Hizmetlerimiz Profesyonel Kartlar --- */
.service-card-pro {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border 0.35s cubic-bezier(.4,0,.2,1);
    min-height: 370px;
    position: relative;
    overflow: hidden;
    word-break: break-word;
    border: 2px solid #e0e7ff;
    box-sizing: border-box;
}

.service-icon-pro {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.13);
    transition: background 0.3s, box-shadow 0.3s;
}

.service-blue   .service-icon-pro { background: linear-gradient(135deg, #38b6ff 0%, #2563eb 100%); }
.service-green  .service-icon-pro { background: linear-gradient(135deg, #34d399 0%, #059669 100%); }
.service-purple .service-icon-pro { background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%); }
.service-orange .service-icon-pro { background: linear-gradient(135deg, #fbbf24 0%, #f59e42 100%); }
.service-pink   .service-icon-pro { background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%); }
.service-teal   .service-icon-pro { background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%); }

.service-card-pro h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.7rem;
    text-align: center;
}

.service-card-pro p {
    color: #6b7280;
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 1.1rem;
}

.service-card-pro .small {
    color: #a0aec0;
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
}

.service-btn-pro {
    margin-top: auto;
    display: inline-block;
    padding: 0.7rem 1.7rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(120deg, #38b6ff 0%, #2563eb 100%);
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.10);
    border: none;
    transition: background 0.3s;
    text-decoration: none;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
}

.service-blue   .service-btn-pro { background: linear-gradient(120deg, #38b6ff 0%, #2563eb 100%); }
.service-green  .service-btn-pro { background: linear-gradient(120deg, #34d399 0%, #059669 100%); }
.service-purple .service-btn-pro { background: linear-gradient(120deg, #a78bfa 0%, #7c3aed 100%); }
.service-orange .service-btn-pro { background: linear-gradient(120deg, #fbbf24 0%, #f59e42 100%); color: #fff; }
.service-pink   .service-btn-pro { background: linear-gradient(120deg, #f472b6 0%, #ec4899 100%); }
.service-teal   .service-btn-pro { background: linear-gradient(120deg, #2dd4bf 0%, #14b8a6 100%); }

/* Buton hover efektleri kaldırıldı - sadece background geçişi */
.service-btn-pro:hover, .service-btn-pro:focus {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.service-blue   .service-btn-pro:hover { background: linear-gradient(120deg, #38b6ff 0%, #2563eb 100%); }
.service-green  .service-btn-pro:hover { background: linear-gradient(120deg, #34d399 0%, #059669 100%); }
.service-purple .service-btn-pro:hover { background: linear-gradient(120deg, #a78bfa 0%, #7c3aed 100%); }
.service-orange .service-btn-pro:hover { background: linear-gradient(120deg, #fbbf24 0%, #f59e42 100%); }
.service-pink   .service-btn-pro:hover { background: linear-gradient(120deg, #f472b6 0%, #ec4899 100%); }
.service-teal   .service-btn-pro:hover { background: linear-gradient(120deg, #2dd4bf 0%, #14b8a6 100%); }

@media (max-width: 991px) {
    .service-card-pro { min-height: 320px; padding: 1.5rem 0.7rem 2rem 0.7rem; }
    .service-icon-pro { width: 56px; height: 56px; font-size: 1.5rem; }
    .service-btn-pro {
        font-size: 0.98rem;
        padding: 0.6rem 1.1rem;
    }
}

@media (max-width: 600px) {
    .service-card-pro { min-height: 220px; padding: 1rem 0.5rem 1.5rem 0.5rem; }
    .service-icon-pro { width: 40px; height: 40px; font-size: 1.1rem; }
    .service-btn-pro {
        font-size: 0.93rem;
        padding: 0.5rem 0.7rem;
    }
}

/* --- Animasyon --- */
.service-card-pro { opacity: 0; transform: translateY(40px); animation: fadeInUpCard 0.7s forwards; }
.service-card-pro:nth-child(1) { animation-delay: 0.05s; }
.service-card-pro:nth-child(2) { animation-delay: 0.12s; }
.service-card-pro:nth-child(3) { animation-delay: 0.19s; }
.service-card-pro:nth-child(4) { animation-delay: 0.26s; }
.service-card-pro:nth-child(5) { animation-delay: 0.33s; }
.service-card-pro:nth-child(6) { animation-delay: 0.40s; }

@keyframes fadeInUpCard {
    to { opacity: 1; transform: none; }
}

/* --- Sadece Border Hover Efektleri --- */
.service-blue:hover { border: 2px solid #2563eb !important; }
.service-green:hover { border: 2px solid #059669 !important; }
.service-purple:hover { border: 2px solid #7c3aed !important; }
.service-orange:hover { border: 2px solid #f59e42 !important; }
.service-pink:hover { border: 2px solid #ec4899 !important; }
.service-teal:hover { border: 2px solid #14b8a6 !important; }

/* Modern Testimonials Section */
.modern-testimonials-section {
    padding: 4rem 0 3rem 0;
    background: var(--color-bg);
}
.modern-testimonial-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    min-height: 320px;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.modern-testimonial-card:hover {
    box-shadow: 0 8px 40px 0 rgba(56,182,255,0.18);
    transform: translateY(-6px) scale(1.02);
}
.modern-testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    margin-right: 0.7rem;
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.13);
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}
.modern-testimonial-emoji {
    font-size: 2.8rem;
    line-height: 1;
    display: block;
}
.modern-testimonial-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #22223b;
    margin-bottom: 0.1rem;
}
.modern-testimonial-program {
    font-size: 0.98rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}
.modern-testimonial-text {
    font-size: 1.08rem;
    color: #22223b;
    font-style: italic;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
}
.modern-testimonial-stars {
    margin-top: auto;
    font-size: 1.35rem;
    color: #fbbf24;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    min-height: 32px;
}
@media (max-width: 991px) {
    .modern-testimonial-card { padding: 1.2rem 0.7rem 1.5rem 0.7rem; min-height: 220px; }
    .modern-testimonial-avatar { width: 54px; height: 54px; }
    .modern-testimonial-emoji { font-size: 2.1rem; }
}

.modern-cta-section {
    background: linear-gradient(120deg, #5f2eea 0%, #38b6ff 100%);
    padding: 5rem 0 4rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.modern-cta-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}
.modern-cta-desc {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    color: #e0e7ff;
}
.modern-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.modern-cta-btn {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 2.5rem;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.modern-cta-btn.main {
    background: #fff;
    color: #5f2eea;
    box-shadow: 0 2px 16px 0 rgba(56,182,255,0.10);
}
.modern-cta-btn.main:hover {
    background: #e0e7ff;
    color: #2563eb;
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.18);
}
.modern-cta-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.modern-cta-btn.outline:hover {
    background: #fff;
    color: #5f2eea;
}
@media (max-width: 600px) {
    .modern-cta-title { font-size: 1.3rem; }
    .modern-cta-desc { font-size: 1rem; }
    .modern-cta-btn { font-size: 1rem; padding: 0.7rem 1.2rem; }
}

.modern-about-section {
    background: #f8fafc;
    padding: 5rem 0 4rem 0;
}
.modern-about-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}
.gradient-text {
    background: linear-gradient(90deg, #38b6ff 0%, #5f2eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.modern-about-lead {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.2rem;
    font-weight: 500;
}
.modern-about-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.5rem;
    font-size: 1.08rem;
}
.modern-about-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #2563eb;
    font-weight: 600;
}
.modern-about-features i {
    font-size: 1.2rem;
    color: #38b6ff;
}
.modern-about-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(56,182,255,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-width: 400px;
    margin: 0 auto;
    transition: box-shadow 0.3s, transform 0.3s;
}
.modern-about-card i {
    font-size: 3.5rem;
    color: #5f2eea;
    margin-bottom: 1.2rem;
}
.modern-about-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #22223b;
    margin-bottom: 0.7rem;
    text-align: center;
}
.modern-about-card p {
    color: #6b7280;
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .modern-about-section { padding: 2.5rem 0 2rem 0; }
    .modern-about-title { font-size: 1.5rem; }
    .modern-about-card { padding: 1.2rem 0.7rem 1.5rem 0.7rem; min-height: 220px; }
}

/* Modern Contact Section */
.modern-contact-section {
    position: relative;
    padding: 90px 0 70px 0;
    background: linear-gradient(135deg, #181c2f 0%, #232a4d 100%);
    overflow: hidden;
    z-index: 1;
}
.modern-contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px),
                repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px);
    pointer-events: none;
}
.modern-contact-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}
.modern-contact-subtitle {
    color: #e0e7ff;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    z-index: 2;
    position: relative;
}
.modern-contact-card {
    background: rgba(255,255,255,0.07);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(56,182,255,0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    width: 100%;
    min-height: 180px;
    transition: box-shadow 0.3s, transform 0.3s;
    z-index: 2;
    position: relative;
}
.modern-contact-card:hover {
    box-shadow: 0 16px 40px 0 rgba(56,182,255,0.18);
    transform: translateY(-6px) scale(1.03);
}
.modern-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-right: 0.5rem;
    box-shadow: 0 2px 12px 0 rgba(56,182,255,0.10);
    flex-shrink: 0;
}
.modern-contact-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.modern-contact-info {
    color: #e0e7ff;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
}
.modern-contact-info a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.2s;
}
.modern-contact-info a:hover {
    color: #38b6ff;
    text-decoration: none;
}
.modern-contact-desc {
    color: #b6b9d6;
    font-size: 0.98rem;
    display: block;
    margin-top: 0.2rem;
}
@media (max-width: 991px) {
    .modern-contact-section { padding: 60px 0 40px 0; }
    .modern-contact-title { font-size: 1.7rem; }
    .modern-contact-card { padding: 1.2rem 1rem 1.2rem 1rem; }
    .modern-contact-icon { width: 44px; height: 44px; font-size: 1.3rem; }
}
@media (max-width: 600px) {
    .modern-contact-section { padding: 40px 0 20px 0; }
    .modern-contact-title { font-size: 1.2rem; }
    .modern-contact-card { flex-direction: column; align-items: flex-start; padding: 1rem 0.7rem; min-height: 120px; }
    .modern-contact-icon { margin-bottom: 0.7rem; margin-right: 0; }
}

/* Modern Footer */
.modern-footer {
    position: relative;
    background: linear-gradient(120deg, #181c2f 0%, #7f5af0 100%);
    color: #fff;
    padding: 3.5rem 0 1.5rem 0;
    z-index: 10;
    overflow: hidden;
}
.modern-footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 40px),
                repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 40px);
    pointer-events: none;
}
.modern-footer-row {
    position: relative;
    z-index: 2;
}
.modern-footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 12px 0 rgba(127,90,240,0.10);
    background: #fff;
    object-fit: contain;
}
.modern-footer-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #fff;
}
.modern-footer-desc {
    font-size: 1rem;
    color: #e0e7ff;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}
.modern-footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}
.modern-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.modern-footer-social a:hover {
    background: linear-gradient(120deg, #38b6ff 0%, #a259f7 100%);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    text-decoration: none;
}
.modern-footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.modern-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modern-footer-list li {
    margin-bottom: 0.7rem;
    color: #e0e7ff;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
}
.modern-footer-list a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.3s;
}
.modern-footer-list a:hover {
    color: #fff;
    text-decoration: underline;
}
.modern-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 1.2rem;
    text-align: center;
    color: #b6b9d6;
    font-size: 0.97rem;
    margin-top: 1.5rem;
    z-index: 2;
    position: relative;
}
@media (max-width: 991px) {
    .modern-footer-row > div { margin-bottom: 2rem; }
    .modern-footer-logo { width: 38px; height: 38px; }
}
@media (max-width: 600px) {
    .modern-footer-row { flex-direction: column; }
    .modern-footer-logo { width: 32px; height: 32px; }
    .modern-footer-title { font-size: 1rem; }
    .modern-footer-section-title { font-size: 1rem; }
    .modern-footer-desc { font-size: 0.95rem; }
    .modern-footer-list li { font-size: 0.93rem; }
}

/* Projeler Swiper Slider Özel Stil */
.projects-section .projects-swiper {
    width: 100%;
    padding: 32px 0 48px 0;
}
.projects-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}
.projects-section .project-card {
    width: 100%;
    max-width: 370px;
    min-height: 320px;
    margin: 0 auto;
    box-shadow: 0 4px 24px 0 rgba(37,99,235,0.07);
    border-radius: 18px;
    background: #fff;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.projects-section .project-card:hover {
    box-shadow: 0 8px 32px 0 rgba(37,99,235,0.15);
    transform: translateY(-4px) scale(1.03);
}
.projects-section .project-image {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38b6ff 0%, #2563eb 100%);
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 2.5rem;
    color: #fff;
    overflow: hidden;
}
.projects-section .project-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}
.projects-section .project-content h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #222;
    text-align: center;
}
.projects-section .project-content p {
    color: #6b7280;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}
.projects-section .swiper-pagination {
    bottom: 0 !important;
}
.projects-section .swiper-button-next,
.projects-section .swiper-button-prev {
    color: #2563eb;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .projects-section .project-card {
        max-width: 95vw;
        padding: 20px 8px 20px 8px;
    }
    .projects-section .project-image {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Projeler slider container */
.projects-slider-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.projects-swiper {
    width: 100%;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: auto;
}
.modern-project-card {
    width: 100%;
    min-width: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(37,99,235,0.07);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    min-height: 320px;
    margin: 0 8px;
    border: 2px solid #e3e8f0;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 32px 32px 32px 24px;
}
.modern-project-icon {
    min-width: 90px;
    min-height: 90px;
    max-width: 90px;
    max-height: 90px;
    background: linear-gradient(135deg, #38b6ff 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    margin-right: 32px;
    overflow: hidden;
}
.modern-project-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
}
.modern-project-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.modern-project-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.modern-project-desc {
    color: #6b7280;
    font-size: 1.05rem;
    margin-bottom: 12px;
}
.modern-project-list {
    margin: 0 0 12px 0;
    padding-left: 18px;
    color: #2563eb;
    font-size: 1rem;
}
.modern-project-list li {
    margin-bottom: 4px;
    list-style: disc;
}
.modern-project-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1rem;
    margin-top: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.08);
    transition: background 0.2s, color 0.2s;
}
.modern-project-btn:hover {
    background: #38b6ff;
    color: #fff;
}
@media (max-width: 991px) {
    .modern-project-card {
        flex-direction: column;
        align-items: flex-start;
        min-height: 220px;
        padding: 18px 10px;
    }
    .modern-project-icon {
        margin-right: 0;
        margin-bottom: 16px;
    }
}