﻿body {
    background-color: white; /* Sayfanın arka plan rengini beyaz yap */
}

.slider-container {
    display: flex;
    justify-content: center; /* Ortaya hizala */
    align-items: center;
}

.rev_slider_wrapper {
    width: 80%; /* Slider genişliği */
    max-width: 1200px; /* Maksimum genişlik */
    margin: auto;
    border-radius: 10px; /* Köşeleri yuvarlat */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
}



/* Navigation Arrows (Geçiş Okları) */
.tp-leftarrow, .tp-rightarrow {
    background: rgba(0, 0, 0, 0.3); /* Şeffaf siyah arka plan */
    color: white;
    padding: 5px 10px; /* Okların boyutunu küçült */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px; /* Oku biraz küçült */
    width: 35px; /* Daire boyutu */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-leftarrow {
    left: 15px;
}

.tp-rightarrow {
    right: 15px;
}
    /* Hover Efekti */
    .tp-leftarrow:hover, .tp-rightarrow:hover {
        background: rgba(0, 0, 0, 0.6); /* Hover durumunda koyulaşsın */
    }

/* Pagination Dots (Alttaki Noktalar) */
.tp-bullets {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

    .tp-bullets div {
        width: 12px;
        height: 12px;
        background: gray;
        margin: 0 5px;
        border-radius: 50%;
        cursor: pointer;
    }

    .tp-bullets .active {
        background: black; /* Aktif olan noktanın rengi */
    }
.gdlr-core-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 90px 20px 55px 20px;
    background-color: #1e1e1e;
}

.gdlr-core-column-service-media {
    transition: transform 0.2s ease-out, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

    .gdlr-core-column-service-media:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.5);
    }

    .gdlr-core-column-service-media img {
      /*  width: 100%;*/ /*nur burayı değiştirdi dünya sıralamasında ktun için*/
        max-width: 280px;
        height: auto;
        border-radius: 10px;
    }

.gdlr-core-event-item-holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Flexbox kullanarak öğelerin taşmasını engeller */
}

.gdlr-core-event-item-list {
    width: 23%; /* Her öğe %23 genişliğinde olacak, böylece 4 öğe yan yana gelir */
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc; /* Hafif bir çerçeve */
    border-radius: 8px; /* Yuvarlatılmış köşeler */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Efekt için geçiş */
}

    .gdlr-core-event-item-list:hover {
        transform: translateY(-5px); /* Hover efektiyle hafif yükselme */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    }

.gdlr-core-event-item-thumbnail img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #dcdcdc; /* Resmin altına çizgi ekler */
}

.gdlr-core-event-item-content-wrap {
    padding: 15px;
    text-align: center;
}

.gdlr-core-event-item-title a {
    color: #163269;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

    .gdlr-core-event-item-title a:hover {
        color: #3db166; /* Hoverda renk değişimi */
    }

/* Tablet Görünümü (1200px - 768px) */
@media (max-width: 1200px) {
    .gdlr-core-column-service-media {
        flex: 1 1 calc(50% - 20px); /* 2 sütun */
        max-width: calc(50% - 20px);
    }
}

/* Küçük Telefonlar ve Büyük Telefonlar (768px ve altı) */
@media (max-width: 768px) {
    .gdlr-core-column-service-media {
        flex: 1 1 calc(50% - 20px); /* 2 sütun */
        max-width: calc(50% - 20px);
    }
}
/* Tablet Görünümü (1200px - 768px) */
@media (max-width: 1200px) {
    .gdlr-core-event-item-list {
        width: 48%; /* 2 sütun olacak */
    }
}

/* Küçük Tabletler ve Büyük Telefonlar (768px - 576px) */
@media (max-width: 768px) {
    .gdlr-core-event-item-list {
        width: 100%; /* 1 sütun olacak */
    }
}

/* Küçük Telefonlar (576px ve altı) */
@media (max-width: 576px) {
    .gdlr-core-event-item-list {
        width: 100%; /* Tam genişlik */
        text-align: center;
    }
}
.about-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    max-width: auto;
    margin: auto;

}

    .about-section h3 {
        text-align: center;
        font-size: 26px;
        color: #163269;
        font-weight: bold;
    }

    .about-section h4 {
        color: #3db166;
        border-left: 5px solid #3db166;
        padding-left: 10px;
    }

    .about-section p {
        font-size: 16px;
        line-height: 1.6;
        color: #444;
    }

    .about-section strong {
        color: #163269;
    }

.contact-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 20px;
    max-width: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

    .contact-container h2 {
        margin-bottom: 15px;
        color: #333;
    }

    .contact-container p {
        margin: 5px 0;
        font-size: 16px;
        color: #555;
    }

    .contact-container a {
        color: #007bff;
        text-decoration: none;
    }

        .contact-container a:hover {
            text-decoration: underline;
        }

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}