

/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@font-face {
    font-family: "Righteous";
    src: url("../fonts/Poppins-Black.ttf");
    src: url("../fonts/Poppins.ttf");
}


/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
2) font-family: 'Poppins', sans-serif;
----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
    box-sizing: border-box !important;
    transition: ease all 0.5s;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    color: #666666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
}



/* Bölüm Arasındaki Çizgiler */
.section-divider {
    border-bottom: 2px solid #e0e0e0; /* İnce gri çizgi */
    margin: 30px 0; /* Üst ve alt margin ile boşluk bırak */
    padding-bottom: 20px;
}

/* Genel slider stil */
.haberler_section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.haberler_taital {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Slider içerik */
.carousel-inner {
    display: flex;
    justify-content: space-between;
}

.carousel-item {
    display: flex;
    justify-content: space-between;
}

.carousel-item .col-md-4 {
    margin-bottom: 30px;
}

/* Görsellerin stilini düzenleyelim */
.image_main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image_8 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.text_main {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 5px;
}

.carousel-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.carousel-title:hover {
    color: #fcce2d; /* Altın rengi hover */
}

/* Haber başlığı ve tarih */
.news-info {
    padding: 15px;
    text-align: center;
}

.news-title-tr {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.news-date {
    font-size: 14px;
    color: #999;
}

/* Geçiş butonları */
.carousel-control-prev, .carousel-control-next {
    color: #fcce2d; /* Altın rengi */
    font-size: 30px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #fcce2d; /* Buton ikonlarına altın rengi */
    border-radius: 50%;
    padding: 10px;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%; /* Sayfa yüksekliğini %100 yapar */
}

/* Sayfa içerikleri */
.main-content {
    flex-grow: 1; /* Bu, içerik alanının kalan boşluğu doldurmasını sağlar */
}

/* Slider Wrapper */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
    background-color: #f5f5f5; /* Hafif gri arka plan */
    border-radius: 10px;
    overflow: hidden; /* Taşan içerikleri gizler */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Gölgeleme efekti */
}

/* Carousel içeriği */
.carousel-inner {
    position: relative;
}

/* Carousel item */
.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.carousel-image-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Hafif kararmış overlay */
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Görsellerin stilini düzenle */
.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover; /* Görsellerin doğru şekilde sığmasını sağlar */
    border-radius: 10px;
    z-index: 2;
}

/* Metin kutusu */
.carousel-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Metne hafif gölge */
    max-width: 80%;
}

.carousel-title {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.carousel-title:hover {
    color: #B6894A; /* Koyu altın rengi hover */
}

/* Ok butonları */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #B6894A; /* Koyu altın rengi */
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Butonlara hafif gölge */
    z-index: 3;
}

/* Sol ok butonu */
.carousel-prev {
    left: 20px;
}

/* Sağ ok butonu */
.carousel-next {
    right: 20px;
}

/* Hover efekti: Buton üzerine gelince */
.carousel-prev:hover, .carousel-next:hover {
    background-color: #9E7D40; /* Koyu altın renginin biraz daha koyu tonu */
    transform: translateY(-50%) scale(1.1); /* Buton biraz büyüsün */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Gölge biraz daha belirgin olsun */
}

/* Buton aktifken daha büyük yap */
.carousel-prev:active, .carousel-next:active {
    transform: translateY(-50%) scale(0.95); /* Buton basıldığında biraz küçülsün */
}

/* Butonlar için animasyon efekti */
@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

.carousel-prev, .carousel-next {
    animation: pulse 2s infinite ease-in-out; /* Ok butonlarının yumuşak animasyonu */
}

.news-detail {
    background-color: #fff;  /* Beyaz zemin */
    border-radius: 10px;  /* Yumuşak köşeler */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  /* Hafif gölge */
    padding: 20px;  /* İçerideki boşluk */
    margin-top: 30px;  /* Üstten boşluk */
}

/* Haber Görseli */
.news-image {
    border-radius: 8px;  /* Görsele yuvarlak köşeler */
    overflow: hidden;  /* Görselin taşmasını engelle */
}

