/*
  TAIS YAZILIM - CUSTOM STYLES
  Bu dosya, Bootstrap üzerine yazılan özel stilleri içerir.
  Stiller, BEM benzeri bir metodoloji ile alana özel olarak isimlendirilmiştir.
*/

/* --- Değişkenler ve Temel Ayarlar --- */
:root {
    --primary-color: #7A3FFD;
    --primary-color-hover: #6a2ee1;
    --dark-blue: #000000;
    --light-text: #F0F0F0;
    --gray-text: #a0a0b0;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-blue);
    color: var(--light-text);
}



/* --- Ana Sayfa Referanslar Bölümü Stili --- */

.home-references-section h3 {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

/* --- Kaydırıldığında Sabitlenen Header Stili --- */


.site-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(12, 10, 44, 0.9);
    /* Arka plan rengi */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}





/* Bootstrap'in mobil menüye geçtiği ekran boyutu (992px altı) */
@media (max-width: 991.98px) {

    /* Açılan menünün (navbar-collapse) kendisi */
    .main-nav .navbar-collapse.show,
    .main-nav .navbar-collapse.collapsing {
        /* Açılan menüye solid ve koyu bir arkaplan veriyoruz */
        background-color: #1A1A3A;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* Menüdeki linklerin ve butonun mobil için hizalamasını güzelleştirelim */
    .main-nav .navbar-nav {
        align-items: center;
        /* Linkleri ortalar */
    }

    .main-nav__cta {
        margin-top: 1rem;
        /* Üstteki linklerle arasına boşluk koyar */
        width: 100%;
        text-align: center;
    }
}




/* --- Site Header & Main Navigation --- */
.site-header {
    position: absolute;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    z-index: 1100;


}

.main-nav__brand {
    font-size: 1.6rem;
    font-weight: 700;
}

.main-nav .nav-item {
    margin: 0 0.5rem;
}

.main-nav .nav-link {
    font-weight: 500;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary-color);
}

.main-nav__cta {
    border-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-nav__cta:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Menü son */

/* --- Hero Section --- */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero__content {
    position: relative;
    z-index: 2;
    /* Yazı içeriğini yıldızların üzerinde tutar */
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    /* Ekran boyutuna göre küçülüp büyüyen font */
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-text);
    margin: 1.5rem 0;
}

.hero__button {
    background: linear-gradient(90deg, #0a001d, var(--primary-color));
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: linear-gradient(90deg, #5E35B1, var(--primary-color));

}


/* --- Hareketli Yıldız Arka Planı (Değişiklik yok) --- */
@keyframes animateStars {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3000px);
    }
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4000px;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 160px 120px, #ddd, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: animateStars 50s linear infinite;
    z-index: 0;
}

/* Diğer yıldız katmanları için :after ve :before aynı kalabilir */
.stars-bg::after,
.stars-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}

