body,
html {
    margin-top:-20px!important;
    margin: 0;
    padding: 0;
   font-family: 'AFACUD FLUX', sans-serif;
    font-weight: 200; 
    overflow-x: hidden;
    height: max-content;
    font-size: 16px!important; 
  line-height: 1.5/* Başlıklar için Regular 400 kullanılır */; 
background: linear-gradient(103deg, rgba(0, 0, 0, 0.98), rgba(50, 50, 50, 0.95));

   
    background-size: 400% 400%;
    animation: gradient 10s infinite alternate;
 

}



@font-face {
  font-family: 'Windpath';
  src: url('https://www.architect.ykbdemo.com.tr/mainpage/videos/windpath.otf') format('opentype') ;
  font-weight: normal;
  font-style: normal;
}


@keyframes gradient {
    0% {
        background-position: 50% 20%;
    }
    25% {
        background-position: 60% 30%;
    }
    50% {
        background-position: 70% 40%;
    }
    75% {
        background-position: 80% 50%;
    }
    100% {
        background-position: 90% 0%;
    }
}
.menu_content_column{
    text-align:right;

}




img{
    border-radius:4px!important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'AFACUD FLUX', sans-serif;
  font-weight: 400; 
}
h1 {
  font-size: 2em!important; 
  font-weight:500;
}

h2 {
  font-size: 1.75em!important; 
}

h3 {
  font-size: 1.5em!important;
}
h4 {
  font-size: 1.5em!important;
}


p {
  font-size: 1.2em!important; 
}

/* Alternatif olarak başka öğelere özel tanımlamalar da yapılabilir */
p {
  font-family: 'AFACUD FLUX', sans-serif;
  font-weight: 200; /* Paragraflar için Regular 200 kullanılır */
}
.text-box {
    position: relative;
    margin-top: 60%;
    left: 70%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 0;
    /* Başlangıçta görünmez */
    animation: slideUps 2s forwards;
    /* 2 saniye süren animasyon */
}

@media (max-width: 768px) {
    .text-box-parent {
        margin-top: -60%;
    }
}

@media (min-width: 768px) {
    .text-box-parent {
        position: absolute;
        top: 40%;
        left: 70%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
}

@media (max-width: 768px) {
    .text-box {
        font-size: 14px;
        /* Daha küçük font boyutu */
        width: 80%;
        /* Yatayda daha fazla yayılması için genişlik artırıldı */
        margin-top: 40%;
        /* Daha uygun bir üst boşluk */
        position: absolute;
        align-content: center;
    }
}

@keyframes slideUps {
    0% {
        opacity: 0;
        transform: translate(-50%, 50%);
        /* Aşağıda başla */
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
        /* Yavaşça yukarı kayarak tam konuma yerleş */
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%, 50% 50%, 100% 100%;
    }

    10% {
        background-position: 30% 30%, 70% 70%, 10% 10%;
    }

    20% {
        background-position: 60% 60%, 90% 90%, 40% 40%;
    }

    30% {
        background-position: 90% 90%, 20% 20%, 70% 70%;
    }

    40% {
        background-position: 20% 20%, 50% 50%, 100% 100%;
    }

    50% {
        background-position: 50% 50%, 80% 80%, 30% 30%;
    }

    60% {
        background-position: 80% 80%, 10% 10%, 60% 60%;
    }

    70% {
        background-position: 10% 10%, 40% 40%, 90% 90%;
    }

    80% {
        background-position: 40% 40%, 70% 70%, 20% 20%;
    }

    90% {
        background-position: 70% 70%, 0% 0%, 50% 50%;
    }

    100% {
        background-position: 0% 0%, 50% 50%, 100% 100%;
    }
}



header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Koyu transparan renk */
    transition: background-color 0.3s ease;
    z-index: 1000;
}

header:hover {
    background-color: rgba(38, 38, 38, 1);
    /* Tamamen mat renk */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3);
    /* Başlangıçta koyu transparan */
    transition: transform 0.5s ease, background-color 0.3s ease;
}

.hide {
    transform: translateY(-100%);
    /* Header'ı tamamen yukarı kaydırarak gizle */
}

.photo-overlay {
    border-radius:4px;
    position: relative;
    display: inline-block;
    width:100%;
    overflow: hidden; /* Taşmaları engeller */
}

.photo-overlay img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.3s ease;
}

.photo-overlay h4 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    transition: 0.3s ease;
}

.photo-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
    transition: 0.3s ease;
    z-index: 1;
}

.photo-overlay:hover img {
    filter: brightness(50%);
}

.photo-overlay:hover::before {
    opacity: 1;
}

.photo-overlay:hover h4 {
    bottom: 20px;
    color: #fff; /* İstediğin başka bir renk seçebilirsin */
}
.logo img {
    max-width:350px;
  
}

@media(max-width: 768px) {
    .logo img {
       max-width:150px;
    }
}

.logo h2 {
    height: 20px;
    color: white;
}

.icons {
    display: flex;
    gap: 10px;
    /* Aradaki boşlukları daha küçük yaptım */
    align-items: center;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(54, 54, 54, 0.158);
    /* Başlangıçta hafif transparan beyaz */
    border-radius: 50%;
    width: 40px;
    /* Konteynır genişliğini ayarladım */
    height: 40px;
    /* Konteynır yüksekliğini ayarladım */
    transition: background-color 0.3s ease;
}

.icon-container:hover {
    background-color: rgba(25, 25, 25, 0.8);
    /* Üzerine gelindiğinde tam beyaz */
}

.icon-container img {
    color: white;
    max-inline-size: 20px;
}


/* --------------------------------------------- */


.slider_ {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 104vh;
   
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.slider__slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slider__slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 75%, black 100%);
    /* Kaplama arka plan rengi */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 1;
    z-index: 1;
    pointer-events: fill;
    /* Kaplamanın tıklanamaz olmasını sağlar */
}

/* İçerik kısmını ayarlamak için */
.slider__overlay .slider__text {
    position: absolute;
    bottom: 0;
    /* İçeriği alt köşeye hizala */
    left: 0;
    /* İçeriği sol köşeye hizala */
    margin: 20px;
    /* İçeriğin kenarlardan uzaklığını ayarla */
    color: #fff;
    /* Yazı rengi */
    z-index: 2;
    /* Yazının overlay üzerinde görünmesini sağlar */
}

.slider__text h3 {
    margin: 0;
    font-size: 24px;
    z-index: 2;
}

.slider__text h2 {
    margin: 5px 0 0;
    font-size: 36px;
    z-index: 2;
}

.slider__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider__dot {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
    margin: 5px;
}

.slider__dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
}

.progress-ring__circle {
    transition: 0.35s stroke-dashoffset;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}
/* SVG çemberin stili */
.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle circle {
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-dasharray: 126; /* Çemberin çevresinin uzunluğu */
    stroke-dashoffset: 126; /* Başlangıçta tamamen görünmez */
    animation: draw-circle 5s linear infinite; /* 5 saniyede çizecek ve tekrarlayacak */
}