.news-date {
    font-size: 16px;
    color: black;
    margin-top: 5px;
    text-align: center;
}

.news-title-tr {
    font-size: 20px;  /* Başlık font büyüklüğü */
    font-weight: bold;  /* Kalın yazı */
    color: #333;  /* Başlık rengi */
    text-transform: uppercase;  /* Başlık büyük harflerle yazılsın */
    margin-top: 20px;  /* Başlık ile üst alan arasına boşluk */
    margin-bottom: 15px;  /* Başlık ile alt alan arasına boşluk */
    letter-spacing: 1px;  /* Harfler arası boşluk */
    text-align: center;  /* Başlık ortalanacak */
}

.news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;  /* Görselin kesilmeden uygun şekilde yerleşmesi */
    transition: transform 0.3s ease;  /* Hoverda büyüme efekti */
}

.news-image img:hover {
    transform: scale(1.05);  /* Görsele hover yapılınca biraz büyüsün */
}

/* Başlık (Haber Başlığı) */
.news-title {
    font-size: 36px;  /* Başlık font büyüklüğü */
    font-weight: bold;  /* Kalın yazı */
    color: #333;  /* Başlık rengi */
    text-transform: uppercase;  /* Başlık büyük harflerle yazılsın */
    margin-top: 20px;  /* Başlık ile üst alan arasına boşluk */
    margin-bottom: 15px;  /* Başlık ile alt alan arasına boşluk */
    letter-spacing: 1px;  /* Harfler arası boşluk */
    text-align: center;  /* Başlık ortalanacak */
}

/* Haber İçeriği (Paragraf) */
.news-content {
    font-size: 18px;  /* İçerik font büyüklüğü */
    line-height: 1.6;  /* Satır yüksekliği */
    color: #555;  /* İçerik metni rengi */
    text-align: justify;  /* Metin iki yana yaslanmış şekilde */
    margin-top: 30px;  /* İçerik ile başlık arasına boşluk */
}

.about-section {
    padding: 50px 0;
    background-color: #ffffff;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Dikey hizalamayı yukarı alarak yerleştirme */
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    max-width: 600px;
    min-width: 300px; /* Metnin çok küçük olmasını engellemek için minimum genişlik */
    overflow: hidden; /* Eğer metin fazla uzarsa, taşan kısmı gizler */
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-top: 30px;
}

.about-text .subheading {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 20px; /* 400px yerine daha mantıklı bir margin */
}

.about-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    flex: 1;
    max-width: 600px;
    min-width: 250px; /* Görselin çok küçük olmasını engellemek için minimum genişlik */
    flex-shrink: 0; /* Resmin küçülmesini engeller */
    padding-top: 100px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-section {
    padding: 50px 0;
    background-color: #f4f7fc;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px; /* Her kartın genişliği */
    max-width: 250px;
    margin-bottom: 30px;
}

.team-photo {
    margin-bottom: 15px;
}

.team-photo img {
    width: 200px;
    height: 270px;
    border-radius: 45%;
    object-fit: cover;
    border: 3px solid #ddd;
}

