/* ===========================
   :ROOT & BODY
   =========================== */
:root {
  --nav-height: 70px;
}
html, body {
  height: 100%;
}


body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  font-size: 1.0rem;
  padding-top: var(--nav-height);
  padding-bottom: 80px; /* ALT MOBİL BAR İÇİN */
  overflow-x: hidden;
  
}





/* ===========================
   NAVBAR
   =========================== */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.33);
  padding: 1rem 2rem;
  transition: background-color 0.3s, box-shadow 0.3s;
  z-index: 1050;
  height: var(--nav-height);
}


.navbar.scrolled {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand {
  color: #01bcc5 !important;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #50dfe7 !important;
}

.navbar a.nav-link {
  color: #e20e0e !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar a.nav-link:hover,
.navbar a.nav-link:focus {
  color: #b2ebf2 !important;
  text-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.navbar-toggler {
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* Navbar flex taşma düzeltmesi */
.navbar .container-fluid,
.navbar .d-flex {
  flex-wrap: nowrap !important;
  gap: 12px !important;
}

.navbar a.bi {
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
}

.navbar-collapse {
  background-color: #0097A7 !important;
  padding: 1rem;
  border-radius: 0 0 12px 12px;
}

/* ===========================
   HERO SLIDE
   =========================== */
.hero-slide {
  padding: 80px 20px;
  padding-top: 100px; /* navbar boşluğu */
  padding-bottom: 80px; /* alt mobil bar */
  min-height: calc(100vh - var(--nav-height));
  height: auto !important;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
  box-sizing: border-box;
}


.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-slide > div {
  position: relative !important;
  z-index: 2 !important;
}


/* Hover zoom efekti */
.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

/* Carousel görselleri */
.carousel-item img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.6);
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

/* Yazı animasyonu */
.fade-in {
  animation: fadeInUp 1.3s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 1rem;
  }

  .hero-slide {
    min-height: 500px !important;
    height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 120px !important;
  }

  .carousel-item img {
    height: 70vh;
  }

  .carousel-caption h1 {
    font-size: 1.6rem !important;
  }

  .carousel-caption p {
    font-size: 1rem !important;
  }
}

/* ===========================
   SPLASH SCREEN
   =========================== */
#splash-screen {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  transition: opacity 1s ease-out, visibility 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

#splash-logo {
  width: 40vw;
  max-width: 600px;
  opacity: 0;
  transform: scale(0.8);
  animation: logoFadeIn 2s ease-in-out forwards;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* ===========================
   FORM & BUTTONS
   =========================== */
form .form-control:focus {
  border-color: #0097A7;
  box-shadow: 0 0 0 0.2rem rgba(0,151,167,0.25);
  transition: 0.3s ease;
}

form button[type="submit"] {
  transition: all 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #007c91;
  transform: scale(1.05);
}

/* ===========================
   MAP
   =========================== */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

/* ===========================
   V3 SECTIONS
   =========================== */
.v3-surumleri, .nebimv3-kapsam, .v3-erp {
  background-color: #fff;
  color: #333;
}

.v3-surumleri .v3-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.v3-surumleri .v3-image:hover {
  transform: scale(1.05);
}

.v3-erp h2, .nebimv3-header h2, .nebimv3-kapsam h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.v3-erp p, .nebimv3-kapsam p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   LINKS
   =========================== */
a {
  text-decoration: none !important;
}

/* ===========================
   OFFCANVAS
   =========================== */
.offcanvas {
  transition: transform .35s ease-in-out !important;
}

.offcanvas-body a:hover {
  color: #00bcd4;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-button:not(.collapsed) {
  color: #00bcd4;
}
/* Mobilde alt menüyü göster, üst linkleri gizle */
@media (max-width: 768px) {
  .navbar .d-flex > a {  
    display: none !important;
  }

  .mobile-footer-links {
    display: flex !important;          /* mobilde görünür yap */
    justify-content: center;
    align-items: center;
    position: fixed;         
    bottom: 0;               
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #0097A7;
    gap: 15px;
    z-index: 9999;
  }

  .mobile-footer-links a {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
}

/* Masaüstünde alt menüyü gizle, üst linkler görünür */
@media (min-width: 769px) {
  .mobile-footer-links {
    display: none !important;
  }

  .navbar .d-flex > a {
    display: inline-flex !important;
  }
}

.logo {
    height: 100px; /* masaüstü */
}

/* Mobilde büyüt */
@media (max-width: 600px) {
    .logo {
        height: 60px;
    }
}

.icon-links-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd; /* Kutu etrafında ince bir sınır */
  border-radius: 5px;  /* Kenarları yuvarlat */
}

.icon-link {
  text-decoration: none;
  color: #090909;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  padding: 10px;
  position: relative;  /* Konumlandırmayı mümkün kılar */
}

.icon-link .icon {
  width: 24px;  /* İkonun boyutu */
  height: 24px;
  margin-bottom: 5px;  /* İkon ile yazı arasındaki boşluk */
}

.icon-link:not(:last-child) {
  border-right: 1px solid #ddd;  /* Bağlantılar arasına çizgi ekler */
  padding-right: 15px; /* Sağdaki çizgi ile bağlantı arasındaki boşluk */
}

.icon-link2:not(:last-child) {
  border-left: 1px solid #ddd;  /* Bağlantılar arasına çizgi ekler */
  padding-left: 15px; /* Sağdaki çizgi ile bağlantı arasındaki boşluk */
}


.icon-link:hover {
  color: #229f9f;  /* Hover (üzerine gelindiğinde renk değişimi) */
}

/*Uyguylamalar link css*/

/* MOBİL – Alt Alta */
.app-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.app-links a i {
  font-size: 1.2rem;
  color: #0d6efd;
}

/* Hover efekti */
.app-links a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}

.app-links a:hover i {
  color: #fff;
}

/* MASAÜSTÜ – Grid Düzen */
@media (min-width: 768px) {
  .app-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* BÜYÜK EKRAN – Daha ferah */
@media (min-width: 1200px) {
  .app-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sayfada Boşluk bırakma*/
.spacer {
  height: 150px; /* istediğin boşluk miktarı */
  width: 100%;  /* isteğe bağlı, tam genişlik */
}
/*neden eğitim*/
.spacer2 {
  height: 200px; /* istediğin boşluk miktarı */
  width: 100%;  /* isteğe bağlı, tam genişlik */
}
.footer-link {
  color: #afafaf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d9d9d9; /* Açık gri ton */
}

/* GENEL */
#takvimContainer {
  max-width: 650px  !important;
}

/* Ay butonları */
#takvimContainer .btn-outline-primary {
  color: #000;
  border-color: #ccc;
  font-size: 1.2rem;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#takvimContainer .btn-outline-primary:hover {
  background-color: #00bcd4;
  color: #fff;
  border-color: #00bcd4;
}

/* 2. KUTU */
.detail-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
   padding: 14px !important;
  font-size: 0.95rem !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.detail-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* AÇILAN DETAY ALANI */
.detail-box .bg-light {
  background-color: #ffffff !important;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  border-radius: 10px;
  border: 1px solid #e6e6e6;

  /* ANİMASYON */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* Bootstrap collapse açılınca */
.collapse.show > .bg-light {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.takvim-baslik {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
}

.expand-btn {
  background-color: #003049;
  border: none;
  color: #e3d5ca;
  cursor: pointer;
  font-size: 1rem;
  padding: 1rem;
  text-align: left;
  transition: 0.5s;
  width: 100px;
}

.expand-btn:hover,
.active {
  background-color: #e3d5ca;
  color: #003049;
}

.expand-btn:after {
  color: #e3d5ca;
  content: "+";
  float: right;
  font-weight: bold;
  transition: 0.5s;
}

.expand-btn:hover:after {
  color: #003049;
  transition: 0.5s;
}

.active:after {
  content: "-";
  color: #003049;
}

article {
  background-color: #003049;
  color: #e3d5ca;
  max-height: 0;
  max-width: 50vw;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.5s ease-in-out;
}


/* Sadece .custom-links içindeki linkler */
.custom-links a {
  color: #5887b9 !important;       /* Normal link rengi */
  text-decoration: none !important; /* Alt çizgi kaldır */
  transition: color 0.3s ease;
}

.custom-links a:hover {
  color: #2b64a1 !important; /* Hover rengi */
  text-decoration: underline;  /* Hover'da alt çizgi istersen */

}

/* Wheel'in genel kapsayıcısı */

.wheelArea .textcenter { text-align: center; width: 100%; /* max-width: 400px; block olcak flex degıl*/ display: block;}
.wheelArea2 {padding: 30px 0; min-height: 570px;}
.wheelAreasag {display: flex;}
#urun-yonetimi {
    top: 4px;
    left: 121px;
}

#uretim {
    top: 129px;
    right: 15px;
}

#crm {
    left: 10px;
    bottom: 21px;
}


