

/* styles.css */
body {
    font-family: 'Roboto', sans-serif; /* Modern bir yazı tipi seçimi */
    background: linear-gradient(to right, #e7e7e7, #d6d6d6);
 /* Arka plana gradient ekleyin */
    margin: 0;
    padding: 0;
    color: #333; /* Genel metin rengi */
}

/* Başlıklar için stil ayarları */
h1, h2, h3, h4, h5, h6 {
    text-align: center; /* Başlığı ortala */
    font-size: 3rem;
    color:rgba(252, 240, 255, 0.99);
    text-shadow: 2px 2px 8px rgb(231, 162, 245); /* Başlığa gölge efekti ekleyin */
    margin-top: 5;
}

/* Paragraflar için stil ayarları */
p {
    font-family: 'Roboto', sans-serif; /* Paragraflar için font */
    font-weight: 400; /* Normal ağırlık */
    margin-bottom: 15px; /* Paragraflar arası boşluk */
}

/* Linkler için stil ayarları */
a {
    font-family: 'Ariel', sans-serif; /* Linkler için font */
    font-weight: 500; /* Orta ağırlık */
    text-decoration: none; /* Alt çizgi kaldırıldı */
    color: #007bff; /* Link rengi */
}

/* Genel navbar stili */
.navbar {
    background: linear-gradient(45deg, #430e80, #584d66); /* Üst navbar arka plan rengi */
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    height: 60px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(6, 238, 255, 0.6);
    z-index: 99;
}

/* Logo stili */
.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgb(255, 255, 255), rgb(255, 255, 255)); /* Gradyan renkler */
    padding: 1px; /* Arka plan rengini logoya biraz boşluk ekleyerek çevreleyin */
    border-radius: 15px; /* Kenarları yuvarlatmak isterseniz */          
}

/* Logo stili */
.logo img {
    max-width: 130px; /* Logonuzun genişliğini buradan ayarlayabilirsiniz */
    height: auto;
    object-fit: contain; /* Logonun bozulmadan sığmasını sağlar */    
}

/* Logonun sağındaki servis ayırıcı stili */
.service-separator {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Logoyla arayı biraz aç */
}

.line {
    width: 1px;
    height: 40px; /* Çizgilerin yüksekliği */
    background-color: #fff; /* Çizgilerin rengi */
    margin: 0 15px; /* Çizgiler arasındaki boşluk */
}

.services {
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.services span {
    display: block;
    font-size: 20px; /* Metin boyutu */
    margin: 0 5px; /* Metinler arasındaki boşluk */    
}

/* Medya sorguları: Mobil cihazlar için */
@media (max-width: 768px) {
    .service-separator {
        display: flex;
        align-items: center;
        margin-right: 100px; /* Logoyla arayı biraz aç */
        width: 250px;
    }
    
    .line {
        width: 1x;
        height: 40px; /* Çizgilerin yüksekliği */
        background-color: #fff; /* Çizgilerin rengi */
        margin: 0 30px; /* Çizgiler arasındaki boşluk */
    }
    
    .services {
        color: #fff;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .services span {
        display: block;
        font-size: 14px; /* Metin boyutu */
        margin: 0 5px; /* Metinler arasındaki boşluk */
    }
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; /* Linkleri sağa yasla */
}

/* Navbar linklerinin stili */
.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px; /* Yastık alanını artırdım */
    border-radius: 8px; /* Kenarları daha yuvarlak hale getirdim */
    transition: background-color 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s; /* Dönüşüm ekledim */
    display: flex;
    align-items: center;
}

/* İkon boyutu */
.nav-link img.icon {
    width: 20px; 
    height: 20px;
    margin-right: 8px; /* Sağdaki boşluğu artırdım */
}

/* Linklerin üzerine gelindiğinde */
.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Daha şeffaf bir arka plan */
    color: #fff;
    transform: scale(1.05); /* Hover sırasında büyüme efekti */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Gölge efekti */
}

/* Navbar linklerinin sağa yerleştirilmesi */
.navbar-links a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px; /* Yastık alanını artırdım */
    border-radius: 8px; /* Kenarları daha yuvarlak hale getirdim */
    transition: background-color 0.3s ease, transform 0.2s, box-shadow 0.2s; /* Dönüşüm ekledim */
}