@keyframes draw-circle {
    0% {
        stroke-dashoffset: 126; /* Çizgi görünmez */
    }
    100% {
        stroke-dashoffset: 0; /* Çizgi tamamlanmış */
    }
}



.section2_container {
    display: flex;
    justify-content: space-between;
    /* Sütunlar arasına boşluk bırakır */
    /* Kenarlardan boşluk bırakır */
    box-sizing: border-box;
    /* Padding ve border'ı genişliğe dahil eder */
}

/* Sütun stil ayarları */
.section2_container .column {
  
    /* İçerik etrafında boşluk bırakır */
    box-sizing: border-box;
    /* Padding ve border'ı genişliğe dahil eder */
}

/* Soldaki sütun */
/* Soldaki sütun */
.section2_container .column-left {
    width: 68%;
    /* Sütunun genişliği */
    background-color: #ffffff;
    /* Arka plan rengi */
    pointer-events: fill;
    height: 300px;
    /* Diğer stil ayarları */
}

/* Telefon ekranlarında yüksekliği %30 yap */
@media (max-width: 767px) {
    .section2_container .column-left {
        width: 100% !important;
        /* Genişliği telefon ekranında tam yap */
        max-height: 200px !important;
        /* Yüksekliği %30 yap */
        /* Alternatif olarak, height: 30%; if you want to use percentage height */
    }
}

/* Sağdaki sütun */
.section2_container .column-right {
    width: 40%;
    /* Sütunun genişliği */
    background-color: rgba(54, 100, 139, 0.2);
    /* Arka plan rengi */
}

/* Telefon ekranlarında gizle */
@media (max-width: 767px) {
   .section2_container{
        display: flex;
        flex-direction:column;
    }
    .section2_container .column-right{
        height:auto!important;
        width:100%!important;
        margin-left:0px!important;

    }
    
}

/*.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    overflow: hidden; 
}

.left-content .about-image {
    order: 1;
    animation: slide-in-left 1.5s ease-out;
}
.left-content .about-content {
    order: 2;
    width: 30%;
    color: #ffffff;
    animation: slide-in-right 1.5s ease-out;
}

.right-content .about-image {
    order: 2;
    animation: slide-in-right 1.5s ease-out;
}
.right-content .about-content {
    order: 1;
    width: 30%;
    margin-right: 10%;
    color: #ffffff;
    animation: slide-in-left 1.5s ease-out;
}

.about-image img {
    width: 90%;
    height: auto;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); 
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

*/

.about-sections {
    display: flex;
    flex-direction: column;
}

.about-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .about-content {
        width: 60%;
        margin-left: 20px;
        color: #fff;
        /* Varsayılan yazı rengi siyah */
    }

    .about-content ul {
        text-align: left;
        width: 40% auto;
        margin-left: 20px;
        color: #fff;
        /* Varsayılan yazı rengi siyah */
    }
}

.about-content {
    width: 48%;
    margin-left: 20px;
    color: #fff;
    /* Varsayılan yazı rengi siyah */
}

.white-text {
    color: #fff;
    /* Beyaz yazı rengi */
}

@media (min-width: 992px) {

    /* 3'lü içerik yan yana gelecek şekilde ayarlanır */
    .about-section:nth-child(2) .about-content {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .about-section:nth-child(2) .about-content {
        width: 100%;
    }
}

.image-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;

    z-index: -1;
}


.section2_container .column-right h4 {
    /* İçeriği alt köşeye hizala */
    left: 0;
    /* İçeriği sol köşeye hizala */
    color: white;
    z-index: 5;
    position: absolute;
    /* Resmin pozisyonunu ayarla */
    margin: 10px;
    font-size: 18px;
    padding: 10%;
}

.section2_container .column-right p {
    top: 0;
    /* İçeriği üst köşeye hizala */
    right: 0;
    /* İçeriği sağ köşeye hizala */
    color: white;
    z-index: 2;
  
    /* Resmin pozisyonunu ayarla */
    margin: 10px;
    font-size: 18px;
    padding: 4%;
}

/* Tablet ekranlarında yazı tipini küçült */
@media (min-width: 600px) and (max-width: 1280px) {
    .section2_container .column-right p {
        font-size: 14px;
        /* Yazı tipi boyutunu küçült */
    }

    .section2_container .column-left {
        max-height: 300px !important;
    }
}

/* Uzun tabletler ve katlanabilir telefonlar için daha küçük yazı tipi */
@media (min-width: 600px) and (max-height: 1500px) and (orientation: portrait) {
    .section2_container .column-right p {
        font-size: 11px;
        /* Uzun tabletler ve katlanabilir telefonlar için daha da küçük yazı tipi */
    }
}

.section2_container .column-left img {
    position: absolute;
    /* Resmin pozisyonunu ayarla */
    top: 0;
    left: 0;
    width: 100%;
    /* Div genişliğine uyacak şekilde */
    height: 100%;
    /* Div yüksekliğine uyacak şekilde */
    object-fit: cover;
    /* Resmi kaplayacak şekilde kırpar */
    z-index: 1;
    /* Resmi arka planda tutar (isteğe bağlı) */
    transition: scale 1s ease;
}
@media (max-width:768px){
    .section2_container .column-left {
        margin-left:0px!important;
    }
}
.section2_container .column-left {
    border-radius:4px;
    position: relative;
    /* Resmi kapsayıcı div için relatif pozisyonlama */
    height: 300px;
    /* Div yüksekliği (isteğe bağlı olarak ayarlanabilir) */
    overflow: hidden;
    /* Resmin taşmasını önler */
    background: linear-gradient(to top, #000000, #ffffff00);
}

.section2_container .column-right {
        
    border-radius: 4px;
    position: relative;
    /* Resmi kapsayıcı div için relatif pozisyonlama */
    height: 300px;
    /* Div yüksekliği (isteğe bağlı olarak ayarlanabilir) */
    overflow: hidden;
    /* Resmin taşmasını önler */
}

.section2_container .column-left img:hover {
    scale: 105%;
}

.section_Text {
    bottom: 5;
    /* İçeriği alt köşeye hizala */
    left: 0;
    /* İçeriği sol köşeye hizala */
    color: white;
    z-index: 2;
    font-size: 26px;
    padding-left: 2%;
}

/* --------------------------------------------------------------------*/

/* Row ve Column Ayarları */
/* Row ve Column Ayarları */
.row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Satırlar arasındaki boşluk */
}

.column {
    display: flex;
   
    gap: 20px;
    /* Bağlantılar arasındaki boşluk */
    margin: 0 20px;
}

.column a {
    position: relative;
    width: 32%;
    /* Üç sütun arasında eşit dağılım */
    display: block;
    overflow: hidden;
    /* Resmin büyüdüğünde taşan kısımlarını gizler */
}

.column a img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Resmin bağlantıyı tamamen kaplaması için */
    transition: transform 1s ease;
    /* 'scale' yerine 'transform' kullanılmalı */
}

.column a img:hover {
    transform: scale(1.05);
    /* Resmi %105 oranında büyütür */
}