.team-info .position {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-info .description {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.read-more-btn{
    color: #eec53d;
}

/* Üyeler Bölümü */
.members-section {
    margin-top: 50px;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
}

.members-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.members-category {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-size: 1.6rem;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
}

.members-list p {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
    text-align: center;
}

.members-list p:hover {
    color: #007bff;
    cursor: pointer;
}

.members-list a {
    color: #333;
}

.members-list a:hover {
    color: #007bff;
}

/* Yönetici Detayları Bölümü */
.manager-details {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.manager-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

/* Yönetici Fotoğrafı */
.manager-photo img {
    width: 500px; /* Sabit 500x500 px fotoğraf */
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #453f3f;
    margin-bottom: 20px;
}

/* Yönetici Bilgileri */
.manager-info {
    width: 100%;
}

.manager-name {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.manager-role {
    font-size: 1.5rem;
    color: #090909;
    margin-bottom: 15px;
}

.manager-bio {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
}

.haberler-section {
    padding: 50px 0;
    background-color: #f4f7fc;
    text-align: center;
}

.haberler-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 40px;
}

.haberler-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.haberler-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.haberler-item:hover {
    transform: translateY(-5px); /* Hover efekti */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Hover shadow */
}

.haberler-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
}

.haberler-image video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-bottom: 2px solid #ddd;
}

.haberler-content {
    padding: 20px;
    text-align: left;
}

.haberler-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.haberler-date {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.haberler-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-size: 1rem;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.registration-section {
    padding: 50px 0;
    background-color: #f4f7fc;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 40px;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;  /* Her form elemanına aralık ekler */
}

.form-group label {
    width: 200px;  /* Etiketlere belirli bir genişlik verilir, ihtiyaca göre ayar yapılabilir */
    margin-right: 15px;  /* Etiket ile input arasına mesafe ekler */
    text-align: right;  /* Etiketi sağa hizalar */
}

.form-group input, .form-group select, .form-group .input-group {
    flex-grow: 1;  /* Input'un etiketin geri kalan kısmını doldurmasını sağlar */
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;  /* Checkbox'lar arasına mesafe ekleyebilirsiniz */
}

.checkbox-group input {
    margin-right: 10px;  /* Checkbox ile yazı arasına mesafe ekler */
}

.contact {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 28px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* İletişim formu */
form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form etiketleri */
form .form-label {
    font-weight: bold;
}

/* Buton */
form button {
    margin-top: 10px;
    background-color: #B6894A; /* Koyu altın rengi */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Buton hover efekti */
form button:hover {
    background-color: #9E7D40; /* Buton üzerine gelince koyu altın tonu */
}

/* Google Maps */
#map {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border: 5px solid #B6894A; /* Harita etrafında altın çerçeve */
    border-radius: 8px; /* Köşeleri yuvarlat */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Gölge efekti */
}

.address-container {
    background-color: #f3f3f3; /* Hafif gri arka plan */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Yumuşak gölge */
    margin-bottom: 20px; /* Harita ile arasına boşluk */
}

/* Başlık stilini güçlendir */
.address-container h3 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Adres metni */
.address-container p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

/* İkonlar */
.address-container i {
    color: #B6894A; /* Koyu altın rengi ikonlar */
    margin-right: 10px; /* İkon ile metin arasına boşluk */
}

.checkbox-group {
    text-align: left;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-group input {
    margin-right: 10px;
}

.kvkk-text {
    font-size: 0.9rem;
    color: #555;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

a {
    color: #1f1f1f;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: normal;
    line-height: normal;
    color: #111111;
    margin: 0
}

h1 {
    font-size: 24px
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 13px
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none!important;
    opacity: 1
}

button:focus {
    outline: none;
}

ul,
li,
ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    margin: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}

a {
    color: #222222;
    text-decoration: none;
    outline: none !important;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

:focus {
    outline: 0;
}

.paddind_bottom_0 {
    padding-bottom: 0 !important;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

.form-control:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
    border: none !important;
}

.badge {
    font-weight: 500;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full {
    float: left;
    width: 100%;
}

.layout_padding {
    padding-top: 100px;
    padding-bottom: 0px;
}

.padding_0 {
    padding: 0px;
}

/* header section start */

.logo {
    width: 20%;
}
.header_section {
    width: 100%;   /* Ekranın tam genişliğini kullanacak şekilde ayarlandı */
    height: 500px; /* Sabit yükseklik */
    padding-top: 0px;
    background-repeat: no-repeat;
    overflow: hidden; /* Taşan içerikleri gizler */
    box-sizing: border-box;
    margin: 0 auto; /* Ortalamak için */
}

/* Carousel item genişliği ve yüksekliğini sabitliyoruz */
#my_slider .carousel-item {
    width: 100%;   /* %100 genişlik, çünkü header'ın genişliği sabit */
    height: 500px;  /* Sabit yükseklik */
    position: relative; /* İçerik yerleşiminde sorun yaşanmaması için */
}

/* Resim için object-fit kullanıyoruz */
#my_slider .carousel-item img {
    width: 100%;   /* Resim genişliği %100, tam konteynere yayılacak */
    height: 100%;  /* Resim yüksekliği de %100 */
    object-fit: cover;  /* Resim tam olarak konteyneri doldurur */
    display: block; /* Boşluk oluşmaması için */
}

/* Genel Header Ayarları */
.header_bg {
    width: 100%;
    background-color: #f4f4f4; /* Açık gri arka plan rengi */
    padding: 15px 0; /* Üst ve alt padding */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* Navbar Genel Ayarları */
.navbar {
    width: calc(100% - 20px); /* Navbar genişliğini %100'den 20px eksik yaparak sola kaydır */
    margin-left: 20px;
}
.navbar-nav {
    margin-left: 0px; /* İç öğeleri sola kaydırır */
}

.navbar-nav .nav-link {
    padding: 10px 15px; /* Sol ve sağ padding */
    font-size: 15px; /* Font boyutu */
    color: #333; /* Koyu gri metin rengi */
    text-transform: uppercase; /* Büyük harfler */
    font-weight: 500; /* Orta kalınlıkta yazı */
    transition: color 0.3s ease-in-out; /* Renk geçişi */
}

/* Aktif ve Hover Durumları */
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #0f0e08; /* Altın sarısı rengi */
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #080805; /* Hover'da altın sarısı */
}

/* Sosyal Medya ve Çağrı Butonları */
.call_section {
    display: flex;
    justify-content: flex-start; /* Sosyal ikonları sola hizala */
    gap: 15px;
    margin-left: 20px;
    position: relative; /* Konumlandırmayı kontrol et */
}

.call_section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.call_section li {
    font-size: 25px;
    color: #333;
}

.call_section li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.call_section li a img {
    width: auto;    /* Orijinal genişlikte tut */
    height: auto;   /* Orijinal yükseklikte tut */
    max-width: none; /* Küçülmesini engeller */
    max-height: none; /* Küçülmesini engeller */
}
/* Logo boyutunu sabitlemek için */
.logo img {
    width: auto;     /* Orijinal genişlik */
    height: 100%;    /* Logonun yüksekliğini sabitle */
    max-height: 100%; /* Yüksekliğin, kapsayıcıya sığmasını sağlar */
}

/* Mobilde logo boyutunu daha uygun hale getirmek için */
@media (max-width: 767px) {
    .logo img {
        height: 50px; /* Mobilde logo biraz daha küçük olabilir */
    }
}


@media (max-width: 767px) {
    .call_section li a img {
        width: auto;   /* Mobilde daha küçük bir genişlik */
        height: auto;  /* Yüksekliği otomatik yaparak orantıyı korur */
    }
}
.call_section li a:hover img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(70%) saturate(1000%) hue-rotate(45deg) brightness(120%) contrast(100%);
}


/* Aktif Link Stili */
.navbar-light .navbar-nav .nav-item.active>.nav-link {
    color: #0f0d07; /* Altın sarısı renk */
    font-weight: bold; /* Koyu yazı */
}

/* Donate Button */
.donate_bt {
    width: auto;
    font-size: 16px;
    padding: 8px 15px;
    color: #fff;
    background-color: #eec53d; /* Altın sarısı arka plan */
    text-align: center;
    border-radius: 5px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.donate_bt a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.donate_bt:hover {
    background-color: #d6a033; /* Hover'da daha koyu sarı */
}

.donate_bt a:hover {
    color: #fff; /* Donate button'da hover'da renk değiştirme */
}

/* header section end */

/* banner section start */

.banner_section {
    width: 100%;   /* Ekranın tamamını kapsayacak şekilde ayarlandı */
    max-width: 1903px; /* Genişlik maksimum 1903px olacak şekilde sınırlıyoruz */
    height: 500px;   /* Sabit yükseklik */
    overflow: hidden;  /* Taşan içerikleri gizler */
    margin: 0 auto; /* Ortalamak için */
    box-sizing: border-box;
}

/* Banner title container */
.banner_taital_main {
    width: 100%;   /* Sabit genişlik */
    height: 100%;   /* Yükseklik %100 */
    position: relative;
}

/* Banner title ve text konumlandırmasını yapıyoruz */
.banner_taital {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Ortalamak için */
    font-size: 30px;
    color: #f7f7fd;
    font-weight: bold;
    z-index: 10;
}

.banner_text {
    position: absolute;
    top: 60%;  /* Alt kısmı biraz daha aşağıya yerleştiriyoruz */
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #f7f7fd;
    z-index: 10;
}

/* Butonların konumlandırılması */
.btn_main {
    width: 100%;
    float: left;
    padding-top: 40px;
}

.about_bt {
    width: 170px;
    float: left;
}

.about_bt a {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #030101;
    background-color: #ffffff;
    text-align: center;
    padding: 10px 0px;
    border-radius: 40px;
}

.about_bt a:hover {
    color: #000;
    background-color: #fcce2d;
}
.about_bt.active a {
    color: #000;
    background-color: #fcce2d;
}

.quote_bt {
    width: 170px;
    float: left;
    margin-left: 15px;
}

.quote_bt a {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #ffffff;
    background-color: #191919;
    text-align: center;
    padding: 10px 0px;
    border-radius: 40px;
}

.quote_bt a:hover {
    color: #030101;
    background-color: #fcce2d;
}

#my_slider a.carousel-control-prev {
    position: absolute;
    left: 20px;
    top: 20%;
    background-color: #fff;
    color: #000;
}

#my_slider a.carousel-control-next {
    position: absolute;
    right: 20px;
    top: 20%;
}
#my_slider .carousel-control-prev,
#my_slider .carousel-control-next {
    width: 65px;
    height: 65px;
    background: #fff;
    opacity: 1;
    font-size: 30px;
    color: #000;
    border-radius: 100%;
}

#my_slider .carousel-control-prev:hover,
#my_slider .carousel-control-next:hover,
#my_slider .carousel-control-prev:focus,
#my_slider .carousel-control-next:focus {
    background: #fff;
    color: #000;
}