/* Navbar linklerinin üzerine gelindiğinde */
.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Daha şeffaf bir arka plan */
    transform: translateY(-3px); /* Yukarı kaydırma efekti */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Gölge efekti */
}

/* Dil seçici buton stili */
.language-selector {
    position: relative;
}

#language-btn {
    background: #fff;
    color: #333;
    border: none;
    padding: 8px 12px; /* Yastık alanını artırdım */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s; /* Dönüşüm ekledim */
}

#language-btn:hover {
    background: #444; /* Daha koyu bir arka plan */
    color: #fff;
    transform: scale(1.05); /* Hover sırasında büyüme efekti */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Gölge efekti */
}

#language-btn.active {
    background: #333;
    color: #fff;
}


/* Pop-up arama kısmı */
.popup {
    display: none; /* Başlangıçta görünmez */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    position: relative;
}

.popup-content input[type="text"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-content button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-content button:hover {
    background-color: #555;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/*----------------------------MOBİL MENÜ-------------------------------*/
/* Hamburger menü stili */
.hamburger-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px; /* Daha büyük ve modern ikon boyutu */
    cursor: pointer;
    z-index: 1000;
    color: #fff;
    margin-top: 6px;
}

/* Mobil menü stili */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Menü başlangıçta gizlenmiş durumda */
    height: 100%;
    width: 280px; /* Biraz daha dar menü */
    background: linear-gradient(45deg, rgba(67, 14, 128, 0.8), rgba(88, 77, 102, 0.8));
    backdrop-filter: blur(8px); /* Daha az belirgin bulanıklık */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Üstten hizalama */
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Pürüzsüz ve profesyonel geçiş */
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3); /* Daha hafif gölge */
}

/* Menü başlığı stili */
.mobile-menu-header {
    width: 75%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    box-sizing: border-box; /* Padding dahil genişlik ve yükseklik hesaplaması */
    margin-bottom: 40px; /* Menü başlığının altına boşluk ekle */
    margin-right: 50px;
}

/* Menü butonları */
.mobile-menu-button {
    color: #fff;
    font-size: 24px; /* İkon boyutu */
    cursor: pointer;
    background: none;
    border: none;    
}

/* Menüdeki linkler */
.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Daha küçük ama okunabilir yazı */
    font-weight: 500;
    padding: 12px 20px;
    margin: 10px 0;
    width: 80%; /* Biraz daha dar link genişliği */
    text-align: center;
    border-radius: 8px; /* Daha az yuvarlatılmış köşeler */
    background-color: rgba(255, 255, 255, 0.05); /* Çok hafif saydam arka plan */
    transition: background-color 0.3s, transform 0.3s;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Üzerine gelince hafif aydınlanma efekti */
    transform: scale(1.03); /* Linkin üzerine gelindiğinde hafif büyüme efekti */
}

/* Menü açıkken sağdan sıfıra yerleştir */
.mobile-menu.open {
    right: 0; /* Menü açıldığında sayfanın içinde görünür */
}

/* Medya sorguları: 768px genişliğin altındaki cihazlar için */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
}

