/* Ana stil dosyası - main.css */
:root {
    --color-bg-light: #f6f7f9;
    --color-bg-dark: #23272f;
    --color-primary: #8fa6d6;
    --color-primary-dark: #4f5d75;
    --color-text-light: #23272f;
    --color-text-dark: #f4f5f7;
    --color-card-light: #f3f4f6;
    --color-card-dark: #2d323c;
    --color-accent: #bfcbe6;
    --color-accent2: #e3eafc;
}
html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--color-bg-light);
    color: var(--color-text-light);
    min-height: 100vh;
    transition: background 0.5s, color 0.5s;
}
body.dark-mode {
    background: var(--color-bg-dark);
    color: var(--color-text-dark);
}
header {
    background: var(--color-card-light);
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 10;
    animation: fadeInDown 1s;
    transition: background 0.5s;
}
body.dark-mode header {
    background: var(--color-card-dark);
    border-bottom: 1px solid #23272f;
}
.logo {
    height: 48px;
    margin-left: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    transition: transform 0.3s;
}
.logo:hover {
    transform: scale(1.08) rotate(-3deg);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin-right: 32px;
}
nav a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav a:hover {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(99,102,241,0.15);
}
body.dark-mode nav a {
    color: var(--color-text-dark);
}
body.dark-mode nav a:hover {
    background: var(--color-primary-dark);
}
main {
    width: 100%;
    max-width: 100vw;
    margin: 32px 0 0 0;
    padding: 0 2vw;
    animation: fadeIn 1.2s;
    overflow-x: hidden;
}
.intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #e3eafc 0%, #f7f8fa 100%);
    position: relative;
    min-height: 320px;
    padding: 48px 4vw 40px 4vw;
    border-radius: 24px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(143,166,214,0.10);
    overflow: hidden;
    animation: slideInUp 1.2s;
    transition: background 0.5s, color 0.5s;
}
body.dark-mode .intro {
    background: linear-gradient(120deg, #23272f 0%, #2d323c 100%);
}
.intro-content {
    flex: 2;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.intro-icon {
    font-size: 2.2em;
    margin-right: 10px;
    vertical-align: middle;
}
.intro-content h1 {
    font-size: 2.8rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
body.dark-mode .intro-content h1 {
    color: var(--color-accent);
}
.intro-subtitle {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
body.dark-mode .intro-subtitle {
    color: var(--color-accent);
}
.intro-desc {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 22px;
    max-width: 520px;
}
body.dark-mode .intro-desc {
    color: #cbd5e1;
}
.intro-btn {
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(143,166,214,0.13);
    margin-top: 8px;
}
.intro-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.intro-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 16px rgba(143,166,214,0.13);
    background: #fff;
    border: 4px solid var(--color-accent2);
    margin-left: 24px;
}
body.dark-mode .intro-logo {
    background: #23272f;
    border: 4px solid var(--color-primary-dark);
}
.brands ul {
    padding-left: 20px;
    animation: fadeIn 1.5s;
}
.brands li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    transition: transform 0.2s, color 0.2s;
}
.brands li:hover {
    color: var(--color-primary);
    transform: translateX(8px) scale(1.03);
}
body.dark-mode .brands li:hover {
    color: var(--color-accent);
}
section {
    margin-bottom: 24px;
    padding: 0 2vw;
    max-width: 100vw;
    overflow-x: hidden;
}
footer {
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 28px 0 14px 0;
    margin-top: 40px;
    font-size: 1em;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 12px rgba(99,102,241,0.08);
    animation: fadeInUp 1.2s;
    transition: background 0.5s;
}
body.dark-mode footer {
    background: var(--color-primary-dark);
}
button, .btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99,102,241,0.12);
    transition: background 0.2s, transform 0.2s;
}
button:hover, .btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}
body.dark-mode button, body.dark-mode .btn {
    background: var(--color-accent);
    color: var(--color-text-dark);
}
body.dark-mode button:hover, body.dark-mode .btn:hover {
    background: var(--color-primary);
    color: #fff;
}
input, textarea {
    background: #f6f7f9;
    color: #23272f;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    transition: background 0.5s, color 0.5s;
}
body.dark-mode input, body.dark-mode textarea {
    background: #23272f;
    color: #f4f5f7;
    border: 1px solid #444857;
}
/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
} 