/* banner section end */



/* services section start */

.services_section {
    width: 100%;
    float: left;
}
.services_section_2 {
    width: 1500px;
    float: left;
}
.services_taital{
    width: 100%;
    float: left;
    font-size: 40px;
    color: #170e09;
    text-align: center;
    font-weight: bold;
}
.services_taital::after {
    content: '';
    position: relative;
    width: 40px;
    height: 17px;
    background-color: #fcce2d;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}


.gallery_main {
    width: 100%;
    float: left;
}

.image_main {
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.image_8 {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.text_main {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.image_main:hover .text_main {
    opacity: 5;
}
.image_main:hover .seemore_text {
    color: #ffffff;
}

.seemore_text {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}

.image_main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 0px;
    display: none;
}

.image_main:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0px;
    right: 0px;
    margin: 0 auto;
    top: 0px;
    display: block;
}

/* services section end */

/* news section start */

/* Genel News Section Stili */
.news_section {
    background-color: #f4f4f4; /* Açık gri arka plan */
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    color: #333; /* Yazı rengi */
}

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

.news_taital {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.news_text {
    text-align: center;
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

.news_section_2 {
    display: flex;
    justify-content: space-between;
    gap: 30px;  /* Masaüstünde aralık */
    flex-wrap: wrap;  /* Mobilde öğelerin alt alta sıralanmasını sağlar */
}

.news_section_2 .col-md-6 {
    flex: 1;
    min-width: 300px;  /* Mobilde öğelerin çok dar olmaması için minimum genişlik */
}

@media (max-width: 767px) {
    .news_section_2 {
        flex-direction: column;  /* Mobilde dikey düzenleme */
        gap: 20px;  /* Mobilde daha küçük boşluk */
    }

    .news_section_2 .col-md-6 {
        flex: none;  /* Her bir öğe full genişlik alacak */
        width: 100%;  /* Genişlik %100 olacak */
    }
}

/* News Box Stil */
.news_taital_box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.news_taital_box .date_text {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
}

.make_text {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.lorem_text {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.news_taital_box a.btn-success {
    width: 120px;
    height: 40px;
    background-color: #28a745;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
}

.news_taital_box a.btn-success:hover {
    background-color: #218838; /* Hover efekti */
}

/* Görseller */
.image_6 {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* news section end */

/* blog section start */

.blog_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
}

.blog_section_2{
    width: 100%;
    border: 2px solid #000;
    padding: 20px;
    margin-top: 50px;
}

.classes_text {
    width: 100%;
    font-size: 30px;
    color: #111111;
    padding-top: 10px;
    font-weight: bold;
    padding-top: 100px;
}

.ipsum_text{
    width: 100%;
    font-size: 16px;
    color: #111111;
    margin: 0px;
}

.image_7{
    width: 100%;
}

.read_bt{
    width: 170px;
    float: left;
    margin-top: 50px;
}
.read_bt a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    background-color: #fcce2d;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
}
.read_bt a:hover{
    color: #ffffff;
    background-color: #000;
}

/* client section start */

.client_section{
    width: 100%;
    float: left;
    background-color: #111111;
    height: auto;
    padding: 90px;
}

.client_taital{
    width: 100%;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
}

.client_taital::after {
    content: '';
    position: relative;
    width: 150px;
    height: 2px;
    background-color: #f7f6f6;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    display: block;
}

.client_section_2 {
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    margin-top: 30px;
    display: flex;
}

.client_left{
    width: 30%;
    padding: 50px 0px 0px 40px;
}

.client_right {
    width: 70%;
    padding: 110px 0px 0px 40px;
}

.client_img {
    width: 100%;
}
.client_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    margin: 0px;
    padding-top: 20px;
    font-family: 'Open Sans', sans-serif;
}
.client_name {
    width: 100%;
    float: left;
    font-size: 30px;
    color: #ffffff;
    padding-top: 20px;
}

#main_slider a.carousel-control-prev {
    position: absolute;
    left: 0px;
    top: 60%;
}

#main_slider a.carousel-control-next {
    position: absolute;
    right: 0px;
    top: 60%;
}

#main_slider .carousel-control-prev,
#main_slider .carousel-control-next {
    width: 65px;
    height: 65px;
    background: #ffffff;
    opacity: 1;
    font-size: 30px;
    color: #000;
    border-radius: 100%;
}

#main_slider .carousel-control-prev:hover,
#main_slider .carousel-control-next:hover,
#main_slider .carousel-control-prev:focus,
#main_slider .carousel-control-next:focus {
    background: #fcce2d;
    color: #fff;
}