.column a h4 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin: 0;
    color: white;
    /* Yarı saydam arka plan */
    padding: 5px;
}

/* Slider Başlangıçta Gizli */
.slider {
    position: relative;
    width: 80%;
    max-height: 200px !important;
    overflow: hidden;
    margin: auto;
    /* Merkezi konumlandırma */
}

.slider-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 1 0 100%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    height: 300px;
    /* Varsayılan yükseklik */
    position: relative;
    text-align: center;
    color: white;
    /* Yazı rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    /* Daha okunabilir yazı */
}

.slide h4 {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
    padding: 20x;
    /* Arka plan rengi */
}

/* Slider kontrol butonları */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Masaüstü için */
@media (min-width: 1024px) {
    .slider {
        width: 100%;
        max-height: 400px;
        /* Daha büyük bir yüksekliğe sahip */
    }

    .slide {
        height: 400px;
        /* Daha büyük bir yükseklik */
    }
}

/* Tabletler ve küçük ekranlar için */
@media (max-width: 1024px) and (min-width: 768px) {
    .slider {
        width: 90%;
        max-height: 300px;
        margin: auto;
        /* Merkezi konumlandırma */
    }

    .slide {
        height: 300px;
    }
}

/* Mobil için */
@media (max-width: 768px) {
    .row {
        display: none;
        /* Mobilde .row gizli olacak */
    }

    .slider {
        display: block;
        /* Mobilde slider görünür */
    }
}

/* Diğer ekran boyutları için .row'yu yeniden görünür yapın */
@media (min-width: 769px) {
    .row {
        display: flex;
        /* Masaüstü ve tabletlerde .row görünür */
    }

    .slider {
        display: none;
        /* Masaüstü ve tabletlerde slider gizli */
    }
}


/* --------------------------------------------------------- */

.form-container {
    background: #3d3d3d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

input[type="email"] {
    width: -webkit-fill-available;
    padding: 10px 40px 10px;
    border: 2px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: #ffffff;
}

.error-text {
    color: orange;
    font-size: 14px;
    display: none;
    margin-top: 5px;
}

.error-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: orange;
    display: none;
    pointer-events: none;
}

.column-right button {
    width: -webkit-fill-available;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: #303030;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #3f3f3f;
}

.invalid input[type="email"] {
    border-color: orange;
}

.invalid .error-text {
    display: block;
    z-index: 3;
    padding: -0.2%;
}

.section3_container .column-right h4 {
    top: 0;
    /* İçeriği alt köşeye hizala */
    left: 0;
    /* İçeriği sol köşeye hizala */
    color: white;
    z-index: 2;
    position: absolute;
    /* Resmin pozisyonunu ayarla */
    margin: 10px;
    font-size: 18px;
    padding: 100%;
    display: none;
}

@media (max-width: 767px) {
    .section3_ .section2_container .column-left {
        display: none;
    }

    .section3_ .section2_container .column-right {
        display: block;
        width: 100%;
        /* Genişliği %100 yap */
        height: 40vh auto;
        /* Yüksekliği tam ekran yap */
        /* Alternatif olarak, height: auto; if you want it to expand based on content */
    }

    .section3_ .section2_container .column-right input[type="email"] {
        width: 90%!important;
        padding: 10px 40px 10px;
        border: 2px solid #ccc;
        border-radius: 25px;
        outline: none;
        font-size: 12px;
        transition: border-color 0.3s;
    }
    #emailForm{
        padding-bottom:10px;
    }
    .tabs{
        margin-top:90px!important;
        flex-wrap:wrap;
    }
   
}

/*---------------------------------------------*/

.section4 .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Satırlar arasındaki boşluk */
}

.section4 .column {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* Bağlantılar arasındaki boşluk */
    margin-right: 50px;
    margin-left: 50px;
}

.section4 .column a {
    position: relative;
    width: 32%;
    height: 300px;
    /* Üç sütun arasında eşit dağılım */
    display: flex;
    overflow: hidden;
    /* Resmin büyüdüğünde taşan kısımlarını gizler */
}

.section4 .column .big {
    position: relative;
    width: 66%;
    height: 300px;
    /* Üç sütun arasında eşit dağılım */
    display: flex;
    overflow: hidden;
    /* Resmin büyüdüğünde taşan kısımlarını gizler */
}

.section4 .column a img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Resmin bağlantıyı tamamen kaplaması için */
    transition: transform 1s ease;
    /* 'scale' yerine 'transform' kullanılmalı */
}

.section4 .column a img:hover {
    transform: scale(1.05);
    /* Resmi %105 oranında büyütür */
}



.section4 .slider {
    position: relative;
    width: 80%;
    max-height: 200px !important;
    overflow: hidden;
    margin: auto;
    /* Merkezi konumlandırma */
}

.section4 .slider-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.section4 .slide_Section4 {
    flex: 1 0 100%;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    height: 300px;
    /* Varsayılan yükseklik */
    position: relative;
    text-align: center;
    color: white;
    /* Yazı rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    /* Daha okunabilir yazı */
}

.section4 .slide_Section4 h4 {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
    padding: 20x;
    /* Arka plan rengi */
}

/* Slider kontrol butonları */
.section4 .slider .prev,
.section4 .slider .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.section4 .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.section4 .slider .prev:hover,
.section4 .slider .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (min-width: 1024px) {
    .section4 .slider {
        width: 100%;
        max-height: 400px;
        /* Daha büyük bir yüksekliğe sahip */
    }

    .section4 .slide {
        height: 400px;
        /* Daha büyük bir yükseklik */
    }

    .section4 .row {
        display: flex;
        /* Masaüstü ve tabletlerde .row görünür */
    }
}

/* Tabletler ve küçük ekranlar için */
@media (max-width: 1024px) and (min-width: 768px) {
    .section4 .slider {
        width: 90%;
        max-height: 300px;
        margin: auto;
        /* Merkezi konumlandırma */
    }

    .section4 .slide {
        height: 300px;
    }

    .section4 .row {
        display: flex;
        /* Tabletlerde .row görünür */
    }
}

/* Mobil için */
@media (max-width: 768px) {
    .section4 .row {
        display: none;
        /* Mobilde .row gizli olacak */
    }

    .section4 .slider {
        display: block;
        /* Mobilde slider görünür */
    }
}

/* ------------------------------------------------ */


.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.85) 20%, 
        rgba(0, 0, 0, 0.90) 40%, 
        rgba(0, 0, 0, 0.95) 60%, 
        rgba(0, 0, 0, 1) 80%, 
        rgba(0, 0, 0, 1.3) 100%);
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1001;
}


/* Menü Açıkken */
.menu.open {
    transform: translateX(0);
}

/* Mobil Ekran Ayarları */
@media (max-width: 768px) {
    .menu {
        width: 100%;
        /* Mobilde genişliği %100 yap */
        transform: translateX(100%);
        /* Menü başlangıçta kapalı */
    }

    .menu.open {
        transform: translateX(0);
        /* Menü açıldığında görünür */
    }
}

