* {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    border-bottom: 1px solid black;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 36px;
    height: 36px;
}
.logo-kiber {
    font-size: 30px;
    font-weight: 600;
    color: black;
}
.logo-kafedra {
    font-size: 15px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}
.nav-links a {
    text-decoration: none;
    font-size: 17px;
    padding: 16px;
    color: slategray;
}
.nav-links a:hover {
    background: lightgrey;
}
.nav-links a.active {
    background: royalblue;
    color: white;
    border-radius: 6px;
}

/* sehife bashligi */
.page-top {
    background: royalblue;
    padding: 70px 60px;
    color: white;
}
.page-top-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
}
.page-top-text p {
    font-size: 22px;
}

/* emekdaslar */
.team-section {
    padding: 70px 60px;
    background: ghostwhite;
}
.team-intro {
    text-align: center;
    font-size: 20px;
    color: dimgray;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}
.team-card {
    background: white;
    border: 1px solid lightgray;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.team-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.avatar {
    width: 90px;
    height: 90px;
    background: royalblue;
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}
.team-card h2 {
    font-size: 22px;
    color: black;
    margin-bottom: 8px;
}
.vezife {
    color: royalblue;
    font-size: 17px;
    margin-bottom: 5px;
}
.derece {
    color: dimgray;
    font-size: 15px;
    margin-bottom: 22px;
}
.info {
    border-top: 1px solid lightgray;
    padding-top: 20px;
    text-align: left;
}
.info p {
    font-size: 15px;
    color: dimgray;
    margin-bottom: 12px;
    line-height: 1.5;
}
.info a {
    color: royalblue;
    text-decoration: none;
}
.info a:hover {
    text-decoration: underline;
}

/* qoshulun blok */
.join-box {
    background: white;
    border: 1px solid lightgray;
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
}
.join-box h2 {
    font-size: 28px;
    color: black;
    margin-bottom: 14px;
}
.join-box p {
    font-size: 17px;
    color: dimgray;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 28px auto;
}
.btn-join {
    display: inline-block;
    background: royalblue;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.2s;
}
.btn-join:hover {
    background: midnightblue;
}

/* footer (Jalenin stili) */
.footer {
    background: #111827;
    color: lightgray;
    padding: 50px 60px 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid slategray;
}
.footer-logo {
    font-size: 19px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}
.footer-brand p {
    font-size: 16px;
    color: darkgray;
    line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 14px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    text-decoration: none;
    font-size: 16px;
    color: darkgray;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-contact p {
    font-size: 16px;
    color: darkgray;
    margin-bottom: 6px;
    line-height: 1.6;
}
.footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 15px;
    color: gray;
}


/* responsive - kicik ekranlarda dil dugmeleri kompakt */
@media (max-width: 720px) {
    .dil-secim {
        margin-left: 0;
        margin-top: 10px;
    }
    .dil-secim button {
        padding: 5px 8px;
        font-size: 12px;
    }
}

/* nav-right: nav-links ve dil-secim yan-yana */
.nav-right {
    display: flex;
    align-items: center;
}