/* Arama popup stili */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.open {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.popup-content input {
    width: calc(100% - 80px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-content button {
    padding: 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


/*----------------------------MOBİL MENÜ-------------------------------*/
/* Hamburger menü stili */
.hamburger-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px; /* Daha büyük ve modern ikon boyutu */
    cursor: pointer;
    z-index: 1000;
    color: #fff;
    margin-top: 6px;
}

/* Mobil menü stili */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Menü başlangıçta gizlenmiş durumda */
    height: 100%;
    width: 280px; /* Biraz daha dar menü */
    background: linear-gradient(45deg, rgba(67, 14, 128, 0.8), rgba(88, 77, 102, 0.8));
    backdrop-filter: blur(8px); /* Daha az belirgin bulanıklık */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Üstten hizalama */
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Pürüzsüz ve profesyonel geçiş */
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3); /* Daha hafif gölge */
}

/* Menü başlığı stili */
.mobile-menu-header {
    width: 75%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    box-sizing: border-box; /* Padding dahil genişlik ve yükseklik hesaplaması */
    margin-bottom: 40px; /* Menü başlığının altına boşluk ekle */
    margin-right: 50px;
}

/* Menü butonları */
.mobile-menu-button {
    color: #fff;
    font-size: 24px; /* İkon boyutu */
    cursor: pointer;
    background: none;
    border: none;    
}

/* Menüdeki linkler */
.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px; /* Daha küçük ama okunabilir yazı */
    font-weight: 500;
    padding: 12px 20px;
    margin: 10px 0;
    width: 80%; /* Biraz daha dar link genişliği */
    text-align: center;
    border-radius: 8px; /* Daha az yuvarlatılmış köşeler */
    background-color: rgba(255, 255, 255, 0.05); /* Çok hafif saydam arka plan */
    transition: background-color 0.3s, transform 0.3s;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Üzerine gelince hafif aydınlanma efekti */
    transform: scale(1.03); /* Linkin üzerine gelindiğinde hafif büyüme efekti */
}

/* Menü açıkken sağdan sıfıra yerleştir */
.mobile-menu.open {
    right: 0; /* Menü açıldığında sayfanın içinde görünür */
}

/* Medya sorguları: 768px genişliğin altındaki cihazlar için */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
}