@media (max-width: 768px) {
    .photo-panel {
        display: none;
        /* Mobil ekranlarda .photo-panel görünmez */
    }
}

.photo-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Opaklık ve konum değişimi için geçiş efekti */
    opacity: 0;
    /* Başlangıçta saydam */
    transform: translateX(-100%);
    /* Panelin başlangıçta görünmemesi için */
    z-index: 1001;
    /* Menü panelinden önce gelir */
    background: url(https://abass.online/image.jpeg);
    background-size: auto;
    overflow-y: auto;
}

.menu.open~.photo-panel {
    opacity: 1;
    /* Menü açıldığında opaklığı artır */
    transform: translateX(0);
    /* Menü açıldığında fotoğraf panelini kaydır */
}

.icons {
    position: relative;
    z-index: 1002;
    /* Fotoğraf panelinin üstünde kalması için */
}

.icon-container-exit {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding:15px;
}

.icon-container-exit img {
    color: rgb(255, 255, 255);
    max-inline-size: 17px;
}

.menu_content_container {
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    padding-top: 40px;
}

/* Sütunların düzeni */
.menu_content_columns {
    display: flex;
    /* Sütunları yan yana hizalar */
    gap: 20px;
    /* Sütunlar arasındaki boşluk */
}

/* Her sütun için düzenleme */
.menu_content_column {
    flex: 1;
    display:flex;
    flex-direction:column;
    gap:13px;
    /* Sütunlar eşit genişlikte olur */
}

/* Başlık ve bağlantı ayarları */
.menu_content_title {
    margin: 0 0 10px 0;
    /* Başlık üst ve alt boşluklarını ayarlar */
    font-size: 12px;
    /* Başlık metin boyutu */
}

/* Liste bağlantıları */
.menu_content_link {
    display: block;
    /* Her bağlantıyı yeni satıra yerleştirir */
    text-decoration: none;
    /* Alt çizgiyi kaldırır */
    color: #aaaaaa;
    /* Link rengi */
    font-size: 30px;
    /* Link metin boyutu */
    margin: 0px 0;
    /* Bağlantılar arasında boşluk */
}

.menu_content_linkRight {
    display: block;
    /* Her bağlantıyı yeni satıra yerleştirir */
    text-decoration: none;
    /* Alt çizgiyi kaldırır */
    color: #aaaaaa;
    /* Link rengi */
    font-size: 19px;
    /* Link metin boyutu */
    margin: 5px 0;
    /* Bağlantılar arasında boşluk */
    transition: color 0.3s ease;
}

.menu_content_linkRight:hover {
    color: #303030;
    /* Üzerine gelindiğinde altını çizer */
}

.menu_content_selected {
    color: #fff;
    /* Link rengi */
}

/* Resim ve bağlantı düzeni */
.menu_content_link_with_img {
    display: flex;
    /* Resim ve bağlantıları yatayda hizalar */
    align-items: center;
    /* Resim ve bağlantıyı dikeyde ortalar */
    margin-bottom: 10px;
    /* Öğeler arasında boşluk */
}

.menu_content_img {
    width: 20px;
    /* Resim genişliği */
    height: 20px;
    /* Resim yüksekliği */
    margin-right: 10px;
    background-color:#fff;
    padding:5px;
    /* Resim ile bağlantı arasına boşluk */
}

.hiddenContent {
    display: none;
}

.round-container {
    position: fixed;
    display: flex;
    gap: 10px;
    /* Yuvarlaklar arasındaki boşluk */
    padding: 50px;
    /* Kenarlardan boşluk */
    left: 0;
    bottom: 0;
}

.round-right-container {
    position: fixed;
    display: flex;
    gap: 10px;
    /* Yuvarlaklar arasındaki boşluk */
    padding: 50px;
    /* Kenarlardan boşluk */
    right: 0;
    bottom: 0;
}
@media(max-width:768px){
    .round-right-container{
        padding:0px!important;
        margin-bottom:150px;
        
    }
    .round-right-container a .atolyede-hayat{
        font-size:40px!important;
    }
}
.round {
    width: 25px;
    /* Yuvarlağın genişliği */
    height: 25px;
    /* Yuvarlağın yüksekliği */
    border-radius: 50%;
    /* Yuvarlak şekil */
    background-color: #ddd;
    /* Arka plan rengi */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Taşan içeriği gizle */
}

.round img {
    width: 15px;
    /* SVG'nin genişliği */
    height: 15px;
    /* SVG'nin yüksekliği */
}

.menuSrc {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.85) 20%, 
        rgba(0, 0, 0, 0.90) 40%, 
        rgba(0, 0, 0, 0.95) 60%, 
        rgba(0, 0, 0, 1) 80%, 
        rgba(0, 0, 0, 1.3) 100%);
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1001;
    overflow-y: auto;
}

.menuSrc.open {
    transform: translateX(0);
}

@media (max-width: 767px) {
    .menuSrc {
        width: 100%;
        /* Menü genişliği mobilde tam ekran */
        height: 100%;
        /* Menü yüksekliği mobilde tam ekran */
    }
}

.menuSrc.open~.photo-panel {
    opacity: 1;
    /* Menü açıldığında opaklığı artır */
    transform: translateX(0);
    /* Menü açıldığında fotoğraf panelini kaydır */
}


.content_search_container {
    text-align: center;
    margin-top:100px;
}

/* Dikdörtgen arama çubuğu */
.content_search_input {
    
    max-width:400px;
    padding:20px;
    border-radius:10px;
    height: 10px;
    
    background-color: #ececec;
    text-decoration: none;
}

@media (max-width: 768px) {
    .content_search_input {
        width: 90%;
        /* Mobilde genişlik %100 olacak */
        height: 40px;
        /* Daha yüksek bir yükseklik de ayarlayabilirsiniz */
        padding: 8px;
        /* Daha küçük bir padding */
    }
}

/* Yazı grupları */
.content_search_text_group {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.content_search_text_group div {
    display: flex;
    align-items: center;
}

/* İlk yazı */
.content_search_text_group a {
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
}

.content_search_text_group a:nth-child(even) {
    color: #800000;
    /* Bordo */
    text-decoration: none;
}

/* Alt kısım için 8 adet div */
.content_search_div_group {
    display: row;
    flex-wrap: column;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.content_search_div {
    width: 150px;
    padding: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content_search_div img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.menuSrc .content_search_div_group h4 {
    color: #000;
    text-decoration: none;
}


 .footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 3px solid lightgray; 
    margin-top:50px;
}

/* Footer İçerik */
.footer-left, .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Footer Left İçerik */
.footer-left h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #b0b0b0;
}

.footer-links a {
    text-decoration: none;
    color: #b0b0b0;
}

.footer-links a:hover {
    color: #fff;
}

/* Sosyal Medya İkonları ve Back to Top Butonu */
@media (max-width:768px){
    .social-media{
        margin-top:10px;
    }
}
.social-media {
    display: flex;
    gap: 15px;
    align-items: center; /* İkonları ortalayarak hizala */
}

.social-icon img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    padding: 10px;
    transition: background-color 0.3s ease;
}
#email::placeholder {
    color: white;
}