#satis {
    right: 141px;
    bottom: 4px;
}
#satin-alma {
    top: 21px;
    right: 29px;
}
#depo-yonetimi {
    bottom: 11px;
    right: 33px;
}

#ik {
    bottom: 129px;
    left: -3px;
}

#finans {
    top: 18px;
    left: 14px;
}

/*
#satin-alma {
    top: 20px;
    right: 28px;
}
#depo-yonetimi {
    bottom: 10px;
    right: 34px;
}
#satis {
    right: 141px;
    bottom: 2px;
}
#ik {
    bottom: 129px;
    left: 0px;
}
#finans {
    top: 17px;
    left: 15px;
}
*/

#ik.uygulamalar.active, #ik.uygulamalar:hover, #ik.wheelFix.active, #ik.wheelFix:hover {bottom: 134px;}
#crm.uygulamalar.active, #crm.uygulamalar:hover, #crm.wheelFix.active, #crm.wheelFix:hover {z-index: 10; bottom: 2px; left: -9px;}
#satis.uygulamalar.active, #satis.uygulamalar:hover, #satis.wheelFix.active, #satis.wheelFix:hover {z-index: 10; bottom: -26px; right: 138px;}
#depo-yonetimi.uygulamalar.active, #depo-yonetimi.uygulamalar:hover, #depo-yonetimi.wheelFix.active, #depo-yonetimi.wheelFix:hover {z-index: 10; bottom: -7px; right: 12px;}
#uretim.uygulamalar.active, #uretim.uygulamalar:hover, #uretim.wheelFix.active, #uretim.wheelFix:hover {z-index: 10; top: 128px; right: -10px;}
#satin-alma.uygulamalar.active, #satin-alma.uygulamalar:hover, #satin-alma.wheelFix.active, #satin-alma.wheelFix:hover {z-index: 10; top: 5px; right: 12px;}
#urun-yonetimi.uygulamalar.active, #urun-yonetimi.uygulamalar:hover, #urun-yonetimi.wheelFix.active, #urun-yonetimi.wheelFix:hover {z-index: 10; top: -17px; left: 123px; }
#finans.uygulamalar.active, #finans.uygulamalar:hover, #finans.wheelFix.active, #finans.wheelFix:hover {z-index: 10; top: -10px; left: -10px; }

