* {
    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;
    max-width: 700px;
    line-height: 1.5;
}

/* statistika */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: royalblue;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid lightsteelblue;
}
.stat {
    padding: 0 20px;
}
.stat h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
.stat p {
    font-size: 18px;
    color: lightsteelblue;
}

/* giris hissesi */
.intro {
    padding: 70px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.intro h2 {
    font-size: 32px;
    color: black;
    margin-bottom: 20px;
}
.intro p {
    font-size: 18px;
    color: dimgray;
    line-height: 1.7;
}

/* missiya ve vizyon */
.mv-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 60px 70px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.mv-card {
    border-radius: 12px;
    padding: 40px 35px;
}
.mv-card.mission {
    background: royalblue;
    color: white;
}
.mv-card.vision {
    background: ghostwhite;
    border: 1px solid lightgray;
}
.mv-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px !important;
}
.mv-card.mission .mv-label {
    color: lightsteelblue;
}
.mv-card.vision .mv-label {
    color: royalblue;
}
.mv-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}
.mv-card.mission h3 {
    color: white;
}
.mv-card.vision h3 {
    color: black;
}
.mv-card p {
    font-size: 16px;
    line-height: 1.7;
}
.mv-card.mission p {
    color: white;
}
.mv-card.vision p {
    color: dimgray;
}

/* deyerler */
.values-section {
    background: ghostwhite;
    padding: 70px 60px;
}
.section-title {
    text-align: center;
    font-size: 32px;
    color: black;
    margin-bottom: 12px;
}
.section-sub {
    text-align: center;
    font-size: 18px;
    color: dimgray;
    margin-bottom: 50px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.value-card {
    background: white;
    border: 1px solid lightgray;
    border-radius: 12px;
    padding: 30px 28px;
    transition: box-shadow 0.2s;
}
.value-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.value-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 14px;
}
.value-card h3 {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}
.value-card p {
    font-size: 15px;
    color: dimgray;
    line-height: 1.6;
}

/* tarixce - timeline */
.history-section {
    padding: 70px 60px;
    max-width: 900px;
    margin: 0 auto;
}
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: lightgray;
}
.tl-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 30px;
}
.tl-item:before {
    content: "";
    position: absolute;
    left: -34px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: royalblue;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px royalblue;
}
.tl-year {
    display: inline-block;
    background: lavender;
    color: royalblue;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.tl-content h3 {
    font-size: 20px;
    color: black;
    margin-bottom: 8px;
}
.tl-content p {
    color: dimgray;
    font-size: 16px;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    background: royalblue;
    padding: 60px 60px;
    text-align: center;
    color: white;
}
.cta-section h2 {
    font-size: 32px;
    margin-bottom: 14px;
}
.cta-section p {
    font-size: 18px;
    color: lightsteelblue;
    margin-bottom: 28px;
}
.btn-cta {
    display: inline-block;
    background: white;
    color: royalblue;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-cta:hover {
    background: ghostwhite;
}

/* 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;
}