/* Kart ve grid düzeni */
.section-row {
    display: flex;
    gap: 2vw;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.section-row.single {
    flex-direction: column;
    gap: 0;
}
.section-card {
    flex: 1 1 320px;
    background: var(--color-card-light);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(99,102,241,0.07);
    padding: 32px 24px;
    margin-bottom: 0;
    transition: box-shadow 0.2s, background 0.3s;
    min-width: 280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
body.dark-mode .section-card {
    background: var(--color-card-dark);
}
.section-card h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
body.dark-mode .section-card h2 {
    color: var(--color-accent);
}
.section-card p, .section-card ul {
    font-size: 1.13rem;
    color: #374151;
    margin-bottom: 0;
}
body.dark-mode .section-card p, body.dark-mode .section-card ul {
    color: #cbd5e1;
}
.section-card ul {
    padding-left: 18px;
}
.section-card:hover {
    box-shadow: 0 8px 32px rgba(99,102,241,0.13);
    background: var(--color-accent2);
    color: var(--color-text-light);
}
body.dark-mode .section-card:hover {
    background: var(--color-primary-dark);
    color: var(--color-text-dark);
}

/* İletişim kartı özel */
.contact-card {
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    border: 2px solid #60a5fa;
    box-shadow: 0 8px 32px rgba(96,165,250,0.10);
    align-items: stretch;
    position: relative;
    overflow: visible;
    padding-bottom: 32px;
    text-align: left;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s;
}
body.dark-mode .contact-card {
    background: linear-gradient(120deg, #23272f 0%, #1e3a8a 100%);
    border: 2px solid #60a5fa;
}
.contact-card .contact-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #2563eb;
    text-shadow: 0 2px 8px rgba(96,165,250,0.10);
    display: inline-block;
    animation: bounceIn 1.2s;
}
body.dark-mode .contact-card .contact-icon {
    color: #a1c4fd;
}
.contact-card h2 {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
body.dark-mode .contact-card h2 {
    color: #a1c4fd;
}
.contact-card .contact-desc {
    font-size: 1.08rem;
    color: #374151;
    margin-bottom: 18px;
}
body.dark-mode .contact-card .contact-desc {
    color: #cbd5e1;
}
.contact-form input, .contact-form textarea {
    background: #f6f7f9;
    color: #23272f;
    border: 1.5px solid #bfcbe6;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    width: 100%;
    font-size: 1.05em;
    transition: background 0.5s, color 0.5s, border 0.3s;
}
body.dark-mode .contact-form input, body.dark-mode .contact-form textarea {
    background: #23272f;
    color: #f4f5f7;
    border: 1.5px solid #60a5fa;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: #2563eb;
    outline: none;
}
.contact-card .btn {
    margin-top: 6px;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    font-size: 1.08em;
    padding: 10px 28px;
    box-shadow: 0 2px 12px rgba(96,165,250,0.13);
    transition: background 0.2s, color 0.2s;
}
.contact-card .btn:hover {
    background: #60a5fa;
    color: #23272f;
}
.contact-card .contact-mail {
    margin-top: 14px;
    font-weight: bold;
    color: #2563eb;
    font-size: 1.08em;
}
body.dark-mode .contact-card .contact-mail {
    color: #a1c4fd;
}
.contact-icons {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    font-size: 1.5em;
}
.contact-social {
    color: #2563eb;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(96,165,250,0.10);
    transition: color 0.2s, background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-social:hover {
    color: #fff;
    background: #2563eb;
    transform: scale(1.15);
}
body.dark-mode .contact-social {
    color: #a1c4fd;
    background: #23272f;
}
body.dark-mode .contact-social:hover {
    color: #23272f;
    background: #a1c4fd;
}

/* Alt markalar için kartlar */
.brand-cards {
    display: flex;
    gap: 2vw;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.brand-card {
    flex: 1 1 260px;
    background: var(--color-card-light);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(99,102,241,0.06);
    padding: 28px 18px;
    margin-bottom: 0;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s, background 0.3s;
    min-width: 220px;
    max-width: 100%;
    cursor: pointer;
    position: relative;
}
.brand-card:hover {
    box-shadow: 0 8px 32px rgba(99,102,241,0.13);
    background: var(--color-accent);
    transform: translateY(-6px) scale(1.03);
}
.brand-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.brand-card p {
    color: #374151;
    font-size: 1.05rem;
}
body.dark-mode .brand-card {
    background: var(--color-card-dark);
}
body.dark-mode .brand-card h3 {
    color: var(--color-accent);
}
body.dark-mode .brand-card p {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 900px) {
    .intro {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 2vw 24px 2vw;
        min-height: unset;
    }
    .intro-visual {
        margin-top: 18px;
        margin-left: 0;
        justify-content: flex-start;
    }
    .intro-logo {
        margin-left: 0;
    }
    .section-row {
        flex-direction: column;
        gap: 18px;
    }
    .section-card, .brand-card, .contact-card {
        min-width: 0;
        width: 100%;
    }
} 

.bcode-intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #e3eafc 0%, #f7f8fa 100%);
    position: relative;
    min-height: 260px;
    padding: 40px 4vw 32px 4vw;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 6px 28px rgba(143,166,214,0.10);
    overflow: hidden;
    animation: slideInUp 1.2s;
    transition: background 0.5s, color 0.5s;
}
body.dark-mode .bcode-intro {
    background: linear-gradient(120deg, #23272f 0%, #2d323c 100%);
}
.bcode-intro-content {
    flex: 2;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.bcode-icon {
    font-size: 2em;
    margin-right: 10px;
    vertical-align: middle;
}
.bcode-intro-content h1 {
    font-size: 2.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
body.dark-mode .bcode-intro-content h1 {
    color: var(--color-accent);
}
.bcode-subtitle {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
body.dark-mode .bcode-subtitle {
    color: var(--color-accent);
}
.bcode-desc {
    font-size: 1.08rem;
    color: #374151;
    margin-bottom: 0;
    max-width: 480px;
}
body.dark-mode .bcode-desc {
    color: #cbd5e1;
}
.bcode-intro-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.bcode-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(143,166,214,0.13);
    background: #f3f4f6;
    border: 3px solid var(--color-accent2);
    margin-left: 18px;
}
body.dark-mode .bcode-logo {
    background: #23272f;
    border: 3px solid var(--color-primary-dark);
}
@media (max-width: 900px) {
    .bcode-intro {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 2vw 18px 2vw;
        min-height: unset;
    }
    .bcode-intro-visual {
        margin-top: 12px;
        margin-left: 0;
        justify-content: flex-start;
    }
    .bcode-logo {
        margin-left: 0;
    }
} 

.bcode-projects {
    margin: 32px 0 24px 0;
}
.bcode-section-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #4f5d75;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bcode-section-icon {
    font-size: 1.3em;
}
.bcode-project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.bcode-project-card {
    background: linear-gradient(120deg, #c3cfe2 0%, #e3eafc 100%);
    border: 2px solid #8fa6d6;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(143,166,214,0.10);
    padding: 28px 22px 18px 22px;
    min-width: 180px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s, transform 0.2s;
    position: relative;
    cursor: pointer;
    text-align: left;
}
.bcode-project-card:hover {
    box-shadow: 0 8px 32px rgba(143,166,214,0.18);
    background: #e3eafc;
    border-color: #4f5d75;
    transform: translateY(-4px) scale(1.03);
}
.bcode-project-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: #4f5d75;
    text-shadow: 0 2px 8px rgba(143,166,214,0.10);
}
.bcode-project-title {
    font-size: 1.15em;
    font-weight: bold;
    color: #23272f;
    margin-bottom: 4px;
}
.bcode-project-desc {
    font-size: 1em;
    color: #374151;
}
.bcode-row {
    display: flex;
    gap: 2vw;
    margin-top: 32px;
    flex-wrap: wrap;
}
.bcode-card {
    flex: 1 1 320px;
    background: linear-gradient(120deg, #e0c3fc 0%, #e3eafc 100%);
    border: 2px solid #b692f6;
    box-shadow: 0 6px 28px rgba(182,146,246,0.10);
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 0;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s;
    min-width: 240px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.bcode-contact-card {
    background: linear-gradient(120deg, #5a6780 0%, #bfcbe6 100%);
    border: 2px solid #4f5d75;
    box-shadow: 0 8px 32px rgba(76,81,109,0.13);
}
.bcode-card .contact-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: #bfcbe6;
    text-shadow: 0 2px 8px rgba(96,165,250,0.10);
    display: inline-block;
    animation: bounceIn 1.2s;
}
.bcode-card .contact-desc, .bcode-card .contact-mail {
    color: #f4f5f7;
}
.bcode-card .contact-mail a {
    color: #a5b4fc;
}
.bcode-card .contact-icons .contact-social {
    color: #bfcbe6;
    background: #4338ca;
}
.bcode-card .contact-icons .contact-social:hover {
    color: #4338ca;
    background: #bfcbe6;
}
@media (max-width: 900px) {
    .bcode-project-cards {
        flex-direction: column;
        gap: 14px;
    }
    .bcode-row {
        flex-direction: column;
        gap: 18px;
    }
    .bcode-card {
        min-width: 0;
        width: 100%;
    }
} 

.baranlabs-intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #fceabb 0%, #e3eafc 100%);
    position: relative;
    min-height: 260px;
    padding: 40px 4vw 32px 4vw;
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 6px 28px rgba(247,200,115,0.10);
    overflow: hidden;
    animation: slideInUp 1.2s;
    transition: background 0.5s, color 0.5s;
}
body.dark-mode .baranlabs-intro {
    background: linear-gradient(120deg, #23272f 0%, #3a2c1a 100%);
}
.baranlabs-intro-content {
    flex: 2;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.baranlabs-icon {
    font-size: 2em;
    margin-right: 10px;
    vertical-align: middle;
}
.baranlabs-intro-content h1 {
    font-size: 2.4rem;
    color: #b48a1e;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
body.dark-mode .baranlabs-intro-content h1 {
    color: #ffe29a;
}
.baranlabs-subtitle {
    font-size: 1.15rem;
    color: #b48a1e;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
body.dark-mode .baranlabs-subtitle {
    color: #ffe29a;
}
.baranlabs-desc {
    font-size: 1.08rem;
    color: #6d375a;
    margin-bottom: 0;
    max-width: 480px;
}
body.dark-mode .baranlabs-desc {
    color: #fffbe6;
}
.baranlabs-intro-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.baranlabs-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(247,200,115,0.13);
    background: #f3f4f6;
    border: 3px solid #fffbe6;
    margin-left: 18px;
}
body.dark-mode .baranlabs-logo {
    background: #23272f;
    border: 3px solid #ffe29a;
}
.baranlabs-projects {
    margin: 32px 0 24px 0;
}
.baranlabs-section-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #b48a1e;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.baranlabs-section-icon {
    font-size: 1.3em;
}
.baranlabs-project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.baranlabs-project-card {
    background: linear-gradient(120deg, #fceabb 0%, #fffbe6 100%);
    border: 2px solid #f7c873;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(247,200,115,0.10);
    padding: 28px 22px 18px 22px;
    min-width: 180px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s, transform 0.2s;
    position: relative;
    cursor: pointer;
    text-align: left;
}
.baranlabs-project-card:hover {
    box-shadow: 0 8px 32px rgba(247,200,115,0.18);
    background: #fffbe6;
    border-color: #b48a1e;
    transform: translateY(-4px) scale(1.03);
}
.baranlabs-project-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: #b48a1e;
    text-shadow: 0 2px 8px rgba(247,200,115,0.10);
}
.baranlabs-project-title {
    font-size: 1.15em;
    font-weight: bold;
    color: #6d375a;
    margin-bottom: 4px;
}
.baranlabs-project-desc {
    font-size: 1em;
    color: #6d375a;
}
.baranlabs-row {
    display: flex;
    gap: 2vw;
    margin-top: 32px;
    flex-wrap: wrap;
}
.baranlabs-card {
    flex: 1 1 320px;
    background: linear-gradient(120deg, #fceabb 0%, #fffbe6 100%);
    border: 2px solid #f7c873;
    box-shadow: 0 6px 28px rgba(247,200,115,0.10);
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 0;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s;
    min-width: 240px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.baranlabs-contact-card {
    background: linear-gradient(120deg, #6d375a 0%, #fbc2eb 100%);
    border: 2px solid #f472b6;
    box-shadow: 0 8px 32px rgba(244,114,182,0.13);
}
.baranlabs-card .contact-icon {
    font-size: 2em;
    margin-bottom: 10px;
    color: #fbc2eb;
    text-shadow: 0 2px 8px rgba(244,114,182,0.10);
    display: inline-block;
    animation: bounceIn 1.2s;
}
.baranlabs-card .contact-desc, .baranlabs-card .contact-mail {
    color: #fffbe6;
}
.baranlabs-card .contact-mail a {
    color: #fbc2eb;
}
.baranlabs-card .contact-icons .contact-social {
    color: #fffbe6;
    background: #f472b6;
}
.baranlabs-card .contact-icons .contact-social:hover {
    color: #f472b6;
    background: #fffbe6;
}
@media (max-width: 900px) {
    .baranlabs-intro {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 2vw 18px 2vw;
        min-height: unset;
    }
    .baranlabs-intro-visual {
        margin-top: 12px;
        margin-left: 0;
        justify-content: flex-start;
    }
    .baranlabs-logo {
        margin-left: 0;
    }
    .baranlabs-project-cards {
        flex-direction: column;
        gap: 14px;
    }
    .baranlabs-row {
        flex-direction: column;
        gap: 18px;
    }
    .baranlabs-card {
        min-width: 0;
        width: 100%;
    }
} 

.vizyon-card {
    background: linear-gradient(120deg, #e0c3fc 0%, #e3eafc 100%);
    border: 2px solid #b692f6;
    box-shadow: 0 6px 28px rgba(182,146,246,0.10);
    position: relative;
    overflow: visible;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s;
    text-align: left;
}
body.dark-mode .vizyon-card {
    background: linear-gradient(120deg, #23272f 0%, #4b3869 100%);
    border: 2px solid #b692f6;
}
.vizyon-card .vizyon-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #a259e6;
    text-shadow: 0 2px 8px rgba(182,146,246,0.10);
    display: inline-block;
    animation: bounceIn 1.2s;
}
body.dark-mode .vizyon-card .vizyon-icon {
    color: #e0c3fc;
}
.vizyon-card:hover {
    box-shadow: 0 12px 36px rgba(182,146,246,0.18);
    background: #f3e8ff;
    border-color: #a259e6;
}
body.dark-mode .vizyon-card:hover {
    background: #4b3869;
    border-color: #e0c3fc;
}
@keyframes bounceIn {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
} 

.misyon-card {
    background: linear-gradient(120deg, #b7f8db 0%, #e3eafc 100%);
    border: 2px solid #34d399;
    box-shadow: 0 6px 28px rgba(52,211,153,0.10);
    position: relative;
    overflow: visible;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s;
    text-align: left;
}
body.dark-mode .misyon-card {
    background: linear-gradient(120deg, #23272f 0%, #1e3a34 100%);
    border: 2px solid #34d399;
}
.misyon-card .misyon-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #10b981;
    text-shadow: 0 2px 8px rgba(52,211,153,0.10);
    display: inline-block;
    animation: bounceIn 1.2s;
}
body.dark-mode .misyon-card .misyon-icon {
    color: #6ee7b7;
}
.misyon-card:hover {
    box-shadow: 0 12px 36px rgba(52,211,153,0.18);
    background: #e6fff7;
    border-color: #10b981;
}
body.dark-mode .misyon-card:hover {
    background: #1e3a34;
    border-color: #6ee7b7;
} 

.referans-card {
    background: linear-gradient(120deg, #fbc2eb 0%, #e3eafc 100%);
    border: 2px solid #f472b6;
    box-shadow: 0 6px 28px rgba(244,114,182,0.10);
    position: relative;
    overflow: visible;
    transition: box-shadow 0.2s, background 0.3s, border 0.3s;
    text-align: left;
}
body.dark-mode .referans-card {
    background: linear-gradient(120deg, #23272f 0%, #6d375a 100%);
    border: 2px solid #f472b6;
}
.referans-card .referans-icon {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #f472b6;
    text-shadow: 0 2px 8px rgba(244,114,182,0.10);
    display: inline-block;
    animation: bounceIn 1.2s;
}
body.dark-mode .referans-card .referans-icon {
    color: #fbc2eb;
}
.referans-card:hover {
    box-shadow: 0 12px 36px rgba(244,114,182,0.18);
    background: #fff0f6;
    border-color: #f472b6;
}
body.dark-mode .referans-card:hover {
    background: #6d375a;
    border-color: #fbc2eb;
}
.referans-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}
.referans-badge {
    background: #fff;
    color: #a21caf;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(244,114,182,0.10);
    padding: 16px 22px 10px 22px;
    font-weight: bold;
    font-size: 1.08em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
    border: 1.5px solid #fbc2eb;
}
.referans-badge span {
    font-size: 0.98em;
    color: #6d375a;
    font-weight: normal;
    margin-top: 4px;
}
.referans-badge:hover {
    background: #fbc2eb;
    color: #23272f;
    box-shadow: 0 4px 16px rgba(244,114,182,0.18);
}
.referans-badge:hover span {
    color: #6d375a;
}
body.dark-mode .referans-badge:hover {
    background: #fbc2eb;
    color: #6d375a;
}
body.dark-mode .referans-badge:hover span {
    color: #23272f;
}
@media (max-width: 700px) {
    .referans-list {
        flex-direction: column;
        gap: 10px;
    }
    .referans-badge {
        width: 100%;
        min-width: 0;
    }
} 

.main-header {
    background: linear-gradient(90deg, #e3eafc 0%, #f3f4f6 100%);
    box-shadow: 0 2px 12px rgba(143,166,214,0.08);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: background 0.5s;
}
body.dark-mode .main-header {
    background: linear-gradient(90deg, #23272f 0%, #1e3a8a 100%);
}
.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 4vw 18px 4vw;
    gap: 18px;
}
.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.18em;
    font-weight: bold;
}
.header-logo {
    font-size: 2em;
    vertical-align: middle;
}
.header-title {
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 1px;
}
.header-nav {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.header-nav li {
    display: inline-block;
}
.header-nav a {
    text-decoration: none;
    color: #23272f;
    font-weight: bold;
    font-size: 1.08em;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}
.header-nav a:hover, .header-nav a.active {
    color: #fff;
    background: #2563eb;
    box-shadow: 0 2px 8px rgba(96,165,250,0.13);
}
body.dark-mode .header-nav a {
    color: #a1c4fd;
}
body.dark-mode .header-nav a:hover, body.dark-mode .header-nav a.active {
    background: #a1c4fd;
    color: #23272f;
}
.header-nav a.active {
    color: #fff;
    background: #2563eb;
    box-shadow: 0 2px 8px rgba(96,165,250,0.13);
    border-bottom: 3px solid #4f5d75;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
body.dark-mode .header-nav a.active {
    background: #a1c4fd;
    color: #23272f;
    border-bottom: 3px solid #23272f;
}
.header-brand .header-logo {
    filter: drop-shadow(0 2px 8px rgba(96,165,250,0.10));
    transition: transform 0.2s;
}
.header-brand .header-logo:hover {
    transform: scale(1.12) rotate(-4deg);
}
.darkmode-header-btn {
    margin-left: 24px;
    padding: 8px 18px;
    font-size: 1em;
    border-radius: 8px;
    background: #e3eafc;
    color: #23272f;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(143,166,214,0.10);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    position: relative;
    top: 0;
}
.darkmode-header-btn:hover {
    background: #2563eb;
    color: #fff;
}
body.dark-mode .darkmode-header-btn {
    background: #23272f;
    color: #a1c4fd;
    border: 1.5px solid #a1c4fd;
}
body.dark-mode .darkmode-header-btn:hover {
    background: #a1c4fd;
    color: #23272f;
}
@media (max-width: 1200px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 2vw 14px 2vw;
    }
    .header-brand {
        margin-bottom: 6px;
    }
    .header-nav {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .header-nav li {
        margin-bottom: 2px;
    }
    .header-nav a {
        font-size: 0.97em;
        padding: 7px 10px;
    }
    .darkmode-header-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
}
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 2vw 10px 2vw;
    }
    .header-nav {
        gap: 4px;
    }
    .header-nav a {
        font-size: 0.93em;
        padding: 6px 7px;
    }
}
.main-footer {
    background: linear-gradient(90deg, #e3eafc 0%, #f3f4f6 100%);
    color: #23272f;
    text-align: center;
    padding: 0;
    margin-top: 40px;
    font-size: 1em;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 12px rgba(143,166,214,0.08);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: relative;
    overflow: hidden;
}
body.dark-mode .main-footer {
    background: linear-gradient(90deg, #23272f 0%, #1e3a8a 100%);
    color: #f4f5f7;
}
.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 4vw 18px 4vw;
    flex-wrap: wrap;
    gap: 18px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25em;
    font-weight: bold;
}
.footer-logo {
    font-size: 2em;
    vertical-align: middle;
}
.footer-title {
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 1px;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social-icon {
    color: #2563eb;
    background: #fff;
    border-radius: 50%;
    padding: 7px;
    box-shadow: 0 2px 8px rgba(96,165,250,0.10);
    transition: color 0.2s, background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social-icon:hover {
    color: #fff;
    background: #2563eb;
    transform: scale(1.13);
}
body.dark-mode .footer-social-icon {
    color: #a1c4fd;
    background: #23272f;
}
body.dark-mode .footer-social-icon:hover {
    color: #23272f;
    background: #a1c4fd;
}
.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.98em;
    margin-top: 8px;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 24px 2vw 12px 2vw;
    }
    .footer-brand {
        margin-bottom: 8px;
    }
} 

.brand-footer {
    background: linear-gradient(90deg, #e3eafc 0%, #f3f4f6 100%);
    color: #23272f;
    text-align: center;
    padding: 0;
    margin-top: 40px;
    font-size: 1em;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 12px rgba(143,166,214,0.08);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: relative;
    overflow: hidden;
}
body.dark-mode .brand-footer {
    background: linear-gradient(90deg, #23272f 0%, #1e3a8a 100%);
    color: #f4f5f7;
}
.brand-footer .footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 4vw 18px 4vw;
    flex-wrap: wrap;
    gap: 18px;
}
.brand-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25em;
    font-weight: bold;
}
.brand-footer .footer-logo {
    font-size: 2em;
    vertical-align: middle;
}
.brand-footer .footer-title {
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 1px;
}
.brand-footer .footer-social {
    display: flex;
    gap: 16px;
}
.brand-footer .footer-social-icon {
    color: #2563eb;
    background: #fff;
    border-radius: 50%;
    padding: 7px;
    box-shadow: 0 2px 8px rgba(96,165,250,0.10);
    transition: color 0.2s, background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-footer .footer-social-icon:hover {
    color: #fff;
    background: #2563eb;
    transform: scale(1.13);
}
body.dark-mode .brand-footer .footer-social-icon {
    color: #a1c4fd;
    background: #23272f;
}
body.dark-mode .brand-footer .footer-social-icon:hover {
    color: #23272f;
    background: #a1c4fd;
}
.brand-footer .footer-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.98em;
    margin-top: 8px;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .brand-footer .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 24px 2vw 12px 2vw;
    }
    .brand-footer .footer-brand {
        margin-bottom: 8px;
    }
} 

.ai-chat-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 2em;
    box-shadow: 0 4px 24px rgba(37,99,235,0.13);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ai-chat-btn:hover {
    background: #1e40af;
    transform: scale(1.08);
}
.ai-chat-box {
    position: fixed;
    right: 28px;
    bottom: 96px;
    width: 340px;
    max-width: 95vw;
    height: 420px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    display: flex;
    flex-direction: column;
    z-index: 201;
    overflow: hidden;
    animation: fadeInUp 0.4s;
}
body.dark-mode .ai-chat-box {
    background: #23272f;
    color: #f4f5f7;
}
.ai-chat-header {
    background: #2563eb;
    color: #fff;
    font-weight: bold;
    padding: 14px 18px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body.dark-mode .ai-chat-header {
    background: #1e40af;
    color: #fff;
}
#aiChatClose {
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    opacity: 0.7;
    transition: opacity 0.2s;
}
#aiChatClose:hover {
    opacity: 1;
}
.ai-chat-messages {
    flex: 1;
    padding: 16px 14px 8px 14px;
    overflow-y: auto;
    background: #f6f7f9;
}
body.dark-mode .ai-chat-messages {
    background: #23272f;
}
.ai-chat-msg {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    max-width: 80%;
    font-size: 1em;
    word-break: break-word;
    position: relative;
}
.ai-chat-msg-user {
    align-self: flex-end;
    align-items: flex-end;
}
.ai-chat-msg-bot {
    align-self: flex-start;
    align-items: flex-start;
}
.ai-chat-bubble {
    border-radius: 18px 18px 4px 18px;
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    font-size: 1em;
    min-width: 40px;
    max-width: 100%;
    margin-bottom: 2px;
    position: relative;
}
.ai-chat-msg-bot .ai-chat-bubble {
    background: #e3eafc;
    color: #23272f;
    border-radius: 18px 18px 18px 4px;
}
body.dark-mode .ai-chat-msg-bot .ai-chat-bubble {
    background: #1e40af;
    color: #fff;
}
body.dark-mode .ai-chat-msg-user .ai-chat-bubble {
    background: #a1c4fd;
    color: #23272f;
}
.ai-chat-meta {
    font-size: 0.85em;
    color: #8a8a8a;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ai-chat-msg-user .ai-chat-meta {
    justify-content: flex-end;
}
.ai-chat-seen {
    font-size: 0.85em;
    color: #60a5fa;
    margin-left: 4px;
}
body.dark-mode .ai-chat-meta {
    color: #bfcbe6;
}
body.dark-mode .ai-chat-seen {
    color: #a1c4fd;
}
.ai-chat-form {
    display: flex;
    padding: 10px 12px;
    background: #f3f4f6;
    border-top: 1px solid #e3eafc;
}
body.dark-mode .ai-chat-form {
    background: #23272f;
    border-top: 1px solid #1e40af;
}
#aiChatInput {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1em;
    margin-right: 8px;
    background: #fff;
    color: #23272f;
    box-shadow: 0 1px 4px rgba(37,99,235,0.04);
    transition: background 0.2s, color 0.2s;
}
body.dark-mode #aiChatInput {
    background: #23272f;
    color: #f4f5f7;
}
#aiChatInput:focus {
    outline: 2px solid #2563eb;
}
.ai-chat-form button {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.ai-chat-form button:hover {
    background: #1e40af;
}
@media (max-width: 600px) {
    .ai-chat-box {
        right: 8px;
        bottom: 76px;
        width: 98vw;
        min-width: 0;
        height: 60vh;
        max-height: 80vh;
    }
    .ai-chat-btn {
        right: 8px;
        bottom: 8px;
        width: 48px;
        height: 48px;
        font-size: 1.5em;
    }
} 

.darkmode-footer-btn {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1001;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 2px 12px rgba(99,102,241,0.13);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    opacity: 0.95;
}
.darkmode-footer-btn:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: scale(1.06);
}
body.dark-mode .darkmode-footer-btn {
    background: var(--color-accent);
    color: var(--color-text-dark);
}
body.dark-mode .darkmode-footer-btn:hover {
    background: var(--color-primary);
    color: #fff;
}
@media (max-width: 600px) {
    .darkmode-footer-btn {
        left: 10px;
        bottom: 10px;
        padding: 10px 14px;
        font-size: 0.98em;
    }
} 

/* Blog & Duyurular Sayfası */
.blog-bg-wave {
    position: absolute;
    left: 0; right: 0; top: 0; height: 220px;
    width: 100%;
    z-index: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="220" viewBox="0 0 1440 220" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 120C120 180 360 220 720 220C1080 220 1320 180 1440 120V0H0V120Z" fill="%238fa6d6" fill-opacity="0.18"/></svg>') no-repeat top center/cover;
    pointer-events: none;
}
.blog-container { position: relative; overflow: hidden; }
.blog-card-img {
    width: 100%;
    height: 70px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: bold;
    background: #e3eafc;
    box-shadow: 0 2px 8px rgba(143,166,214,0.10);
}
.blog-card-img-duyuru { background: linear-gradient(90deg, #8fa6d6 0%, #4f5d75 100%); color: #fff; }
.blog-card-img-blog { background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%); color: #fff; }
.blog-new {
    position: absolute;
    top: -18px; right: 0;
    background: #ffb703;
    color: #fff;
    font-size: 0.85em;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255,183,3,0.13);
    letter-spacing: 0.5px;
    animation: fadeInDown 1s;
}
.blog-readmore-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s;
}
.blog-readmore:hover .blog-readmore-arrow {
    transform: translateX(5px) scale(1.15);
}
.blog-card {
    overflow: hidden;
    border: 2px solid #e3eafc;
    background: #fff;
    transition: box-shadow 0.25s, transform 0.22s, border 0.22s, background 0.22s;
}
.blog-card:hover {
    box-shadow: 0 12px 36px rgba(99,102,241,0.19);
    transform: translateY(-10px) scale(1.035);
    border: 2px solid #2563eb;
    background: #f7f8fa;
}
body.dark-mode .blog-container {
    background: linear-gradient(120deg, #23272f 0%, #2d323c 100%);
}
body.dark-mode .blog-card {
    background: #23272f;
    border: 2px solid #4f5d75;
}
body.dark-mode .blog-card-img {
    background: #2d323c;
    color: #8fa6d6;
}
body.dark-mode .blog-card-img-duyuru {
    background: linear-gradient(90deg, #4f5d75 0%, #23272f 100%);
    color: #fff;
}
body.dark-mode .blog-card-img-blog {
    background: linear-gradient(90deg, #2563eb 0%, #23272f 100%);
    color: #fff;
}
body.dark-mode .blog-card:hover {
    background: #23272f;
    border: 2px solid #8fa6d6;
}
.blog-card-header .blog-category i {
    margin-right: 4px;
    font-style: normal;
}
.blog-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(90deg, #8fa6d6 0%, #bfcbe6 100%);
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    margin-bottom: 36px;
    box-shadow: 0 4px 24px rgba(99,102,241,0.07);
    color: #fff;
    position: relative;
}
.blog-hero-icon {
    font-size: 3.2rem;
    margin-right: 18px;
    filter: drop-shadow(0 2px 8px rgba(99,102,241,0.13));
}
.blog-hero-titlebox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.blog-hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1.2px;
    text-shadow: 0 4px 18px rgba(99,102,241,0.13);
    margin: 0 0 2px 0;
    line-height: 1.1;
}
.blog-hero-underline {
    width: 64px;
    height: 6px;
    border-radius: 4px;
    background: linear-gradient(90deg, #ffb703 0%, #2563eb 100%);
    margin-bottom: 2px;
    margin-top: 0;
    box-shadow: 0 2px 8px rgba(255,183,3,0.13);
}
.blog-hero-desc {
    font-size: 1.22rem;
    color: #e3eafc;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.1px;
    text-shadow: 0 2px 8px rgba(99,102,241,0.10);
}
.blog-hero-desc b {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.blog-desc {
    color: #e3eafc;
    font-size: 1.1rem;
    margin: 0;
}
.blog-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 8px 18px;
    box-shadow: 0 2px 12px rgba(99,102,241,0.10);
    border: 1.5px solid #bfcbe6;
    backdrop-filter: blur(6px);
    transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}
.blog-search-form:hover, .blog-search-form:focus-within {
    background: rgba(255,255,255,0.38);
    box-shadow: 0 4px 18px rgba(99,102,241,0.16);
    border: 1.5px solid #8fa6d6;
}
.blog-search-form input {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1em;
    outline: none;
    padding: 6px 0;
    width: 180px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.blog-search-form input::placeholder {
    color: #e3eafc;
    opacity: 0.85;
    font-style: italic;
    letter-spacing: 0.2px;
}
.blog-search-form button {
    background: linear-gradient(90deg, #8fa6d6 0%, #2563eb 100%);
    border: none;
    color: #fff;
    font-size: 1.25em;
    border-radius: 8px;
    padding: 6px 14px;
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    transition: background 0.2s, transform 0.2s;
    opacity: 0.85;
}
.blog-search-form button:hover {
    background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%);
    opacity: 1;
    transform: scale(1.08);
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 12px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(99,102,241,0.09);
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
    border: 2px solid #e3eafc;
    position: relative;
    min-height: 220px;
}
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(99,102,241,0.16);
    transform: translateY(-6px) scale(1.025);
    border: 2px solid #8fa6d6;
}
.blog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 10px;
}
.blog-category {
    font-size: 0.98em;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 8px;
    color: #fff;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    margin-right: 8px;
}
.blog-category-duyuru {
    background: linear-gradient(90deg, #4f5d75 0%, #8fa6d6 100%);
}
.blog-category-blog {
    background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%);
}
.blog-date {
    font-size: 0.97em;
    color: #8fa6d6;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.blog-icon {
    font-size: 1.1em;
    margin-right: 2px;
}
.blog-title {
    font-size: 1.25rem;
    color: #23272f;
    margin: 0 0 4px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.blog-summary {
    color: #4f5d75;
    font-size: 1.08em;
    margin: 0 0 8px 0;
}
.blog-readmore {
    align-self: flex-end;
    background: linear-gradient(90deg, #8fa6d6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}
.blog-readmore:hover {
    background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%);
    color: #fff;
    transform: scale(1.07);
}
@media (max-width: 700px) {
    .blog-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 10px 16px 10px;
        text-align: left;
    }
    .blog-hero-title {
        font-size: 1.6rem;
    }
    .blog-hero-underline {
        width: 38px;
        height: 4px;
    }
    .blog-hero-desc {
        font-size: 1.01rem;
    }
    .blog-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .blog-card {
        padding: 18px 10px 14px 10px;
    }
    .blog-search-form {
        width: 100%;
        padding: 7px 8px;
    }
    .blog-search-form input {
        width: 100px;
        font-size: 0.98em;
    }
} 

/* Takımımız Sayfası */
.team-container {
    background: linear-gradient(120deg, #e3eafc 0%, #f7f8fa 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(143,166,214,0.10);
    padding: 32px 2vw 48px 2vw;
    margin-top: 32px;
    margin-bottom: 32px;
    min-height: 70vh;
    animation: fadeIn 1.2s;
    position: relative;
    overflow: hidden;
}
.team-hero {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(90deg, #8fa6d6 0%, #bfcbe6 100%);
    border-radius: 18px;
    padding: 32px 32px 24px 32px;
    margin-bottom: 36px;
    box-shadow: 0 4px 24px rgba(99,102,241,0.07);
    color: #fff;
    position: relative;
}
.team-hero-icon {
    font-size: 3.2rem;
    margin-right: 18px;
    filter: drop-shadow(0 2px 8px rgba(99,102,241,0.13));
}
.team-hero-titlebox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.team-hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1.2px;
    text-shadow: 0 4px 18px rgba(99,102,241,0.13);
    margin: 0 0 2px 0;
    line-height: 1.1;
}
.team-hero-underline {
    width: 64px;
    height: 6px;
    border-radius: 4px;
    background: linear-gradient(90deg, #ffb703 0%, #2563eb 100%);
    margin-bottom: 2px;
    margin-top: 0;
    box-shadow: 0 2px 8px rgba(255,183,3,0.13);
}
.team-hero-desc {
    font-size: 1.22rem;
    color: #e3eafc;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.1px;
    text-shadow: 0 2px 8px rgba(99,102,241,0.10);
}
.team-hero-desc b {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.team-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}
.team-row {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.team-row-1 { margin-bottom: 0; }
.team-row-2 { margin-bottom: 0; }
.team-row-3 { margin-bottom: 0; }
.team-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(99,102,241,0.09);
    padding: 32px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    max-width: 260px;
    min-height: 320px;
    border: 2px solid #e3eafc;
    transition: box-shadow 0.22s, transform 0.22s, border 0.22s, background 0.22s;
    position: relative;
    overflow: hidden;
}
.team-card:hover {
    box-shadow: 0 12px 36px rgba(99,102,241,0.19);
    transform: translateY(-10px) scale(1.035);
    border: 2px solid #2563eb;
    background: #f7f8fa;
}
.team-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8fa6d6 0%, #bfcbe6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8em;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(143,166,214,0.10);
    color: #fff;
}
.team-name {
    font-size: 1.18rem;
    font-weight: bold;
    color: #23272f;
    margin: 0;
}
.team-role {
    font-size: 1.01rem;
    color: #2563eb;
    font-weight: 500;
    margin: 0 0 4px 0;
}
.team-bio {
    color: #4f5d75;
    font-size: 0.98em;
    margin: 0 0 8px 0;
    text-align: center;
}
.team-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.team-socials a {
    color: #2563eb;
    background: #e3eafc;
    border-radius: 50%;
    padding: 7px;
    box-shadow: 0 2px 8px rgba(96,165,250,0.10);
    transition: color 0.2s, background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}
.team-socials a:hover {
    color: #fff;
    background: #2563eb;
    transform: scale(1.13);
}
body.dark-mode .team-container {
    background: linear-gradient(120deg, #23272f 0%, #2d323c 100%);
}
body.dark-mode .team-card {
    background: #23272f;
    border: 2px solid #4f5d75;
}
body.dark-mode .team-photo {
    background: linear-gradient(135deg, #4f5d75 0%, #23272f 100%);
    color: #fff;
}
body.dark-mode .team-card:hover {
    background: #23272f;
    border: 2px solid #8fa6d6;
}
body.dark-mode .team-name {
    color: #e3eafc;
}
body.dark-mode .team-role {
    color: #8fa6d6;
}
body.dark-mode .team-bio {
    color: #bfcbe6;
}
@media (max-width: 900px) {
    .team-row {
        gap: 16px;
    }
    .team-card {
        min-width: 170px;
        max-width: 220px;
        padding: 18px 8px 14px 8px;
    }
    .team-photo {
        width: 62px;
        height: 62px;
        font-size: 1.7em;
    }
}
@media (max-width: 700px) {
    .team-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 10px 16px 10px;
        text-align: left;
    }
    .team-hero-title {
        font-size: 1.6rem;
    }
    .team-hero-underline {
        width: 38px;
        height: 4px;
    }
    .team-hero-desc {
        font-size: 1.01rem;
    }
    .team-pyramid {
        gap: 18px;
        margin-top: 18px;
    }
    .team-row {
        gap: 8px;
    }
} 

.main-header .header-nav a {
    white-space: nowrap;
    padding: 6px 8px;
    font-size: 1em;
    letter-spacing: 0.2px;
}
@media (max-width: 1200px) {
    .main-header .header-nav {
        gap: 4px;
    }
    .main-header .header-nav a {
        font-size: 0.95em;
        padding: 5px 6px;
    }
} 

.team-bg-wave {
    position: absolute;
    left: 0; right: 0; top: 0; height: 180px;
    width: 100%;
    z-index: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="180" viewBox="0 0 1440 180" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 80C120 140 360 180 720 180C1080 180 1320 140 1440 80V0H0V80Z" fill="%238fa6d6" fill-opacity="0.16"/></svg>') no-repeat top center/cover;
    pointer-events: none;
}
.team-container { position: relative; overflow: hidden; }
.team-hero-descbox {
    background: rgba(255,255,255,0.22);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(99,102,241,0.10);
    padding: 12px 22px;
    margin-top: 8px;
    margin-bottom: 0;
    border: 1.5px solid #bfcbe6;
    backdrop-filter: blur(4px);
}
.team-card {
    background: linear-gradient(135deg, #e3eafc 0%, #f7f8fa 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(99,102,241,0.09);
    padding: 32px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    max-width: 260px;
    min-height: 320px;
    border: 2px solid #e3eafc;
    transition: box-shadow 0.22s, transform 0.22s, border 0.22s, background 0.22s;
    position: relative;
    overflow: hidden;
}
.team-card:hover {
    box-shadow: 0 12px 36px rgba(99,102,241,0.19);
    transform: translateY(-10px) scale(1.045);
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #bfcbe6 0%, #e3eafc 100%);
}
.team-role-badge {
    display: inline-block;
    font-size: 0.98em;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 8px;
    color: #fff;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(99,102,241,0.10);
    margin-bottom: 6px;
    margin-top: 2px;
}
.team-role-badge-ceo { background: linear-gradient(90deg, #ffb703 0%, #8fa6d6 100%); }
.team-role-badge-cto { background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%); }
.team-role-badge-rd { background: linear-gradient(90deg, #4f5d75 0%, #8fa6d6 100%); }
.team-role-badge-design { background: linear-gradient(90deg, #bfcbe6 0%, #2563eb 100%); }
.team-role-badge-dev { background: linear-gradient(90deg, #8fa6d6 0%, #4f5d75 100%); }
.team-role-badge-frontend { background: linear-gradient(90deg, #2563eb 0%, #bfcbe6 100%); }
.team-socials a {
    color: #2563eb;
    background: #e3eafc;
    border-radius: 50%;
    padding: 7px;
    box-shadow: 0 2px 8px rgba(96,165,250,0.10);
    transition: color 0.2s, background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}
.team-socials a:hover {
    color: #fff;
    background: linear-gradient(90deg, #2563eb 0%, #8fa6d6 100%);
    transform: scale(1.18) rotate(-8deg);
}
body.dark-mode .team-container {
    background: linear-gradient(120deg, #23272f 0%, #2d323c 100%);
}
body.dark-mode .team-card {
    background: linear-gradient(135deg, #23272f 0%, #2d323c 100%);
    border: 2px solid #4f5d75;
}
body.dark-mode .team-card:hover {
    background: linear-gradient(135deg, #2d323c 0%, #23272f 100%);
    border: 2px solid #8fa6d6;
}
body.dark-mode .team-hero-descbox {
    background: rgba(36,41,54,0.22);
    border: 1.5px solid #4f5d75;
}
body.dark-mode .team-role-badge-ceo { background: linear-gradient(90deg, #ffb703 0%, #4f5d75 100%); }
body.dark-mode .team-role-badge-cto { background: linear-gradient(90deg, #8fa6d6 0%, #23272f 100%); }
body.dark-mode .team-role-badge-rd { background: linear-gradient(90deg, #4f5d75 0%, #23272f 100%); }
body.dark-mode .team-role-badge-design { background: linear-gradient(90deg, #bfcbe6 0%, #23272f 100%); }
body.dark-mode .team-role-badge-dev { background: linear-gradient(90deg, #8fa6d6 0%, #4f5d75 100%); }
body.dark-mode .team-role-badge-frontend { background: linear-gradient(90deg, #2563eb 0%, #23272f 100%); }
@media (max-width: 900px) {
    .team-row {
        gap: 16px;
    }
    .team-card {
        min-width: 170px;
        max-width: 220px;
        padding: 18px 8px 14px 8px;
    }
    .team-photo {
        width: 62px;
        height: 62px;
        font-size: 1.7em;
    }
}
@media (max-width: 700px) {
    .team-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 10px 16px 10px;
        text-align: left;
    }
    .team-hero-title {
        font-size: 1.6rem;
    }
    .team-hero-underline {
        width: 38px;
        height: 4px;
    }
    .team-hero-desc {
        font-size: 1.01rem;
    }
    .team-pyramid {
        gap: 18px;
        margin-top: 18px;
    }
    .team-row {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
} 