/********/


    .wheelNew2025 {
        position: relative;
        display: block;
        width: 400px;
        height: 400px;
        margin: auto;
        background: transparent;
    }

    .wheelNewSag2025 {
        position: relative;
        display: block;
        width: 400px;
        height: 400px;
        margin: 0;
        margin-left: auto;
        background: transparent;
    }
    
    @media only screen and (max-width: 767px) {
        .wheelNew2025 {
            display: none;
        }
        
    }
    .wheelNew2025 .wheelCenter {
        position: absolute;
        z-index: 3;
        display: block;
        width: 245px;
        height: 245px;
        border-radius: 100%;
        background: url(../../Fotoraflar/v3uygulamalar/nebim-v3.png) 0 0 no-repeat;
        background-size: cover;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .5s ease

    }
    .wheelNew2025 .wheelCenter:hover {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    .wheelNew2025 .visual {
        position: absolute;
        display: block;
        z-index: 2;
        transition: .5s ease;
    }

    .wheelNew2025 .visual.finans {
        top: 15px; left: 19px;
    }
    .wheelNew2025 .visual.finans:hover {
        transform: translate(-5%, -5%);
    }


    .wheelNew2025 .visual.urun-yonetimi {
        top: 0; left: 131px;      
    }    
    .wheelNew2025 .visual.urun-yonetimi:hover {
        transform: translate(0, -10%);      
    }   
    
    .wheelNew2025 .visual.satin-alma {
        top: 19px; right: 15px;         
    }    
    .wheelNew2025 .visual.satin-alma:hover {
        transform: translate(5%, -5%);
    }      

    .wheelNew2025 .visual.uretim {
        top: 131px; right: 0;  
    }    
    .wheelNew2025 .visual.uretim:hover {
        transform: translate(10%, 0%)
    }   

    .wheelNew2025 .visual.depo-yonetimi {
        bottom: 5px; right: 19px;              
    }    
    .wheelNew2025 .visual.depo-yonetimi:hover {
        transform: translate(5%, 5%)
    }       

    .wheelNew2025 .visual.crm {
        bottom: 15px; left: 15px;                    
    }    
    .wheelNew2025 .visual.crm:hover {
        transform: translate(-5%, 5%)
    }      
    
    .wheelNew2025 .visual.satis {
        bottom: -5px;
        left: 122px;
    }    
    .wheelNew2025 .visual.satis:hover {
        transform: translate(0, 10%);      
    }      

    .wheelNew2025 .visual.ik {
        top: 122px; left: 0;        
    }    
    .wheelNew2025 .visual.ik:hover {
        transform: translate(-10%, 0%)
    }       

/* Banner Genel Ayarları */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;  /* Görüntü taşmasını engelle */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner .imgBlock {
    width: 100%;  /* Görselin genişliğini tam olarak ekran boyutuna uydur */
    height: auto;  /* Yüksekliği oranlı olarak ayarla */
    object-fit: cover;  /* Görselin oranını koruyarak tam doldurmasını sağlar */
}

.bannerCaption {
    position: absolute;
    top: 50%;  /* Yükseklik olarak ortalar */
    left: 50%;  /* Genişlik olarak ortalar */
    transform: translate(-50%, -50%);  /* Gerçekten ortalamak için */
    color: white;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 3rem;  /* Başlık boyutu */
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);  /* Yazıya gölge ekleyerek daha belirgin yap */
    text-transform: uppercase;  /* Tüm harfleri büyük yap */
    padding: 0 20px;  /* Ekran daraldığında yazı kenarlara yapışmasın diye boşluk ekleyelim */
}