/* Arama popup stili */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.open {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.popup-content input {
    width: calc(100% - 80px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-content button {
    padding: 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/*------------------------------------------------NAVBAR İÇERİĞİNİN SONU---------------------------------*/
.container {
    max-width: 92%; /* Mobil görünümde taşmayı önlemek için */
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden; /* Yatay taşmayı gizler */
}

.container h1 {
    text-align: center; /* Başlığı ortala */
    font-size: 3rem;
    color: rgba(17, 17, 17, 0.99);
    text-shadow: 2px 2px 8px rgb(197, 197, 197); /* Başlığa gölge efekti ekleyin */
    padding-top: 50px; /* Sadece başlığı aşağıya indirir, container sabit kalır */
    font-family: 'Roboto', sans-serif; 
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center; /* İçeriği yatayda ortala */
    background-color: #9900ff; /* Buton arka plan rengi */
    color: white; /* Yazı rengi */
    border: none; /* Kenar çerçevesi yok */
    border-radius: 50px; /* Tam yuvarlak köşe */
    padding: 10px 20px; /* İç dolgu */
    cursor: pointer; /* Fare işareti */
    transition: background-color 0.3s, transform 0.2s; /* Geçiş efektleri */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
    line-height: 1.5; /* Metin yüksekliği */
}

.back-btn:hover {
    background-color: #b300aa; /* Hover durumu için arka plan rengi */
    transform: translateY(-2px); /* Hover durumunda yukarı hareket efekti */
}

.back-btn i {
    margin-right: 8px; /* İkon ile yazı arasındaki boşluk */
    font-size: 1.2rem; /* İkon boyutu */
    transform: rotate(180deg); /* İkonu sola döndür */
}




.mockup-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Masaüstü görünümde dört sütun */
    gap: 40px; /* Kartlar arası boşluk */
    padding: 40px 0;
    width: 100%;
}

.mockup-card {
    /* Remove background, border, and padding */
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.mockup-info {
    position: absolute; /* Kartın üzerine yerleştirilecek */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Yarı saydam bir arka plan */
    color: white; /* Metin rengi */
    display: flex; /* İçeriği merkezi hale getirmek için flex kullan */
    justify-content: center; /* Yatayda ortala */
    align-items: center; /* Dikeyde ortala */
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.3s ease; /* Geçiş efekti */
    text-align: center; /* Metni ortala */
    padding: 20px; /* İçerik için boşluk */
}

.mockup-card:hover .mockup-info {
    opacity: 1; /* Hover sırasında görünür yap */
}

.mockup-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 3px; /* Köşeleri daha yuvarlak yaptık */    
    background-image: linear-gradient(white, white), radial-gradient(circle, #e0e0e0, #ffffff); /* Modern bir gölge efekti için degrade */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5); /* Hafif gölge ekleyerek daha modern bir efekt */
}

.mockup-card:hover .mockup-img {
    transform: scale(1.05); /* Hafif yakınlaştırma efekti */
    border-color: #a7005c; /* Hover sırasında çerçevenin rengi */
    box-shadow: 0px 8px 30px rgba(167, 0, 92, 0.4); /* Hover sırasında daha belirgin gölge */
}

.view-btn {
    background-color: #62008f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.view-btn:hover {
    background-color: #88006a;
}
.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff3333;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .container h1{
        font-size: 2rem;
        width: auto;
    }

    .view-btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .mockup-gallery {
        grid-template-columns: repeat(2, 1fr); /* Mobilde iki sütun görünümü */
        gap: 15px; /* Kartlar arası boşluğu azalt */
        padding: 20px; /* Kenarlardan boşluk ekle */
    }

    .mockup-card {
        padding: 10px; /* Kartın iç dolgusunu azalt */
    }

    .mockup-img {
        height: 300px; /* Görselin yüksekliğini küçült */
    }

    .mockup-info h3 {
        font-size: 1.2rem; /* Başlık boyutunu küçült */
    }

    .view-btn {
        font-size: 0.9rem; /* Butonun yazı boyutunu küçült */
        padding: 8px 16px; /* Buton dolgusunu azalt */
    }

    .close {
        top: 15px;
        right: 25px; /* Kapatma butonunun konumunu ayarla */
        font-size: 2.5rem; /* Kapatma butonunun boyutunu küçült */
    }
}

@media (max-width: 480px) {
    .mockup-gallery {
        grid-template-columns: repeat(2, 1fr); /* Daha küçük ekranlarda da iki sütun görünümü */
        gap: 10px; /* Kartlar arası boşluğu azalt */
        padding: 10px; /* Kenarlardan boşluk ekle */
    }

    .mockup-img {
        height: 250px; /* Daha küçük ekranlarda görsel yüksekliği */
    }

    .mockup-info h3 {
        font-size: 1rem; /* Başlığı daha da küçült */
    }

    .view-btn {
        font-size: 0.8rem; /* Buton boyutunu iyice küçült */
        padding: 6px 12px; /* Buton dolgusunu azalt */
    }

    .close {
        font-size: 2rem; /* Kapatma butonunu daha küçük yap */
    }
}


/* Modal Style */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Black with transparency */
    opacity: 0;
    transition: opacity 0.4s ease; /* Smooth opening animation */
}

/* Modal open class for fade-in effect */
.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh; /* Maximum height to fit the viewport */
    border: 5px solid rgb(156, 6, 170); /* Add a border for a frame effect */
    border-radius: 10px; /* Border radius for rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.5); /* Drop shadow */
    animation: scale-up 0.4s ease; /* Scale-up animation on opening */
    overflow: hidden; /* Hide overflow to maintain the modal's shape */
}


/* Animation for scaling up */
@keyframes scale-up {
    from {
        transform: scale(0.8); /* Start smaller */
    }
    to {
        transform: scale(1); /* End at normal size */
    }
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ff3333;
    text-decoration: none;
    cursor: pointer;
}

/* Modal responsive behavior */
@media screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Black with transparency */
    opacity: 0;
    transition: opacity 0.4s ease; /* Smooth opening */
}

/* Show modal class for fade-in effect */
.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80vh; /* Max height for viewport */
    border: 5px solid rgb(156, 6, 170); /* Frame effect */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Drop shadow */
    animation: scale-up 0.4s ease; /* Scale-up animation */
}

/* Keyframes for scale-up animation */
@keyframes scale-up {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}


/* WhatsApp butonu stili */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Solda konumlandır */
    z-index: 1000;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #53d617, #c9cfc6);  /* WhatsApp yeşili */
    padding: 15px 20px; /* İçerik için padding artırıldı */
    border-radius: 5px; /* Köşeleri yuvarlak yapmak için */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none; /* Altı çizgiyi kaldır */
    color: white; /* Yazı rengi */
    font-size: 16px; /* Yazı boyutu artırıldı */
    transition: transform 0.3s ease; /* Geçiş efekti */
}

.whatsapp-button img {
    width: 25px; /* İkon boyutu artırıldı */
    height: 25px; /* İkon boyutu artırıldı */
    margin-right: 10px; /* İkon ile yazı arasındaki boşluk */
}