.social-icon img:hover {
    background-color: #555;
}

/* Back to Top Butonu */
.back-to-top {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-left: 20px; /* Sosyal medya ikonlarından biraz boşluk bırak */
    display: flex;
    align-items: center;
}

.back-to-top:hover {
    color: #b0b0b0;
}
a:hover{
    color:#fff!important;
    text-decoration:none!important;
}
/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between; /* Yan yana hizalamak için */
    width: 100%; /* Alanın tamamını kullan */
    margin-top: 20px;
    font-size: 12px;
    color: #b0b0b0;
}

.footer-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    margin-right: 20px;
}

.footer-bottom a:hover {
    color: #fff;
}

/@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding: 20px;
    }

    .footer-left, .footer-right {
        width: 100%; /* Her iki tarafı tam genişlikte yap */
        text-align: center; /* İçerikleri ortala */
        margin-bottom: 20px; /* Alt boşluk ekle */
    }

    /* Footer Links mobilde alt alta gelsin */
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Sosyal medya ikonları merkezde hizalansın */
    .social-media {
        justify-content: center;
        margin-bottom: 20px; /* Alt boşluk */
    }

    .social-icon img {
        width: 30px; /* Sosyal medya ikonlarını biraz büyüt */
        height: 30px;
    }

    /* Back to Top butonu ortalansın */
    .back-to-top {
        justify-content: center;
        margin: 10px 0; /* Üst ve alt boşluk ekle */
    }

    /* Footer Bottom mobilde alt alta gelsin */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }

    .footer-bottom a {
        margin-bottom: 10px; /* Alt boşluk ekle */
    }
}

/*------------------------------------------------------------------------------*/

/* İçerik konteynırı */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    max-height: 600px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-top: 100px;
}

/* Konteynır Kutuları */
.about_ourmission,
.about_ourvision,
.about_ {
    background-color: white;
    padding: 30px;
    width: 30%;
    height: 90%;
    /* Genişlik ayarı */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    box-sizing: border-box;
}

/* H3 başlık stilleri */
.about_ourmission h3,
.about_ourvision h3,
.about_ h3 {
    margin-top: 0;
    color: #333;
}

/* Paragraf stilleri */
.about_ourmission p,
.about_ourvision p,
.about_ p {
    color: #666;
}

.Title {
    position: block;
    padding-top: 120px;
    font-size: 50px;
    color: #ddd;
    text-align: center;
}

.TitleC {
    position: block;
    padding-top: 120px;
    font-size: 30px;
    color: #ddd;
    text-align: center;
}

.TitleP {
    margin-top: -50px;
    position: block;
    font-size: 18px;
    color: #d1d1d1b7;
    text-align: center;
}

/* Yeni bölüm için stil ayarları */
.about_person {
    padding: 50px 20px;
}

.about_person {
    padding: 50px 20px;
}

.person-section {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Satırlar arasındaki boşluk */
}

/* Satır düzeni */
.person-row {
    display: flex;
    align-items: center;
    width: calc(50% - 20px);
    /* Üçlü yerleşim için her satırın genişliği */
    box-sizing: border-box;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    background-color: #ffffff;
    /* Beyaz arka plan */
    border-radius: 8px;
    /* Kenarları yuvarlat */
}

/* Fotoğraf kısmı */
.person-photo {
    width: 100px;
    /* Fotoğraf genişliği */
    height: 100px;
    /* Fotoğraf yüksekliği */
    background-size: cover;
    /* Fotoğrafı kapsayıcı */
    background-position: center;
    /* Fotoğrafın ortalanması */
    border-radius: 50%;
    /* Yuvarlak fotoğraf */
    margin-right: 20px;
    /* Fotoğraf ile bilgi arasındaki boşluk */
}

/* Bilgi kısmı */
.person-info {
    flex: 1;
    /* Bilgi kısmının kalan alanı kaplamasını sağlar */
}

.person-name {
    margin: 0;
    color: #333;
    /* Başlık rengi */
    font-size: 20px;
    /* Başlık boyutu */
}

.person-description {
    margin-top: 10px;
    color: #666;
    /* Paragraf rengi */
    font-size: 16px;
    /* Paragraf boyutu */
    line-height: 1.6;
    /* Satır yüksekliği */
}

/* Mobil uyumlu düzenleme */
@media (max-width: 768px) {
    .person-row {
        width: 100%;
        /* Mobilde tam genişlik */
        flex-direction: column;
        /* Üst üste yerleştirme */
        align-items: flex-start;
        /* Sol hizalama */
    }

    .person-photo {
        margin-bottom: 10px;
        /* Fotoğraf ile bilgi arasındaki boşluk */
    }
}

.about_container {
    display: flex;
    flex-wrap: wrap;
    /* Satıra sığmayan öğeleri bir alt satıra alır */
    gap: 20px;
    /* Konteynırlar arasındaki boşluk */
    justify-content: center;
    /* Konteynırları ortalar */
    padding: 20px;
}

/* Konteynır stilleri */
.about_item {
    width: calc(25% - 100px);
    /* 3 konteynır yan yana olacak şekilde genişlik ayarı */
    height: 400px;
    /* Konteynır yüksekliği */
    border-radius: 8px;
    /* Kenarları yuvarlatma */

    /* Hafif gölge */
    overflow: hidden;
    /* Resmin taşmasını engelleme */
    /* Hover efekti için geçiş */
}

/* Fotoğraf kısmı */
.about_image {
    width: 100%;
    height: 70%;
    background-size: cover;
    /* Resmin tüm konteynırı kaplaması için */
    background-position: center;
    /* Resmin ortalanması */
}

/* Metin kısmı */
.about_text {
    transition: opacity 0.3s ease;
    opacity: 0;
    padding: 10px;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #333;
    /* Yazı rengi */
    background-color: #ffffff;
    /* Metin kısmı arka plan rengi */
}

/* Başlık ve paragraf stilleri */
.about_text h3 {
    margin-top: 0;
}

.about_text p {
    margin: 0;
    color: #666;
}

/* Hover efekti */
.about_text:hover {
    opacity: 100%;
    /* Konteynırı 10px yukarı kaydır */
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 768px) {
    .about_item {
        width: calc(50% - 20px);
        /* Mobilde 2 konteynır yan yana olacak şekilde genişlik ayarı */
    }
}

/* Daha küçük ekranlar için */
@media (max-width: 480px) {
    .about_item {
        width: 100%;
        /* Küçük ekranlarda tek konteynır genişliği */
    }
}

.about_do_section {
    padding: 40px;
    background-color: #464646;
    /* Arka plan rengini ayarlayın */
}

/* Konteynır düzeni */
.about_do_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Sütunları üstten hizalar */
    gap: 20px;
    /* Sütunlar arasındaki boşluk */
}