/* Responsiveness (Mobil uyumlu) */
@media (max-width: 768px) {
    .bannerCaption {
        font-size: 2rem;  /* Mobil cihazlarda yazı boyutunu küçült */
    }
}

@media (max-width: 480px) {
    .bannerCaption {
        font-size: 1.5rem;  /* Daha küçük ekranlarda daha da küçült */
    }
}

/* MOBİL ALT ALTA LİNKLER – MODERN TASARIM */
.mobile-links {
  display: none;
  padding: 20px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  margin-bottom: 12px;
  background: #ffffff;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

/* Ok ikonu (CSS ile) */
.mobile-links a::after {
  content: "›";
  font-size: 22px;
  color: #9ca3af;
  transition: transform 0.25s ease;
}

/* Hover / Touch */
.mobile-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
}

/* Ok hareketi */
.mobile-links a:hover::after {
  transform: translateX(6px);
  color: #6366f1;
}

/* Aktif (dokununca) */
.mobile-links a:active {
  transform: scale(0.97);
}

/* Mobil */
@media (max-width: 768px) {
  .wheel,
  .wheelNew2025 {
    display: none !important;
  }

  .mobile-links {
    display: block;
  }
}

/* Genel yapı */
.zoombtn {
  position: relative;
  display: inline-block;
}