.stars-bg::after {
    background-image: radial-gradient(1px 1px at 50px 50px, #fff, rgba(0, 0, 0, 0)), radial-gradient(1px 1px at 100px 150px, #ddd, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 150px 100px, #fff, rgba(0, 0, 0, 0));
    background-size: 250px 250px;
    animation: animateStars 75s linear infinite;
}

.stars-bg::before {
    background-image: radial-gradient(2px 2px at 10px 90px, #fff, rgba(0, 0, 0, 0)), radial-gradient(1px 1px at 120px 200px, #ddd, rgba(0, 0, 0, 0));
    background-size: 300px 300px;
    animation: animateStars 100s linear infinite;
}

/* WHATSAPP VE NUMARA */
/* ===============================================
   SABİT (STICKY) İLETİŞİM İKONLARI (MOBİL UYUMLU)
   =============================================== */

.sticky-contact-icons {
    position: fixed;
    /* Sayfa kaysa bile yerini korur */
    z-index: 1000;
    /* Diğer tüm elemanların üzerinde görünmesini sağlar */
    display: flex;
    flex-direction: column;
    /* İkonları alt alta dizer */
}

.sticky-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* ---- MASAÜSTÜ GÖRÜNÜMÜ ---- */
/* 768px'den geniş ekranlar için */
@media (min-width: 769px) {
    .sticky-contact-icons {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .sticky-icon {
        border-radius: 0 8px 8px 0;
        /* Sağ köşeleri yuvarlatır */
    }

    .sticky-icon:hover {
        padding-left: 10px;
        /* Üzerine gelince hafifçe sağa kayar */
    }
}


/* ---- MOBİL GÖRÜNÜMÜ ---- */
/* 768px ve daha dar ekranlar için */
@media (max-width: 768px) {
    .sticky-contact-icons {
        /* Dikey ortalamayı iptal edip alta konumlandır */
        top: auto;
        transform: none;
        bottom: 20px;
        left: 15px;
    }

    .sticky-icon {
        width: 48px;
        /* Mobilde ikonları biraz daha kompakt yapalım */
        height: 48px;
        border-radius: 50%;
        /* Tam yuvarlak mobilde daha şık durur */
    }

    /* Mobilde hover efekti (sağa kayma) olmadığı için iptal edelim */
    .sticky-icon:hover {
        padding-left: 0;
        transform: none;
    }
}

.slider-container h3 {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

/* İkonlara özel renkler (değişiklik yok) */
.phone-icon {
    background-color: var(--primary-color);
}

.phone-icon:hover {
    background-color: var(--primary-color-hover);
}

.whatsapp-icon {
    background-color: #25D366;
}

.whatsapp-icon:hover {
    background-color: #1DA851;
}

/* WHATSAPP VE NUMARA */
/* --- Site Footer --- */
/* ===============================================
   FOOTER STİLLERİ
   =============================================== */

.site-footer {
    background-color: #080620;
    /* Ana arka plan rengiyle uyumlu */
    color: var(--gray-text);
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget__title {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Başlıkların altındaki küçük çizgi efekti */
.footer-widget__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    line-height: 1.7;
}

.footer-social-icons {
    margin-top: 1.5rem;
}

.footer-social-icons a {
    color: var(--gray-text);
    font-size: 1.3rem;
    margin-right: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-info i {
    margin-top: 5px;
    margin-right: 1rem;
    width: 20px;
    color: var(--primary-color);
}

.footer-contact-info a {
    color: var(--gray-text);
    text-decoration: none;
}

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


.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 0.9rem;
}










.slider-container {
    overflow: hidden;

    height: 120px;
    position: relative;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll-left linear infinite;
    animation-duration: 40s;
    /* Hızı buradan ayarla */
}

.slider-item {
    flex: 0 0 auto;
    margin-right: 40px;
}

.slider-item img {
    height: 50px;
    width: auto;
    display: block;
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container {
        height: 80px;
    }

    .slider-item img {
        height: 30px;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}












/* Hizmetler bileşeni */
/* --- Servis Kartı Bileşeni --- */

/* Servis Kartı Link Stillerini Sıfırlama */
.service-card-link {
    text-decoration: none;
    /* Linklerin altındaki çizgiyi kaldırır */
    color: inherit;
    /* Yazı rengini ebeveyninden (karttan) almasını sağlar */
    display: block;
    /* Linkin tüm kart alanını kaplamasını garantiler */
    height: 100%;
}

.service-card-link:hover {
    text-decoration: none;
    /* Üzerine gelince de alt çizgi olmasın */
    color: inherit;
    /* Yazı rengi değişmesin */
}

.service-card {
    background-color: #1A1A3A;
    /* Görseldeki koyu lacivert/mor */
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    /* Aynı sıradaki kartların boyunu eşitler */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
    margin: 0 auto 24px auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(74, 144, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    /* İkon rengi */
    font-size: 28px;
}

.service-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card__description {
    color: #C0C5D9;
    /* Yazı için mavimsi-beyaz */
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    /* Bu paragrafın kalan boşluğu doldurmasını sağlar */
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    /* Liste içi sola hizalı */
}

.service-card__features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #E0E1E9;
    font-size: 15px;
}

.service-card__features li i {
    color: #28a745;
    /* Onay işareti rengi */
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    /* Hizalamayı garantilemek için */
}

/* Hizmetler bileşeni */

/* Hizmetler detay sayfaları */

/* ===============================================
   HİZMET DETAY SAYFASI - YENİ YAPI
   =============================================== */

/* --- Genel Sayfa Yapısı --- */
.service-detail-page .content-section {
    padding: 4rem 0;
}

/* --- Sayfa Başlık Alanı (Banner) --- */
.page-header-section {
    background-color: #1A1A3A;
    /* Ana başlık alanı arka planı */
    padding: 150px 0 60px 0;
    /* Üstteki boşluk header içindir */
    color: #fff;
}

.page-header-section h1 {
    font-weight: 700;
    font-size: clamp(2.8rem, 5vw, 4rem);
    /* Ekran boyutuna göre değişen başlık */
    margin-bottom: 0.5rem;
}

.page-header-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--gray-text);
    max-width: 750px;
    margin: 0 auto;
}

/* --- Ana İçerik Alanı --- */
.main-content-section {
    background-color: #080620;
    /* Ana metinlerin olduğu alanın arka planı */
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.main-content-section h2 {
    font-weight: 600;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.main-content-section h3 {
    font-weight: 600;
    color: #fff;
    margin-top: 1.5rem;
}

.main-content-section img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.main-content-section ul {
    list-style: none;
    padding-left: 0;
}

.main-content-section ul li {
    position: relative;
    padding-left: 35px;
    /* İkon için yer */
    margin-bottom: 1rem;
}

.main-content-section ul li::before {
    content: '\f058';
    /* Font Awesome check-circle ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
}


/* --- Sıkça Sorulan Sorular (SSS) Bölümü --- */
.faq-section {
    background-color: var(--dark-blue);
}

.faq-section .accordion-button {
    font-weight: 600;
    background-color: #1A1A3A;
    color: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(122, 63, 253, 0.4);
}

.faq-section .accordion-item {
    background-color: #1A1A3A;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.faq-section .accordion-body {
    background-color: #080620;
    line-height: 1.8;
    color: white;
}

/* --- Harekete Geçirici Mesaj (CTA) Bölümü --- */
.cta-section {
    background-color: #1A1A3A;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-weight: 600;
}

.cta-section .cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-3px);
}







.contact-page-section {
    padding: 4rem 0;
    background-color: #080620;
}

.contact-card {
    background-color: #1A1A3A;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

.contact-card h2 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sol Sütun: İletişim Bilgileri */
.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    color: var(--gray-text);
}

.contact-info-list i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.contact-info-list a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #fff;
}

.contact-info-list strong {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* Sosyal Medya İkonları */
.social-media-icons {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-icons a {
    color: var(--gray-text);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media-icons a:hover {
    color: #fff;
    transform: scale(1.1);
}


/* Sağ Sütun: İletişim Formu */
.contact-form .form-control {
    background-color: #080620;
    border-color: rgba(74, 144, 226, 0.2);
    color: #fff;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    background-color: #080620;
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(122, 63, 253, 0.4);
}

.contact-form .form-label {
    color: var(--gray-text);
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    width: 100%;
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}



/* kurumsal */

.about-section {
    background-color: #080620;
}

.mission-vision-section {
    background-color: var(--dark-blue);
}

.mission-vision-section h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-section {
    background-color: #080620;
}

.value-card {
    background-color: #1A1A3A;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
}













/* ===============================================
   REFERANSLAR SAYFASI STİLLERİ
   =============================================== */

.portfolio-section {
    background-color: #080620;
    padding: 4rem 0;
}

.portfolio-card {
    background-color: #1A1A3A;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-card__image-wrapper {
    overflow: hidden;
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card__body {
    padding: 1.5rem;
}

.portfolio-card__category {
    display: inline-block;
    background-color: rgba(122, 63, 253, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.portfolio-card__title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}

.testimonials-section {
    background-color: var(--dark-blue);
    padding: 4rem 0;
}

.testimonial-card {
    background-color: #1A1A3A;
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
}

.testimonial-card__icon {
    position: absolute;
    top: 1.5rem;
    left: -15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card blockquote {
    margin: 0;
    font-style: italic;
    color: var(--gray-text);
    font-size: 1.1rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #fff;
}







/* ===============================================
   404 SAYFA STİLLERİ
   =============================================== */
.error-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 4rem 0;
    background-color: #080620;
}

.error-page-content h1 {
    font-size: clamp(6rem, 20vw, 12rem);
    /* Devasa 404 yazısı */
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 30px rgba(122, 63, 253, 0.3);
}

.error-page-content h2 {
    font-weight: 600;
    color: #fff;
    margin-top: 0;
}

.error-page-content p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 1rem auto 2rem auto;
}

.error-page-content .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.error-page-content .btn-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}




/* --- Sağ Alt Sabit Dil Değiştirici Stilleri --- */

.sticky-language-selector {
    position: fixed;
    /* Sayfayla birlikte hareket etmesini sağlar */
    bottom: 25px;
    /* Alttan boşluk */
    right: 25px;
    /* Sağdan boşluk */
    z-index: 1000;
    /* Her zaman en üstte görünmesi için */
    display: flex;
    /* Bayrakları yan yana dizer */
    gap: 12px;
    /* Bayraklar arasına boşluk koyar */
}

.sticky-language-selector img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Aktif olmayan bayrağın üzerine gelince büyüt */
.sticky-language-selector a:not(.active-lang):hover img {
    transform: scale(1.1);
}

/* Aktif olan dili soluklaştır ve tıklama imlecini kaldır */
.sticky-language-selector a.active-lang {
    opacity: 0.7;
    cursor: default;
}