/* Sütun stilleri */
.about_do_column {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    /* Kenarları yuvarlatma */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 500px;
    /* Hafif gölge */
    background-color: #ffffff;
    /* Arka plan rengini ayarlayın */
}

/* Başlık stilleri */
.about_do_title {
    margin-top: 0;
    color: #333;
    /* Başlık rengi */
    font-size: 24px;
    /* Başlık boyutu */
}

/* Paragraf stilleri */
.about_do_paragraph {
    margin-top: 10px;
    color: #666;
    /* Metin rengi */
    font-size: 16px;
    /* Metin boyutu */
    line-height: 1.6;
    /* Satır yüksekliği */
}

/* Mobil uyumlu düzenleme */
@media (max-width: 768px) {
    .about_do_container {
        flex-direction: column;
        /* Sütunları alt alta yerleştirir */
    }

    .about_do_column {
        margin-bottom: 20px;
        /* Alt boşluk ekler */
    }
}

/*---------------------------------------------------------------------------------*/

.projects_separator {
    border: 1px solid #ccc;
    margin: 20px 0;
}

.projects_main {
    padding: 0px 50px;
    
}

.projects_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.projects_title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: white;
}

.projects_count {
    font-size: 18px;
    color: #a8a8a8;
}

.projects_filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.projects_search {
    flex: 2;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.projects_dropdown {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.projects_vertical-line {
    width: 1px;
    height: 40px;
    background-color: #ccc;
    margin: 0 10px;
}

.projects_button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}


.projects_button img {
    width: 16px;
    height: 16px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-top: 2%;
}

.tab-link {
    color: gray;
    border: none;
    padding: 10px 20px;
    margin-right: 5px;
    cursor: pointer;
    font-weight:500;
    transition: background-color 0.3s, transform 0.5s ease;
    border-radius: 5px;
}

.tab-link:hover {
    color: #fff !important;
    transform: scale(1.05); /* Font büyümesi hissiyatı verecek */
}

.tab-link.active {
    color: #fff;
    transform: scale(1.05);
}


.tab-content {
    display: none !important;
}

.tab-content.active {
    display: grid !important;
    /* Veya display: block; */
}

.team_section {
    padding: 50px;
}

.centered_team_photos {
    padding: 50px 0 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .centered_team_photos {
        flex-direction: column;
        /* Alt alta sıralanır */
        gap: 20px;
        /* Telefonda daha uygun bir boşluk */
    }
}


.team_member {
    display: flex;
    align-items: center;
    position: relative;
}

.left_desc .desc {
    margin-right: 20px;
    text-align: right;

}
@media(max-width:768px){
    .left_desc {
        display:flex;
    flex-direction:column-reverse;
    }
    .right_desc {
                display:flex;
    flex-direction:column;

    }
}

.right_desc .desc {
    margin-left: 20px;
    text-align: left;
}

.photo-parallax img {
    width: 270px;
    animation: slide-down 0.8s ease-out forwards;
    transform: translateY(-100px);
    /* Başlangıç noktası yukarıda */
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    height: 330px;
    object-fit: cover;
    transition: transform 0.3s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100px);
        /* Yukarıda başla */
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        /* Normal pozisyonuna otur */
        opacity: 1;
    }
}



.photo .hover_info {
    position: absolute;
    bottom: 10px;
    width: 30%;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    transition: opacity 0.3s;
}

.photo:hover img {
    transform: scale(1.1);
}





.other_team_members {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-top:10%;
}

@media (max-width: 768px) {
    .other_team_members {
        grid-template-columns: 1fr;
        /* Tek sütun, alt alta sıralanır */
    }
}


.other_team_members .team_member {
    width: 100%;
    height: 350px;
    text-align: center;
    position: relative;
    margin-bottom:65px;
}

.other_team_members .team_member img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.3s;
}

.other_team_members .team_member .hover_info {
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
  z-index:1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    opacity:1;
    font-size: 20px;
    white-space:wrap;
    width:0px;

}

.other_team_members .team_member:hover .hover_info {
    opacity: 1;
}

.other_team_members .team_member:hover img {
    transform: scale(1.05);
}


.custom-slider-container {
    position: relative;
    margin: auto;
    overflow: hidden;
 
    max-height: 1080px;
}

.custom-slider {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.custom-slide {
    width: 100%;
    transition: transform 0.5s ease;
}

.custom-slide img {
    height: auto;
    display: block;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    border: none;
}

.custom-prev {
    left: 10px;
}

.custom-next {
    right: 10px;
}

.project-details-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    color: #333;
}

.photo-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.project-info-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.info-title {
    font-weight: bold;
    color: #fff;
}

.info-value {
    color: #fff;
}

.project-description {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.description-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}


.projects_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 sütun */
}

@media (max-width: 768px) {
    .projects_grid {
        grid-template-columns: 1fr;
        /* Tek sütun, her satırda bir öğe */
    }
}


.projects_card {
    overflow: hidden;
    position: relative;
    text-decoration: none;
    gap:0px!important;
}

.projects_card-title {
            font-size: 18px;
            font-weight: 500;
            color: #fff;  /* Siyah başlık rengi */
            margin-bottom: 5px;
            text-transform: capitalize;
        }
.projects_card-description {
    color: white;
    font-size: 12px;
}

.projects_rotate-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    transform: rotate(90deg);
    padding: 5px;
}

.projects_rotate-button img {
    width: 20px;
    height: 20px;
}

/*----------------------------------------------------------------------------------------------------*/

/* Ana Konteynır */
.projectdetails_container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    padding-top: 100px;
    background-color: #f5f5f500;
}

/* Projects Tuşu */
.projectdetails_link {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    margin-right: 10px;
}

/* Slash ve Proje Adı */
.projectdetails_slash,
.projectdetails_projectname {
    font-size: 16px;
    color: #cccccc;
}