.scroll-to-top {
    position: fixed; /* Sabit konumda tutmak için */
    bottom: 90px; /* Sayfanın altına 90px mesafe */
    right: 30px; /* Sayfanın sağ kenarına 30px mesafe */
    background: linear-gradient(135deg, #6a1b9a, #ab47bc); /* Gradyan arka plan */
    color: #fff; /* Metin rengi */
    border: none; /* Kenarlık yok */
    border-radius: 50%; /* Yuvarlak buton */
    width: 60px; /* Buton genişliği */
    height: 60px; /* Buton yüksekliği */
    display: flex;
    justify-content: center; /* İçeriği ortala */
    align-items: center; /* İçeriği dikey ortala */
    font-size: 28px; /* Yazı boyutu */
    cursor: pointer; /* Fare işaretçisini göster */
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s; /* Geçiş efektleri */
    z-index: 999; /* Diğer öğelerin üstünde görünmesini sağlar */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Gölge efekti */
}

/* Hover durumu */
.scroll-to-top:hover {
    background: linear-gradient(135deg, rgba(142, 36, 170, 0.7), rgba(186, 104, 200, 0.7)); /* Hafif şeffaf gradyan */
    transform: scale(1.1); /* Hover sırasında büyüme efekti */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Hover sırasında daha belirgin bir gölge */
}


/* Hemen Ara butonu stili */
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Sağda konumlandır */
    z-index: 1000;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #ce13a5, #b9b5b8);  /* Telefon butonu rengi */
    padding: 15px 20px; /* İçerik için padding artırıldı */
    border-radius: 5px; /* Köşeleri yuvarlak yapmak için */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none; /* Altı çizgiyi kaldır */
    color: white; /* Yazı rengi */
    font-size: 16px; /* Yazı boyutu artırıldı */
    transition: transform 0.3s ease; /* Geçiş efekti */
}

.call-button img {
    width: 25px; /* İkon boyutu artırıldı */
    height: 25px; /* İkon boyutu artırıldı */
    margin-right: 10px; /* İkon ile yazı arasındaki boşluk */
}

/* Yok olma efekti için */
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease; /* Geçiş süresi */
}

/* Hover efekti */
.whatsapp-button:hover, .call-button:hover {
    transform: scale(1.05); /* Butonların büyümesi */
}

/*-----------------------------------------HEADER SONUUUUUUUUUUUUUUUUU-----------------------------------*/

.footer {
    background: linear-gradient(45deg, #430e80, #584d66);
    color: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 99;
    border-top: 1px solid #444;
}

/* Footer içeriği düzenleme */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Footer logo ortada */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #f1f1f1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 20px;
    color: #f1f1f1;
    text-align: center;
    font-weight: 500;
}

/* Footer bölümlerini yan yana yerleştir */
.footer-sections {
    display: flex;
    justify-content: space-between; /* Eşit boşluklar */
    width: 100%;
    max-width: 1200px; /* Genişlik sınırlaması */
    padding: 20px;
    gap: 40px; /* Bölümler arasındaki boşluk arttırıldı */
}

/* Her başlık bölümü */
.footer-section {
    position: relative; /* Pseudo-elementin konumlandırılması için gerekli */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-align: center; /* Başlıkları ortala */
}

/* Başlık stilleri */
.footer-heading {
    font-size: 28px; /* Başlık boyutu */
    color: #e0b0ff; /* Morun açık rengi */
    font-weight: 700; /* Kalın yazı stili */
    letter-spacing: 1.5px; /* Harfler arasındaki mesafe */
    text-transform: uppercase; /* Tüm harfleri büyük yap */
    margin: 15px 0; /* Üst ve alt boşluk */
    position: relative; /* Alt çizgi için konumlandırma */
    padding-bottom: 5px; /* Alt çizgi ile başlık arasında boşluk */
    transition: color 0.3s, transform 0.3s; /* Renk ve boyut geçiş efektleri */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Gölge efekti */
}

.footer-heading:hover {
    color: #d1c4e9; /* Üzerine gelince daha açık bir mor tonu */
    transform: translateY(-2px); /* Hover etkisi ile yukarı kaydırma */
}

