<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Genel Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

  /* Genel stil */
    #menu {
        background-color: #2C2C2C;
        color: #FFF;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }

/* MenÃ¼ stilini dÃ¼zenleme */
.menu-container {
    display: flex;
    justify-content: space-between; /* MenÃ¼ elemanlarÄ±nÄ± yatayda ayÄ±r */
    align-items: center;
    width: 100%;
}

/* Logo iÃ§in dÃ¼zenleme */
#logo {
    flex: 1; /* Logo geniÅŸliÄŸini esnek yap */
    text-align: left;
}

/* MenÃ¼ baÄŸlantÄ±larÄ±nÄ± hizalama */
.nav-menu {
    flex: 2; /* MenÃ¼ geniÅŸliÄŸini esnek yap */
    justify-content: flex-end; /* MenÃ¼ baÄŸlantÄ±larÄ±nÄ± saÄŸa hizala */
    display: flex;
    gap: 20px;
}

    .nav-menu a {
        color: #FFF;
        text-decoration: none;
        font-size: 16px;
    }

    .nav-menu a:hover {
        color: #F1C40F;
    }

    /* Hamburger menÃ¼ stili */
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        margin-left: auto;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #FFF;
    }

    /* Mobil cihazlar iÃ§in medya sorgusu */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
            flex-direction: column;
            gap: 10px;
            background-color: #2C2C2C;
            position: absolute;
            top: 50px;
            right: 20px;
            padding: 10px;
            border-radius: 8px;
        }

        .nav-menu.show {
            display: flex;
        }

        .hamburger {
            display: flex;
        }
    }

/* Anasayfa */
#anasayfa {
    height: 650px;
    background-image: url("../img/ty2.jpg"); /* MasaÃ¼stÃ¼ iÃ§in arka plan resmi */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative; /* Arka planÄ±n yerel konumlanmasÄ±nÄ± saÄŸlar */
    background-repeat: no-repeat; /* 'space' yerine 'no-repeat' kullanmak daha uygun */
}

/* Mobil cihazlar iÃ§in (768px ve altÄ± ekran boyutlarÄ±) */
@media only screen and (max-width: 768px) {
    #anasayfa {
        height: 500px; /* Mobil cihazlar iÃ§in daha kÃ¼Ã§Ã¼k yÃ¼kseklik */
        background-image: url("../img/sehit.webp"); /* Mobil iÃ§in farklÄ± bir arka plan resmi */
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Mobil performans sorunlarÄ±nÄ± dÃ¼zeltir */
        background-repeat: no-repeat;
    }
}
#black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1; /* DiÄŸer iÃ§eriklerin arkasÄ±nda olmalÄ± */
}

#iÃ§erik {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* yazÄ±yÄ± Tam ortalama */
    color: white;
    font-size: 20px;
    text-align: left; /* Metni sola ÅŸekilde ayarlandÄ± */
    z-index: 2; /* DiÄŸer iÃ§eriklerin Ã¶nÃ¼nde olmalÄ± */
    width: 100%; /* YazÄ±nÄ±n geniÅŸliÄŸini sÄ±nÄ±rlamak */
    max-width: 900px; /* Maksimum geniÅŸlik ayarlandÄ± */
    padding: 10px;
    box-sizing: border-box; /* Padding ve border'Ä± iÃ§erik kutusunun iÃ§inde sayar */
}

/* Genel Stil */
#biyografi {
    padding: 60px 20px;
    background: #fff;
}

/* BaÅŸlÄ±k */
.heading h1 {
    text-align: center;
    font-size: 2.5em;
    color: #000;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    margin-bottom: 40px;
}

/* BÄ°YOGRAFÄ° */
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* SatÄ±r */
.row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Sol Taraf (Metin) */
#sol {
    flex: 1 1 60%;
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.8;
    font-family: 'Georgia', serif;
    color: #333;
}

#sol .highlight {
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
}

/* SaÄŸ Taraf (GÃ¶rsel) */
#sag {
    flex: 1 1 35%;
    text-align: center;
}

#sag img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}
.hidden {
    display: none;
}


/* "DevamÄ±nÄ± Oku" Butonu */
#show-more {
    margin-top: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#show-more:hover {
    background-color: #333;
}

/* Mobil Cihazlar Ä°Ã§in */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    #sol, #sag {
        flex: 1 1 100%;
        text-align: center;
    }

    #sol {
        margin-bottom: 20px;
    }
}


