
        /* Genel Sıfırlama */
       

       

        /* Slider Ana Kutusu */
        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1920px;
            margin: 0 auto;
            aspect-ratio: 1920 / 975; /* 1920x975 oranını her ekranda korur */
            overflow: hidden;
            background-color: #000;
            
        }

        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Slayt Alanları */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Görselin sünmesini veya bozulmasını engeller */
        }

       

        .slide-content {
            position: absolute;
            bottom: 12%;
            left: 8%;
            color: #fff;
            z-index: 3;
            max-width: 600px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
            transition-delay: 0.3s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .slide-content p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Navigasyon Butonları (Oklar) */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, transform 0.2s, border-color 0.3s;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .nav-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .prev { left: 30px; }
        .next { right: 30px; }

        /* Alt Noktalar (Dots) */
        .dots-container {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 16px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        .dot.active, .dot:hover {
            background: #fff;
            transform: scale(1.2);
        }

    

        /* Mobil Ekranlar İçin Optimizasyon */
        @media (max-width: 768px) {
            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
            .prev { left: 15px; }
            .next { right: 15px; }
            .dots-container { bottom: 15px; }
        }

/* Masaüstünde gizle, sadece mobilde göster */
.mobile-menu-contact {
    display: none; 
    padding: 20px;
	
    border-top: 1px solid #eee; /* Menüden ayıran ince bir çizgi */
    flex-direction: column;
    gap: 15px; /* Elemanların arasındaki boşluk */
}

/* İletişim satırlarının genel stili */
.mobile-menu-contact .contact-item {
    display: flex;
    align-items: center;
    color: #FFF; /* Yazı rengi */
    text-decoration: none;
    font-size: 16px;
}

/* İkonların stili (Eğer FontAwesome vb. kullanıyorsanız) */
.mobile-menu-contact .contact-item i {
    margin-right: 12px;
    color: #007bff; /* İkon rengi (Örn: Mavi) */
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Medya Sorgusu: Sadece mobil ekranlarda (991px ve altı) görünür yap */
@media (max-width: 991px) {
    .mobile-menu-contact {
        display: flex; /* Mobilde görünür hale getir */
    }
}

.whatsapp {
    position: fixed;
    left: 15px;
    bottom: 15px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.whatsapp a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #4dc247;
}

.whatsapp .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.whatsapp:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.whatsapp:hover .tooltiptext {
    visibility: visible;
}



.telefon {
    position: fixed;
    left: 15px;
    bottom: 75px;
    transition: all .5s ease-in-out;
    z-index: 999;
}

.telefon a {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    display: block;
    text-align: center;
    line-height: 50px;
    color: white;
    background: #337ab7;
}

.telefon .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    line-height: normal;
    font-size: 15px;
    top: 13px;
    left: 105%;
    height: auto;
}

.telefon:hover a {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.telefon:hover .tooltiptext {
    visibility: visible;
}


.page-header1 {
    position: relative;
    height: 420px;
    background: url("https://www.libertaenerji.com/wp-content/uploads/2022/04/About-Us.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-header1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.page-header-content1{
    position: relative;
    z-index: 2;
    color:white;
}

.page-header1 h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:10px;
}

.page-header1 p{
    font-size:18px;
    margin:0;
}


/* Genel Galeri Izgarası (Grid) */
.galeri-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Her Bir Fotoğraf Kartı */
.galeri-kart {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: block;
  aspect-ratio: 4 / 3; /* Fotoğrafları eşit oranda tutar */
}

/* Kartın İçindeki Resim */
.galeri-kart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease; /* Yumuşak büyüme efekti */
}

/* Üzerine Gelindiğinde Koyu Katman (Overlay) */
.galeri-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.6); /* Sitenizin rengine göre değiştirebilirsiniz */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galeri-overlay span {
  color: #ffffff;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

/* ---- HOVER (ÜZERİNE GELİNCE) EFEKTLERİ ---- */

/* 1. Resmi hafifçe büyüt */
.galeri-kart:hover img {
  transform: scale(1.1);
}

/* 2. Koyu katmanı görünür yap */
.galeri-kart:hover .galeri-overlay {
  opacity: 1;
}

/* 3. "Büyüt" yazısını aşağıdan yukarı doğru hafifçe hareket ettir */
.galeri-kart:hover .galeri-overlay span {
  transform: translateY(0);
}