/* Alt çizgi efekti */
.footer-heading::after {
    content: '';
    display: block;
    height: 2px; /* Çizgi yüksekliği */
    background-color: #d1c4e9; /* Çizgi rengi */
    width: 100%; /* Çizgi genişliği */
    position: absolute;
    bottom: 0; /* Başlığın altına konumlandır */
    left: 0; /* Sola hizalı */
    transform: scaleX(0); /* Başlangıçta gizle */
    transition: transform 0.3s; /* Çizgi geçiş efekti */
}

.footer-heading:hover::after {
    transform: scaleX(1); /* Hover etkisi ile çizgiyi göster */
}



/* Alt çizgi */
.footer-section::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Çizginin başlıkla arasındaki mesafe */
    left: 50%; /* Ortalamak için */
    width: 100%; /* Çizgi genişliği, ihtiyaca göre ayarlayın */
    height: 2px;
    background-color: #d1c4e9; /* Başlık rengi ile uyumlu bir alt çizgi rengi */
    opacity: 1;
    transform: translateX(-50%); /* Çizgiyi tam ortalamak için */
}


/* Sosyal medya ikonu ve iletişim kısmı */
.footer-contact p, .footer-social a {
    margin: 5px 0;
    color: #f1f1f1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Sosyal medya ikonları */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: #f1f1f1;
    font-size: 24px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* Copyright kısmı */
.footer-copyright {
    margin-top: 40px;
    font-size: 14px;
    color: #f1f1f1;
    border-top: 1px solid #444;
    padding-top: 10px;
    text-align: center;
}

.start-project-link {
    display: inline-block; /* Buton gibi görünmesi için blok düzeni */
    color: #ffffff; /* Metin rengi */
    background-color: #6200ea; /* Arka plan rengi */
    padding: 10px 20px; /* İçerik boşlukları */
    border-radius: 25px; /* Kenar yuvarlama */
    text-decoration: none; /* Alt çizgi yok */
    transition: background-color 0.3s, transform 0.2s; /* Geçiş efektleri */
}

.start-project-link:hover {
    background-color: #3700b3; /* Üzerine gelince arka plan rengi değişir */
    transform: translateY(-2px); /* Hafif yukarı kaydırma */
    text-decoration: none; /* Alt çizgi yok */
}


/* Mobil uyum */
@media (max-width: 768px) {
    .footer-content {
        gap: 20px; /* Mobildeki bölüm boşluğu */
    }

    .footer-sections {
        flex-direction: column; /* Bölümleri alt alta yerleştir */
        align-items: center; /* Ortala */
        gap: 20px; /* Bölümler arasındaki boşluk */
        width: 100%; /* Mobilde tam genişlik kullanımı */
        padding: 0; /* Padding kaldırıldı */
    }

    .footer-section {
        padding: 20px 0; /* Daha fazla dikey boşluk */
        width: 100%; /* Her section genişliği tam olacak */
        text-align: center; /* İçerikleri ortala */
        position: relative; /* Alt çizgi için gerekli konumlandırma */
    }

    .footer-heading {
        font-size: 20px; /* Mobilde daha küçük başlık boyutu */
        color: #e0b0ff; /* Başlık rengini koru */
    }

    .footer-section::after {
        content: '';
        position: absolute; /* Alt çizgiyi tam konumlandırmak için */
        bottom: 10px; /* Başlıkla alt çizgi arasındaki mesafe */
        left: 50%; /* Ortalamak için */
        width: 80%; /* Çizgi genişliği */
        height: 2px;
        background-color: #d1c4e9; /* Alt çizgi rengi */
        opacity: 0.7;
        transform: translateX(-50%); /* Çizgiyi tam ortalamak için */
    }

    .footer-logo img {
        max-width: 120px; /* Daha küçük logo */
    }

    .footer-logo p {
        font-size: 16px; /* Daha küçük yazı */
    }

    .social-icon {
        width: 35px; /* Daha küçük sosyal medya ikonları */
        height: 35px;
        font-size: 18px;
    }

    .footer-copyright {
        font-size: 12px; /* Küçük copyright yazısı */
    }
}