/* egitimvebasarilari */

#egitimvebasarilari {
    background-color: #fff;
    padding: 50px;
    height: auto;
    overflow: hidden;
}
.owl-carousel .img-fluid {
    border-radius: 10px;
    margin-bottom: 10px;
}
.owl-carousel .item {
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    display: flex; /* Ä°Ã§eriÄŸi dikeyde ve yatayda ortalamak iÃ§in */
    border-radius: 10px;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container {
    position: relative;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

h3 {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 50px;
    text-transform: uppercase; /* Harfleri bÃ¼yÃ¼k yapmak iÃ§in */
    margin: 0;
    padding: 0;
}

.owl-carousel.owl-theme {
    display: flex;
    overflow-x: auto;
    gap: 2cm;
    padding-bottom: 50px;
    justify-content: center; /* Kutu dÃ¼zeni ortalanacak */
}

.card {
    width: 290px;
    height: 350px;
    border: 1px solid #ddd;
    padding: 0;
    margin-right: 20px;
    flex-shrink: 0;
}

.baslikcard {
    font-size: 15px;
    color: #003666;
    text-align: center;
    margin-top: 10px;
}

.cardp {
    color: #888;
    text-align: center;
    margin-top: 5px;
    padding: 5px;
}

.card:hover {
    border: 2px solid grey;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/* Mobil uyum */
@media (max-width: 768px) {
    .owl-carousel .item {
        padding: 10px;
    }

    .baslikcard {
        font-size: 16px;
    }

    .cardp {
        font-size: 12px;
    }
}

/* gorevyerleri */
/* Genel Ayarlar */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #333;
}

/* GÃ¶rev Yerleri BaÅŸlÄ±k */
#gorevyerlerih3 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

#gorevyerlerih3::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #e74c3c;
    display: block;
    margin: 10px auto;
    border-radius: 2px;
}

/* GÃ¶rev Yerleri KutularÄ± */
#sutun-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
}

.sutun {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.sutun:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* GÃ¶rsel AyarlarÄ± */
.sutun img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

/* Metin Ä°Ã§erik */
.sutun-content {
    padding: 10px 15px;
}

.isim {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fotop {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive TasarÄ±m */
@media (max-width: 768px) {
    #sutun-container {
        flex-direction: column;
        align-items: center;
    }

    .sutun {
        width: 90%;
    }
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-container div {
        margin-bottom: 20px;
    }
}

.custom-link {
    color: #FFD700;
    text-decoration: none;
  }
  .custom-link:hover {
    text-decoration: underline;
    color: darkorange;
  }




#iletisim {
    background-color: gray;
    height: 900px;
    background-image: url("../img/ty24.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex; /* Flexbox ile dÃ¼zenleme */
    justify-content: space-between; /* AlanÄ± ikiye bÃ¶ler */
    padding: 20px;
}

#h3iletisim {
    color: black;
    font-size: 2em;
    margin-bottom: 20px;
    width: 100%; /* BaÅŸlÄ±k tÃ¼m geniÅŸliÄŸi kaplar */
    text-align: center;
}

#iletisimopak {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 40px;
    width: 100%; /* Sol kÄ±sÄ±mdaki form iÃ§in geniÅŸlik */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#adres {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 20px;
    width: 90%; /* SaÄŸ kÄ±sÄ±mdaki adres kÄ±smÄ± iÃ§in geniÅŸlik */
    text-align: left;
}

#formgroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#solform, #sagform {
    width: 48%; /* Formu sol ve saÄŸ kÄ±sÄ±mlara bÃ¶ler */
    display: inline-block;
    vertical-align: top;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    color: #495057;
    background-color: white;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ced4da;
    box-sizing: border-box;
}

textarea.form-control {
    font-family: Arial, sans-serif;
    resize: vertical;
}

input[type="submit"] {
    cursor: pointer;
    background-color: #445c6e;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 10px 30px;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #3a4e5a;
}

#adresbaslik {
    font-size: 1.5em;
    color: darkblue;
    margin-bottom: 10px;
}

.adresp {
    color: darkblue;
    font-size: 15px;
    letter-spacing: 1.5px;
    margin: 5px 0;
}
a:hover {
    color: #FFD700;
}</pre></body></html>