/* Resim Konteynırı */
.projectdetails_image_container {
    position: relative;
    width: 100%;
    padding-bottom: 33.33%;
    /* 3:1 oranı için */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Sol Alt Köşe Yazısı */
.projectdetails_text_left {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

/* Sağ Alt Köşedeki UL */
.projectdetails_ul_right {
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* UL İçindeki Konteynırlar */
.projectdetails_button_container {
    margin-left: 10px;
    background-color: white;
    border-radius: 30px;
}

/* Kenarları Yuvarlatılmış Tuş */
.projectdetails_button_text {
    display: block;
    padding: 10px 20px;
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

.projectdetails_column_center {
    width: 50%;
    /* Sayfanın genişliğine göre ayarlayabilirsiniz */
    margin: 20px auto;
    /* Ortaya hizalama */
    text-align: center;
    /* İçerikleri ortalamak için */
}

/* Büyük Tuş */
.projectdetails_button_large {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
}

/* Çizgi */
.projectdetails_separator {
    margin: 20px 0;
    border: none;
    border-top: 2px solid #ccc;
}

/* İçerik Metni */
.projectdetails_content_text {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Sosyal Medya Butonları */
.projectdetails_social_media {
    display: flex;
    justify-content: flex-start;
    /* Sola hizalama */
    gap: 10px;
    /* Butonlar arasındaki mesafe */
}

.projectdetails_social_button {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    display: inline-block;
    background-color: #ffffff;
}

.projectdetails_social_button img {
    padding: 10px;
    background-size: cover;
    background-position: center;
    display: inline-block;
}

.projectdetails_slider_container {
    position: relative;
    padding: 0 10%;
    overflow: hidden;
}

/* Slider İçerik */
.projectdetails_slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 700px;
}

/* Slider Resimleri Arka Plan Olarak Kullanma */
.projectdetails_slide {
    min-width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    background-color: #aaaaaa;
    /* Tüm resimleri gizle */
}

.projectdetails_slide.active {
    display: block;
    /* Sadece aktif olan resmi göster */
}

/* Navigasyon Tuşları */
.projectdetails_nav_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 1;
}

.projectdetails_nav_left {
    left: 10px;
}

.projectdetails_nav_right {
    right: 10px;
}

/* Tam Ekran Tuşu */
.projectdetails_fullscreen_button {
    position: absolute;
    top: 25px;
    right: 12vw;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}


/* Alt Nokta Düğmeleri */
.projectdetails_dots_container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.projectdetails_dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.projectdetails_slider_container:hover .projectdetails_dot {
    opacity: 1;
}

/* Tam Ekran Modu */
.projectdetails_fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /* Ekranın tam genişliği */
    height: 100vh;
    /* Ekranın tam yüksekliği */

    /* Kenarlardan %5 boşluk */
    background-color: #aaaaaa;
    z-index: 1000;
    display: flex;
    justify-content: center;
    /* Yatayda ortala */
    align-items: top;
    /* Dikeyde ortala */
    overflow: hidden;
    /* Taşmayı engelle */
    box-sizing: border-box;
    /* Kenarlık ve dolgu hesaplamasını kapsar */
}

.projectdetails_fullscreen .projectdetails_slide {
    padding-top: 100vh;
    width: 100%;
    /* Kenarlardan %5 boşluk dışında tam genişlik */
    height: max-content;
    /* Yükseklik otomatik ayarlanacak */
    /* Resmin oranını 3:1 olarak ayarla */
    background-position: center;
    /* Arka planın ortalanmasını sağlar */
    background-size: contain;
    /* Resmi kapsayacak şekilde ayarla */
    object-fit: contain;
    /* Resmin kapsama uyum sağlamasını sağlar */
}




.simple_container {
    margin-top: 20px;
    padding: 0 10%;
    /* Yanlardan %10 boşluk */
    background-color: rgb(0, 0, 0, 0);
}

.horizontal_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    /* Beyaz arkaplan */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.left_text {
    font-size: 1.5em;
    font-weight: bold;
}

.toggle_button {
    background-color: #d3d3d3;
    /* Açık gri renk */
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.toggle_button img {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: opacity 0.3s ease;
}

.toggle_button img.hidden {
    opacity: 0;
}

.expandable_container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.expandable_container.active {
    max-height: 500px;
    /* Açıldığında yeterli yüksekliği ayarla */
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 sütun */
    grid-template-rows: auto auto;
    /* 2 satır */
    gap: 10px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

.grid_item {
    padding: 10px;
    position: relative;
}

.item_content {
    display: flex;
    flex-direction: column;
}

.upper_text {
    text-align: left;
    font-size: 1em;
    color: #808080;
}

.lower_text {
    text-align: left;
    font-size: 1em;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*----------------------------------------------------------------------------------------------*/

.expertise_image_container {
    width: 100%;
    height: 600px;
    margin-top: 80px;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.expertise_image_container h2 {
    position: absolute;
    left: 60px;
    bottom: 0px;
    color: white;
    font-size: 30px;
}

.expertise_sections {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.expertise_section {
    width: 40%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    text-decoration: none;
    align-content: end;
    margin-top: 30px;
}

.expertise_section img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    margin-top: 25px;
}

.expertise_section div {
    background-color: rgb(236, 236, 236);
    bottom: 0px;
    display: flex;
    flex-wrap: wrap;

}

.expertise_section div h3 {
    color: rgb(63, 63, 63);
    padding: 20px;
    font-size: 20px;
}

/*----------------------------------------------------------------------------------*/

.expertise_detail {
    width: 30%;
    margin: 0 auto;
    position: absolute;
    /* Göreli pozisyonlama */
    top: 50%;
    /* Sayfanın ortasına gelecek şekilde yukarıdan %50 kaydır */
    transform: translateY(-50%);
    /* Tam ortalamak için yukarıya doğru %50 kaydır */
    background-color: #f0f0f0;
    /* İsteğe bağlı arka plan rengi */
    padding: 20px;
    /* İsteğe bağlı iç boşluk */
    box-sizing: border-box;
    /* Padding'in genişliği etkilemesini engeller */

}


/*-------------------------------------------------------------------------------*/

/* Header ve Footer stili */
.contact_header,
.contact_footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Konteynır ve sütun stili */
.contact_container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.contact_column {
    width: 22%;
    background-color: white;
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact_column::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    background-size: cover;
    opacity: 0.1;
}

/* Başlık, tuş ve daire stili */
.contact_title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.contact_circle {
    width: 30px;
    height: 30px;
    background-color: #252525;
    border-radius: 50%;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Yazı satırı stili */
.contact_text-row {
    margin-bottom: 10px;
}

/* Alt satır stili */
.contact_bottom-row {
    font-size: 0.9em;
    color: #555;
}

.contact_mail_form-container {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    width: 750px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    /* Başlangıçta gizli */
}

.contact_mail_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact_mail_header span {
    color: #777;
    font-size: 20px;
    margin-left: 5px;
}

.contact_mail_header a {
    background-image: url('https://abass.online/your-image-path.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
}

.contact_mail_line {
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.contact_mail_form-group {
    margin-bottom: 15px;
}

.contact_mail_form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact_mail_form-group input,
.contact_mail_form-group select,
.contact_mail_form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    width: 98%;
}

.contact_mail_form-group input:invalid,
.contact_mail_form-group select:invalid,
.contact_mail_form-group textarea:invalid {
    border-color: #f00;
}

.contact_mail_form-group .error {
    color: #f00;
    font-size: 12px;
    display: none;
}

.contact_mail_form-group.invalid .error {
    display: block;
}

.contact_mail_form-group textarea {
    resize: vertical;
}

.contact_mail_submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact_mail_submit-btn:hover {
    background-color: #218838;
}


.contact-container {
    width: 90%;
    margin: auto;
}

@media (min-width: 768px) {
    .contact-container {
        width: 60%;
        margin: auto;
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (max-width: 768px) {

    /* 768px ve üzeri için geçerli */
    .contact-header {
        text-align: center;
        margin-bottom: 40px;
        margin-top: 80px;
    }
}

.contact-header h1 {
    font-size: 36px;
}

.contact-header p {
    font-size: 18px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
    /* Dikkat çekici altın sarısı */
}

.project-header p {
    font-size: 18px;
    color: #ccc;
}

    .scroll-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        margin-top:50px;
    }

    .image {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
        position: relative;
        background-size: contain;
        background-position: center;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
    }
    @media (max-width:768px){
            .image {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
        position: relative;
        background-size: cover;
        background-position: center;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
    }
    }

    .image::after {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent); /* Gri efekt */
    }

    .image-text {
        position: absolute;
        bottom: 10px;
        z-index: 10;
        left: 2%;
        color: white;
        font-size: 30px;
        padding: 10px;
        border-radius: 10px;
        
    }

    .image-1 {
        background-image: url('https://abass.online/insaat1.jpeg');
    }

    .image-2 {
        background-image: url('https://abass.online/insaat2.jpeg');
    }

    .image-3 {
        background-image: url('https://abass.online/insaat3.jpeg');
    }

    @keyframes moveRight {
        0% {
            background-position: center;
        }

        100% {
            background-position: right;
        }
    }

    @keyframes moveLeft {
        0% {
            background-position: center;
        }

        100% {
            background-position: left;
        }
    }
</style>

.project-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.project-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.project-description {
    flex: 3;
    background-color: rgba(54, 100, 139, 0.2);
    padding: 20px;
    border-radius: 8px;
}

.project-description h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.project-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
}

.project-info {
    flex: 1;
    background-color: rgba(54, 100, 139, 0.2);
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.project-info ul {
    list-style: none;
}

.project-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ddd;
}

.button-container {
    text-align: center;
    margin-top: 40px;
}

.button-primary {
    padding: 15px 30px;
    background-color: #fff;
    color: #1c1c3c;
    font-size: 18px;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease;
}

.button-primary:hover {
    background-color: #fff;
}

.contact-form {
    color: white;
    background-color: transparent;
    padding:0px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    width: 60%;
    margin: 0 auto;
}

@media (max-width: 768px) {

    /* 768px ve üzeri için geçerli */
    .contact-form {
        color: white;
        background-color: transparent;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 40px;
        width: 95%;
        margin: 0 auto;
    }
}

.contact-form input {
    background-color: transparent !important;
    /* Arka planı siler */
    border: none !important;
    /* Kenarlığı kaldırır */
    outline: none !important;
    /* Seçildiğinde çevresinde oluşan çizgiyi kaldırır */
    font-size: 16px;
}

.contact-form textarea {
    background-color: transparent !important;
    /* Arka planı siler */
    border: none !important;
    /* Kenarlığı kaldırır */
    outline: none !important;
    /* Seçildiğinde çevresinde oluşan çizgiyi kaldırır */
    font-size: 16px;
    resize: none;
    /* Kullanıcının boyutlandırmasını engeller */
    overflow: hidden;
    /* Kaydırma çubuğunu gizler */
    min-height: 50px;
    /* Minimum yükseklik */
}


.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #004080;
    /* Lacivert kenar */
    border-radius: 5px;
    background-color: rgba(54, 100, 139, 0.2);
    color: #fff;
}

.button-primary {
    background-color: rgba(54, 100, 139, 0.2);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.button-primary:hover {
    background-color: #003366;
    /* Koyu lacivert hover */
}

.contact-map {
    text-align: center;
}

.contact-map h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-flexbox {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
}

@media (max-width: 768px) {

    /* 768px ve üzeri için geçerli */
    .contact-flexbox {
        display: flex;
        box-sizing: border-box;
        flex-wrap: wrap;
        text-align: center;
    }
}

.contact-nav-box {
    background-color: #000;
    width: 80px;
    height: 80px;
    display: flex;
    /* Flexbox kullan */
    justify-content: center;
    /* Yatayda ortala */
    align-items: center;
    /* Dikeyde ortala */
    text-align: center;
}

.contact-nav-box i {
    font-size: 40px;
    color: white;
    /* İkon rengini beyaz yap (isteğe bağlı) */
}

@media (min-width: 768px) {

    .contact-container section {
        flex: 1;
        display: flex;
        flex-direction: column;
        /* Ana yön dikey olacak */
        gap: 20px;
        /* Bölümler arasında boşluk */
    }
}


/* Bilgisayar ve tabletlerde flex yapısı */
@media (min-width: 768px) {

    /* 768px ve üzeri için geçerli */
    .contact-container section>div {
        display: flex;
        /* İkon ve metinleri yan yana yerleştir */
        align-items: center;
        /* Dikeyde ortala */
    }
}

@media (max-width: 768px) {

    /* 768px ve üzeri için geçerli */

    .contact-container section>div {
        display: flex;
        /* İkon ve metinleri yan yana yerleştir */
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
        /* Dikeyde ortala */
    }

    .contact-container section>div>div {
        display: flex;
        /* İkon ve metinleri yan yana yerleştir */
        flex-direction: column;
        align-items: start;
        width:100%;
        /* Dikeyde ortala */
    }
}

.contact-nav-box {
    background-color: #000;
    width: 80px;
    /* İkon kutusunun genişliği */
    height: 80px;
    /* İkon kutusunun yüksekliği */
    justify-content: center;
    /* Yatayda ortala */
    align-items: center;
    /* Dikeyde ortala */
    margin-right: 15px;
    /* İkon ve metin arasında boşluk */
}

.contact-nav-box i {
    font-size: 40px;
    /* İkon boyutu */
    color: white;
    /* İkon rengi beyaz */
}

h2,
h3 {
    margin: 0;
    /* Başlıkların varsayılan kenar boşluklarını kaldır */
}

h2 {
    font-size: 18px;
    /* H2 boyutu */
    margin-right: 5px;
    /* H2 ve H3 arasında boşluk */
}

h3 {
    font-size: 15px;
    /* H3 boyutu */
}


.career-container section {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Ana yön dikey olacak */
    gap: 20px;
    /* Bölümler arasında boşluk */
}

.career-header {
    text-align: center;
    margin-bottom: 40px;
}

.career-header h1 {
    font-size: 36px;
}

.career-header p {
    font-size: 18px;
}

.career-form {
    color: white;
    background-color: transparent;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    width: 60%;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .career-form {
        color: white;
        background-color: transparent;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 40px;
        width: 80%;
        margin: 0 auto;
    }
    .career-container{
        margin-top:90px!important;
    }
}

.career-form input {
    background-color: transparent !important;
    /* Arka planı siler */
    border: none !important;
    /* Kenarlığı kaldırır */
    outline: none !important;
    /* Seçildiğinde çevresinde oluşan çizgiyi kaldırır */
    font-size: 16px;
}

.career-form textarea {
    background-color: transparent !important;
    /* Arka planı siler */
    border: none !important;
    /* Kenarlığı kaldırır */
    outline: none !important;
    /* Seçildiğinde çevresinde oluşan çizgiyi kaldırır */
    font-size: 16px;
    resize: none;
    /* Kullanıcının boyutlandırmasını engeller */
    overflow: hidden;
    /* Kaydırma çubuğunu gizler */
    min-height: 50px;
    /* Minimum yükseklik */
}