/* client section end */


/* newsletter section start */

.newsletter_section{
    width: 100%;
    float: left;
    padding-bottom: 20px;
}

.newsletter_main{
    width: 100%;
    display: flex;
}

.newsletter_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #111111;
    font-weight: bold;
    padding: 0px;
}

.get_quote_bt {
    width: 370px;
    float: right;
    margin-top: 30px;
}
.get_quote_bt a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    background-color: #111111;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
}
.get_quote_bt a:hover {
    color: #ffffff;
    background-color: #fcce2d;
}
.dolor_text{
    width: 100%;
    float: left;
    font-size: 16px;
    color: #2c2c2c;
    margin: 0px;
    padding-top: 20px;
    font-family: 'Open Sans', sans-serif;
}

/* newsletter section end */

/* contact section start */

.contact_section {
    width: 100%;
    float: left;
}

.contact_img {
    width: 100%;
    float: left;
    background-image: url(../images/img-8.png);
    height: 490px;
    background-size: 100%;
    padding: 100px 100px;
}

.padding_left0{
    padding-left: 0px;
}

/* Sayfa Genel Stil */
.content-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.title-section {
    text-align: center;
    margin-bottom: 20px;
}

.title-section h1 {
    font-size: 36px;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: 1px;
}

.description-section {
    font-size: 18px;
    line-height: 1.6;
    color: #34495e;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.description-section p {
    margin: 0;
    font-size: 18px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .content-wrapper {
        width: 95%;
        padding: 20px;
    }

    .title-section h1 {
        font-size: 28px;
    }

    .description-section {
        padding: 20px;
    }
}