/* Normal resim başlangıçta görünür */
.zoombtn img.normal {
  display: block;
  width: 100%;
  transition: opacity 0.3s ease;
}

/* Hover resim başlangıçta gizli olur */
.zoombtn img.hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover durumunda normal resim gizlenir, hover resim görünür */
.zoombtn:hover img.normal {
  opacity: 0;
}

.zoombtn:hover img.hover {
  opacity: 1;
}

.wheelArea {
    position: relative;
    padding: 30px 0;
    min-height: 450px;
}

.wheel {
    position: absolute;
    width: 400px;
    height: 400px;
    left: 400px;
}

.wheelAuto {
    position: absolute;
    width: 244px;
    height: 244px;
    left: 50%;
    top: 50%;
    margin-left: -122px;
    margin-top: -122px;
    background: url(images/nebim-v3.png) center center no-repeat;
    cursor: pointer;
    transition: .8s ease-in-out;
}

.wheelAuto:hover {
    transform: rotate(360deg);
}

.uygulamalar,
.wheelFix {
    position: absolute;
    cursor: pointer;
}
.lfSldArea {
    position: absolute;
    max-width: 640px;
    left: -640px;
}

.lfSldArea ul {
    margin-top: 15px;
}

.lfSldArea ul li {
    float: left;
    width: 49%;
}

.lfSldArea ul li a.bLink {
    display: block;
    padding: 15px 10px;
    font-size: 14px;
    background: #fff;
}

.lfSldArea a.linkArrow span {
    display: block;
    background: url(images/blArrow.png) right center no-repeat;
}
.paneItem {
    height: 100%;
    padding: 20px 40px
}
.iconSet .ytkCont .paneItem p span {
    position: relative;
    left: -30px
}.wheelArea .paneItem {
    padding: 0
}
  a.bLink,
    p {
        font-size: 16px
    }
.contentPage a.bLink {
        display: block;
        text-align: center
    }
.contentPage a.bLink {
        display: block;
        text-align: center
    }

.lfSldArea ul li a.bLink {
    padding: 15px 10px;
    display: block;
    font-size: 14px
}

.aramaSonuc .brBot-2 p span,
.aramaSonuc ul.aramaList p span,
.bckIlt,
.lfSldArea ul li a.bLink,
.searchResulContent p,
.srmList h4,
.srmList h4 span,
.srmList ul li,
.tab-pagination li.active,
.tab-view li,
.wheelArea h3 {
    font-family: Arial, Helvetica, sans-serif
}

.lfSldArea ul li a.bLink:hover,
.scrollArea .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #00abe8
}

.boxArea a.bLink {
    font-size: 14px;
    display: block;
    text-align: center
}

.boxArea a.bLink span,
.hegihtFix .imgBlock,
.hegihtFix2 .imgBlock,
.hegihtFix3 .imgBlock,
.hg500 .imgBlock,
.styledCheckbox {
    display: inline-block
}
.HomeDetay,
.boxArea a.bLink,
.mainSlider .desc .summary,
.mainSlider .desc .title,
.navigator .lang span,
.navigator .menuInBlog,
.navigator .subContent span.cNameMenu,
.navigator ul li a,
.navigator ul li.subMenu>a>span,
a.dil-sec span {
    font-family: Arial, Helvetica, sans-serif
}

.bLink.linkSmall {
    font-size: 15px
}

a.bLink {
    color: #00a5db;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px
}

.txtCntr a.bLink {
    display: block
}

.splashHead p,
.txtCntr a.bLink,
.txtCntr h2,
.txtCntr p {
    text-align: center
}

.linkArrow span:hover {
    text-decoration: underline
}

a.linkArrow span {
    background: url(../images/site/blArrow.png) right center no-repeat;
    padding-right: 15px
}

.navigator ul li.subMenu>a>span,
a.linkArrowWhite span {
    background: url(../images/site/menuArrowRight.png) right center no-repeat
}

a.linkArrowWhite span {
    padding-right: 15px
}

