/* Genel stiller */
body {
    background-color: #f8f8f8;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}


.container {
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}

.section-main-content {
        position: relative;
        padding: 10%;
    }

.section-main-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 10;
        width: 100%;
        height: 100%;
        z-index: -1;
        /* Arka plan video eklemek için */
        /* background: url('video.mp4') no-repeat center center/cover; */
        /* Fotoğraf eklemek için */
        background: url('/img/v/file.gif') no-repeat center center/cover;
        opacity: 0.5; /* İsteğe bağlı: Arka planın opaklığını ayarlar */
    }


/* Header stilleri */
header {
    background: linear-gradient(to right, transparent, #ff0000, transparent); /* Gradient geçiş */
    color: #000000; /* Metin rengi */
    padding: 20px 0;
}

header h1 {
    margin: 0;
}

/* Header (Navbar) stilleri */
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin-right: 30px;
}

header nav ul li a {
    color: #000000; /* Yazı rengi */
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s ease;
    font-weight: bold;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: #ff0000 !important; /* Aktif veya üzerine gelindiğinde yazı rengi */
    font-weight: bold !important; /* Aktif veya üzerine gelindiğinde yazı kalınlığı */
    border: 3px solid #ff0000; /* Kırmızı çerçeve ekliyoruz */
    border-radius: 30px; /* Köşeleri daha fazla yuvarlatıyoruz */
    padding: 5px 10px; /* İçeriği çerçeve ile arasında boşluk bırakıyoruz */
    padding-left: 15px !important;
}

.nav-item {
    display: inline-block;
    margin-right: 5px;
    padding: 10px 5px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav-item.active {
    background-color: #ff0000; /* Aktif sayfa için arka plan rengi */
    color: #ffffff; /* Aktif sayfa için metin rengi */

}

/* Dil Seç düğmesinin arka plan rengini kırmızı yapma */
.dropdown-toggle {
    /*background-color: red !important; /* Önemli: Mevcut stilleri geçersiz kıl */
}
#languageDropdown {
    background-color: transparent; /* Arka plan rengini kırmızı yap */
    border-color: red; /* Kenarlık rengini kırmızı yap */
    color: #ff0000; /* Yazı rengini beyaz yap */
    font-weight: bold; /* Yazıyı kalın yap */

    border: 3px solid #ff0000; /* Kırmızı çerçeve ekliyoruz */
    border-radius: 30px; /* Köşeleri daha fazla yuvarlatıyoruz */
    padding: 5px 10px; /* İçeriği çerçeve ile arasında boşluk bırakıyoruz */
}


/* İçerik bölümü stilleri */
section {
    position: relative; /* Pozisyonu göreceli olarak ayarla */
    padding-bottom: 40px;
    margin-bottom: 40px;
    padding: 0px 0;
}

/* Sectionlar arası çizgi */
section::after {
    content: ''; /* Pseudo-element içeriği */
    position: absolute; /* Pozisyonu mutlak olarak ayarla */
    bottom: 0; /* En alta yerleştir */
    left: 0; /* Soldan başlat */
    width: 100%; /* Genişlik 100% */
    height: 7px; /* Yükseklik 7 piksel */
    background: linear-gradient(to right, transparent, #ff0000, transparent); /* Gradient geçiş */
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1); /* Gölgelendirme efekti */
}

section h2 {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ffc107; /* Hover rengi */
}

/* Footer stilleri */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li {
    display: inline-block;
    margin-right: 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

footer ul li a:hover {
    color: #ff0000; /* veya #666 gibi bir renk kodu */
}

/* Yeni Video stilleri */
.video-container {
    position: relative;
    width: 100%;
}

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

.video-container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

/* Hizmetler bölümü stilleri */
.services {
    padding: 40px 0;
    /*background-image: url('img/v/file.gif'); /* Kullanmak istediğiniz GIF dosyasının yolunu belirtin */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px; /* Başlık boyutunu artırma */
    color: #333; /* Başlık rengini değiştirme */
}

.service-item {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s; /* Dönüş efekti için geçiş ekleme */
}

.service-item:hover {
    transform: translateY(-10px); /* Fare üzerine geldiğinde yukarı kaydırma */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Gölgelendirme efektini artırma */
}

.service-item i {
    font-size: 48px;
    color: #ff0000; /* İkon rengi */
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333; /* Başlık rengi */
}

.service-item p {
    font-size: 16px;
    color: #666; /* Metin rengi */
}

/* Logo boyutu */
.navbar-brand img {
    width: 150px; /* İstenilen genişlik değeri */
    height: auto;
    max-width: 100%; /* Maksimum genişlik değeri */
}

.btn-read-more {
    background-color: #ff0000; /* Kırmızı arka plan rengi */
    color: #fff; /* Beyaz metin rengi */
    border-color: #ff0000; /* Kırmızı kenarlık rengi */
}

.btn-read-more:hover {
    background-color: #cc0000; /* Koyu kırmızı tonu hover durumunda */
    border-color: #cc0000; /* Aynı ton kenarlık hover durumunda */
}

/* Belirli linklerin rengini kırmızı yapma */
.red-link {
    color: red !important;
}

.red-icon {
    color: red;
}