.contact_taital {
    width: 37%;
    float: right;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-right: 60px;
}

.map_main {
    width: 100%;
    float: left;
    padding-top: 80px;
}

.news-video {
    position: relative;
    width: 100%;
    border-radius: 8px; /* Kenarları yuvarlamak */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge eklemek */
    overflow: hidden; /* Video taşarsa gizlemek */
}

.news-video video {
    width: 100%; /* Video genişliğini al */
    height: auto; /* Video yüksekliği otomatik olarak ayarlandığından doğru oranda gösterilir */
    border-radius: 8px; /* Video kenarlarını yuvarlamak */
}

.giphy-embed
{
    padding-left: 15px;
}

/* contact section end */

/* Footer */
.footer {
    background-color: #12181f;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    height: auto; /* Footer yüksekliğini otomatik yaparak esnek bırakıyoruz */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box; /* Kenarlık ve padding'in toplam genişliği etkilemesini engelle */
}

/* Footer İçerik Alanı */
.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box; /* Kenarlık ve padding'in toplam genişliği etkilemesini engelle */
}

/* Footer Logo */
.footer .footer-logo img {
    max-width: 170px;
    height: auto;
}

/* Footer Links */
.footer .footer-links {
    display: flex;
    gap: 30px;
}

.footer .footer-links a {
    text-decoration: none;
    color: #ecf0f1;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Copyright Alanı */
.footer .footer-bottom {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #aaa;
    padding: 10px 0;
    margin-top: 20px; /* Copyright alanı ile üstteki içeriğin arasına boşluk ekledik */
}

.footer .footer-bottom a {
    color: #fcce2d;
    text-decoration: none;
}

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

/* Mobil Uyumluluk için Medya Sorguları */

/* 768px ve altındaki ekranlar (Tablet ve mobil cihazlar) */
@media (max-width: 768px) {
    .footer {
        padding: 20px; /* Yalnızca dikey padding ekleniyor, sağ ve sol padding’i kaldırıyoruz */
    }

    .footer .footer-content {
        flex-direction: column; /* İçeriği dikey hizala */
        align-items: center; /* Ortada hizala */
        text-align: center; /* Yazıları ortala */
    }

    .footer .footer-links {
        flex-direction: column; /* Linkleri alt alta yerleştir */
        gap: 10px; /* Linkler arasındaki boşluğu azalt */
        margin-top: 20px; /* Linklerle alt metin arasına mesafe ekle */
    }

    .footer .footer-links a {
        font-size: 16px; /* Mobilde fontu biraz büyüt */
    }

    .footer .footer-bottom {
        font-size: 12px; /* Copyright kısmının font boyutunu küçült */
        padding: 15px 0; /* Alt metni daha rahat okunabilir yapmak için padding ekle */
        margin-top: 20px; /* Copyright ile üst içeriğin arasına boşluk ekle */
    }
}

/* 480px ve altındaki ekranlar (Daha küçük mobil cihazlar) */
@media (max-width: 480px) {
    .footer {
        padding: 20px; /* Yalnızca dikey padding */
    }

    .footer .footer-content {
        padding: 0 10px; /* İçeriğin sağ ve sol kenarlarında boşluk bırakma */
    }

    .footer .footer-links {
        flex-direction: column;
        gap: 8px; /* Daha sıkışık düzen */
    }

    .footer .footer-links a {
        font-size: 14px; /* Link boyutlarını daha da küçült */
    }

    .footer .footer-bottom {
        font-size: 11px; /* Copyright kısmının fontunu daha da küçült */
        padding: 12px 0; /* Alt metni sıkıştırma */
        margin-top: 15px; /* Copyright kısmı ile üst içeriğin arasına mesafe ekleyerek üst üste binmesini engelle */
    }
}