.lfSldArea a.linkArrow span {
    padding-right: 0;
    background: url(../images/site/blArrow.png) right center no-repeat #fff;
    width: 100%;
    display: block
}

 a.linkArrow.vidArrow span {
        padding-left: 50px;
        padding-right: 0
    }

.linkArrow span:hover {
    text-decoration: underline
}
.bgWhite,
.customers .content-inner .inner,
.item,
.mainSliderWrap .slick-dots li.slick-active:after,
.pane,
body {
    background: #fff
}
 .wheelArea .item .pane a.bgWhite {
        background: 0 0;
        padding: 0 15px 15px
    }

    /* sadece mobil */
@media (max-width: 768px) {

  .wheel {
    display: none; /* çark mobilde kapalı */
  }

  .lfSldArea {
    position: relative;
    width: 100%;
  }

  .item h3 {
    margin: 0;
    padding: 16px;
    background: #0b5ed7;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
  }

  .item h3::after {
    content: "▾";
    float: right;
    transition: transform .3s ease;
  }

  .item.active h3::after {
    transform: rotate(180deg);
  }

  .pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #fff;
  }

  .item.active .pane {
    max-height: 2000px; /* uzun listeler için büyük */
  }

  .paneItem ul {
    padding: 10px 0;
  }

  .paneItem li a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
  }
}
@media (max-width: 768px) {

  /* SOL MENÜ / ÇARK TARAFI */
  .wheel,
  .leftArea,
  .lfSldArea:not(.mobileMenu) {
    display: none !important;
  }

}
.satin-alma.lfSldArea {
  display: none;
}
@media (max-width: 768px) {

  .satin-alma.lfSldArea {
    display: block !important;
    width: 100%;
    position: relative;
  }

}
/* varsayılan: kapalı */
.mobile-menu {
  display: none;
}

/* SADECE MOBİL */
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
    padding: 10px;
  }

  .mobile-btn {
    width: 100%;
    padding: 14px;
    background: #1e88e5;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 8px;
  }

  .mobile-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f5f5f5;
    border-radius: 0 0 6px 6px;
  }

  .mobile-panel a {
    display: block;
    padding: 12px;
    color: #333;
    text-decoration: none;
    border-top: 1px solid #ddd;
  }

  .mobile-panel a:hover {
    background: #e0e0e0;
  }

  .mobile-item.active .mobile-panel {
    max-height: 500px;
  }
}

/* Nebimv3 kapsama düzen */
.nebimv3-kapsam {
  padding: 20px;
}



.row {
  width: 100%;
}

.photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
}

figure {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
  background-color: #fff;
  width: 100%;
}

figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

figcaption {
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.content {
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 1rem;
  color: #333;
}

hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* Responsive tasarım */
@media (min-width: 768px) {
  .photo {
    width: 50%; /* Fotoğraf ve yazılar yan yana gelir */
  }

  .content {
    width: 50%; /* Yazı alanı fotoğraf ile yan yana */
  }
}

.uygulama-list {
    list-style: none;   /* Noktaları kaldırır */
    padding: 0;         /* Soldaki boşluğu siler */
    margin: 40px 0;
}

.uygulama-link {
    margin: 0;
}

.uygulama-link a {
    display: flex;
    align-items: center;

    min-height: 90px;          /* Sabit height yerine min-height */
    padding: 20px 25px;

    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e5e5;

    text-decoration: none;
    color: #1e73e8;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Yazı düzgün kırılsın */
.uygulama-link a span {
    display: block;
    word-break: break-word;
}

/* Hover */
.uygulama-link a:hover {
    
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(30,115,232,0.25);
}


.scroll-section {
  width: 100%;
}

.block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.left-image {
  flex: 1;
}

.left-image img {
  width: 100%;
  height: auto;
  display: block;
}

.right-content {
  flex: 1;
  text-align: left;   
}

.right-content h2,
.right-content p,
.right-content ul {
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}

.fw-bold {
    font-size: 26px;
    font-family: Arial, Helvetica, sans-serif;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .block {
    flex-direction: column;   
    gap: 20px;
  }

  .left-image,
  .right-content {
    width: 100%;
  }
}


