﻿/*Tagline*/
.tagline {
    margin: 5.5em 0 3em 0;
    color: #333;
    text-align: center;
    background: linear-gradient(180deg, rgba(167, 166, 166, 0.3), rgba(150, 225, 255, 0.3));
    padding: 1.5em;
    width: 100%;
    box-sizing: border-box;
}

    .tagline p {
        font-size: 3em;
        font-weight: bold;
        color: rgb(0, 0, 128);
        padding: 0.5em;
        margin: 0 auto;
        display: inline-block;
        text-align: center;
    }

@media (max-width: 430px) {
    .tagline {
        padding: 2em;
        margin-top: 5.5em;
    }

        .tagline h1 {
            font-size: 1.5em;
        }

        .tagline p {
            font-size: 1.5em;
            padding: 0;
        }
}

@media (min-width: 430px) and (max-width: 767px) {
    .tagline {
        padding: 2em;
        margin-top: 6em;
    }

        .tagline h1 {
            font-size: 1.5em;
        }

        .tagline p {
            font-size: 1.5em;
            padding: 0;
        }
}

@media (max-width: 1200px) {
    .tagline {
        padding: 2em;
    }

        .tagline h1 {
            font-size: 1.5em;
        }

        .tagline p {
            font-size: 1.5em;
            padding: 0;
        }
}


#hakkimda {
    max-width: 1000px;
    margin: 2rem auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 2rem;
    box-sizing: border-box;
    background-color: #f9f9f920;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: nowrap; /* mobilde de yan yana kalmasını sağlar */
}

.profil-foto {
    width: 100%;
    max-width: 350px;
    height: 250px; /* sabit yükseklik */
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

    .profil-foto:hover {
        transform: scale(1.02);
    }

.yazi-alani {
    flex: 1;
    min-width: 200px;
}

    .yazi-alani h2 {
        margin: 0;
        font-size: 2rem;
        color: #222;
        letter-spacing: 0.5px;
    }

    .yazi-alani p {
        color: #444;
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 1rem;
    }

@media (max-width: 768px) {
    #hakkimda .container {
        flex-direction: column; /* Dikey hizalama */
        align-items: center; /* Ortala */
        text-align: center; /* Yazıyı ortala */
        gap: 1.5rem;
        padding: 0 1rem;
    }

    #hakkimda .profil-foto {
        width: 180px;
        height: 180px;
        max-width: 100%;
        border-radius: 50%; /* Yuvarlak fotoğraf */
        object-fit: cover;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

        #hakkimda .profil-foto:hover {
            transform: scale(1.05);
        }

    #hakkimda .yazi-alani {
        width: 100%;
        max-width: 400px;
        flex: none;
    }

        #hakkimda .yazi-alani h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #222;
        }

        #hakkimda .yazi-alani p {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
        }
}

/*İnfo Card*/
.infocardContainer {
    display: flex;
    height: 200px;
    width: 200px;
    border-radius: 100px;
    background: rgb(0, 0, 128);
    background: linear-gradient(121deg, rgb(0, 0, 128) 13%, rgb(0, 189, 247) 100%);
    transition: all 500ms ease-in;
    transition-delay: 1s;
    margin: auto;
    margin-bottom: 80px;
}

    .infocardContainer:hover {
        width: 500px;
        border-radius: 100px 10px 100px 100px;
        transition: all 1s ease-out;
    }

    .infocardContainer div {
        color: white;
        flex-shrink: 1;
        width: 100%;
        --background-color: green;
    }

        .infocardContainer div * {
            display: flex;
            --flex: inherit;
            overflow: hidden;
            text-overflow: hidden;
            --background-color: yellow;
            color: white;
            white-space: nowrap;
            width: 0;
            height: auto;
            transition: all 450ms ease-in;
            transition-delay: 1s;
        }

    .infocardContainer:hover div * {
        --background-color: purple;
        display: flex;
        visibility: visible;
        transition: all 1s ease-out;
        transition-delay: 500ms;
        width: 100%;
        height: auto;
    }

    .infocardContainer #main, .infocardContainer #main img {
        --background-color: red;
        height: 200px;
        width: 200px;
        padding-right: 10px;
        border-radius: 100%;
        flex-shrink: 0;
        object-fit: cover;
    }

        .infocardContainer #main img {
            height: 180px;
            width: 180px;
            transition: none;
            display: float;
            position: relative;
            border: 10px solid white;
            margin: 0 0 0 0;
            padding: 0 0 0 0;
        }

    .infocardContainer #textbois {
        position: relative;
    }

/*Misyon*/

:root {
    --values-bg: #0d1117;
    --card-bg: #161b22;
    --primary-color: rgb(0, 0, 210);
    --text-light: #ffffff;
    --text-muted: #cccccc;
}

.values-section {
    background-color: var(--values-bg);
    padding: 100px 20px;
    text-align: center;
    color: var(--text-light);
}

.values__title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values__intro {
    font-size: 16px;
    margin-bottom: 50px;
    color: var(--text-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.values__cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .value-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .value-card p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.6;
    }

/* Responsive */
@media screen and (max-width: 768px) {
    .values__cards {
        flex-direction: column;
        align-items: center;
    }

    .value-card {
        width: 90%;
    }
}

/*Misyon ve Vizyon stil sonu*/

:root {
    --choose-bg: #0d1117;
    --choose-card-bg: #161b22;
    --choose-accent: rgb(0, 0, 210);
    --choose-text: #e6edf3;
    --choose-muted: #8b949e;
}

.choose-us-section {
    background: var(--choose-bg);
    color: var(--choose-text);
    padding: 100px 20px;
}

.choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.choose-us-title {
    font-size: 32px;
    color: var(--choose-accent);
    margin-bottom: 10px;
}

.choose-us-subtitle {
    font-size: 16px;
    color: var(--choose-muted);
    margin-bottom: 60px;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.choose-card {
    background: var(--choose-card-bg);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

    .choose-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .choose-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .choose-card:nth-child(3) {
        animation-delay: 0.6s;
    }

    .choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(88, 166, 255, 0.2);
    }

.choose-number {
    background: linear-gradient(135deg, rgb(0, 0, 210), rgb(54, 54, 98));
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-block;
}

.choose-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--choose-accent);
}

.choose-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--choose-muted);
}

/* Animasyon tanımı */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil uyumlu font ayarları */
@media (max-width: 600px) {
    .choose-us-title {
        font-size: 24px;
    }

    .choose-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}

/*Neden Biz? kısmı stil sonu*/





/*profile card*/
.profile-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f3f4f8, #e9eef5);
}

.profile-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

    .profile-card-modern:hover {
        transform: translateY(-8px);
    }

    .profile-card-modern img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        border: 4px solid #e0e0e0;
    }

    .profile-card-modern h2 {
        margin: 10px 0 5px;
        font-size: 26px;
        color: #2b2b2b;
    }

    .profile-card-modern .job-title {
        color: #666;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .profile-card-modern .bio {
        font-size: 15px;
        color: #444;
        line-height: 1.6;
    }

.social-link {
    margin-top: 20px;
}

    .social-link .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        margin: 0 10px;
        font-size: 18px;
        color: white;
        background-color: #0077b5; /* varsayılan: linkedin mavi */
        transition: background-color 0.3s ease;
    }

        .social-link .icon.github {
            background-color: #333;
        }

        .social-link .icon:hover {
            opacity: 0.85;
            transform: scale(1.1);
        }

/* Responsive */
@media (max-width: 500px) {
    .profile-card-modern {
        padding: 30px 20px;
    }

    .social-link .icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin: 0 6px;
    }
}
