/**
* Template Name: Techie - Karadeniz Tech Edition
* Theme: Neon Cyan / Deep Navy / Responsive Optimized
* Updated: Blog Page Dark Mode Fix
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #00b4d8;
  text-decoration: none;
}

a:hover {
  color: #00e1ff;
  text-decoration: none;
  text-shadow: 0 0 8px rgba(0, 225, 255, 0.4);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00b4d8;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #020b1a;
  line-height: 0;
}
.back-to-top:hover {
  background: #00e1ff;
  box-shadow: 0 0 15px rgba(0, 225, 255, 0.6);
  color: #020b1a;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #00b4d8;
  border-top-color: #caf0f8;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Header (Sticky & Responsive)
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(2, 11, 26, 0.96) 0%, rgba(6, 36, 70, 0.96) 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Scroll sonrası biraz daha kompakt header */
#header.header-scrolled,
#header.header-inner-pages {
  padding: 12px 0;
  background: rgba(2, 11, 26, 0.98);
}

/* Logo container */
#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* Header logo linki */
#header .logo a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Genel logo sınıfı */
.kt-logo-svg {
  display: block;
  max-height: 60px;   /* header boyutu */
  width: auto;
  filter: drop-shadow(0 0 6px rgba(0, 179, 255, 0.6));
  transition: transform .25s ease, filter .25s ease;
}

/* Footer'daki logo daha küçük olsun */
.footer-logo .kt-logo-svg {
  max-height: 60px; /* footer için biraz daha küçük */
}

/* Hover'da neon patlaması */
#header .logo:hover .kt-logo-svg,
.footer-logo:hover .kt-logo-svg {
  transform: scale(1) translateY(-1px);
  filter:
    drop-shadow(0 0 2px rgb(0, 179, 255))
    drop-shadow(0 0 4px rgba(0, 179, 255, 0.9))
}

/*--------------------------------------------------------------
# Navigation Menu (Desktop)
--------------------------------------------------------------*/
.navbar { padding: 0; }
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li { position: relative; }
.navbar > ul > li { padding: 10px 0 10px 24px; }
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #00e1ff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: 0 0 8px #00e1ff;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #00e1ff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 5px;
  color: #00e1ff;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #00e1ff;
  background: transparent;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #020b1a;
  background: #00e1ff;
  border-color: #00e1ff;
  box-shadow: 0 0 15px rgba(0, 225, 255, 0.5);
}

/* Dropdown */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(0, 180, 216, 0.15);
  transition: 0.3s;
}
.navbar .dropdown ul li { min-width: 200px; }
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #2c4964;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #00b4d8;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul { left: -90%; }
  .navbar .dropdown .dropdown:hover > ul { left: -100%; }
}

/* ==========================================================================
   MOBILE NAVIGATION (GARANTİLİ TAM EKRAN & HIZLI)
   ========================================================================== */
.mobile-nav-toggle {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  z-index: 9999;
}

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh !important;
  background: rgba(2, 6, 23, 0.98) !important;
  transition: 0.3s;
  z-index: 9998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #00e1ff !important;
}

.navbar-mobile ul {
  display: block !important;
  position: absolute;
  top: 70px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 15px 0;
  background-color: #0f172a !important;
  border: 1px solid rgba(0, 225, 255, 0.2);
  border-radius: 10px;
  overflow-y: auto;
  max-height: 85vh;
}

.navbar-mobile li {
  display: block !important;
  width: 100% !important;
  padding: 0;
  margin: 0;
}

.navbar-mobile a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none !important;
}

.navbar-mobile a:hover, 
.navbar-mobile .active, 
.navbar-mobile li:hover > a {
  color: #00e1ff !important;
  background-color: rgba(0, 225, 255, 0.05) !important;
  padding-left: 30px !important;
}

.navbar-mobile .getstarted {
  margin: 25px !important;
  padding: 12px !important;
  border: 2px solid #00e1ff !important;
  color: #020b1a !important;
  background: #00e1ff !important;
  text-align: center;
  border-radius: 5px;
  display: block !important;
  font-weight: bold;
}

.navbar-mobile .dropdown ul {
  position: static !important;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #020617 !important;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(2, 11, 26, 0.95) 0%, rgba(0, 100, 148, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}
#hero .container { padding-top: 84px; }

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 225, 255, 0.3);
}
#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 15px 0 0 0;
  font-size: 20px;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #00e1ff;
  border: 2px solid #00e1ff;
}
#hero .btn-get-started:hover {
  background: #00e1ff;
  color: #020b1a;
  box-shadow: 0 0 20px rgba(0, 225, 255, 0.6);
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* Hero Responsive */
@media (max-width: 991px) {
  #hero {
    height: auto;
    padding: 120px 0 60px 0;
    text-align: center;
  }
  #hero .hero-img {
    text-align: center;
    margin-top: 40px;
  }
  #hero .hero-img img { width: 60%; }
}
@media (max-width: 768px) {
  #hero h1 { font-size: 32px; }
  #hero h2 { font-size: 18px; }
  #hero .hero-img img { width: 70%; }
}
@media (max-width: 575px) {
  #hero h1 { font-size: 28px; }
}

@-webkit-keyframes up-down {
  0% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}
@keyframes up-down {
  0% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}
.section-bg { background-color: #f0fbff; }
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #020b1a;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00b4d8;
  bottom: 0;
  left: calc(50% - 25px);
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.5);
}
.section-title p { margin-bottom: 0; }

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about { padding: 80px 0; }
.about .content h3 { font-weight: 600; font-size: 30px; color: #0077b6; }
.about .content ul { list-style: none; padding: 0; }
.about .content ul li { padding-bottom: 10px; }
.about .content ul i { font-size: 20px; padding-right: 4px; color: #00b4d8; }
.about .content .read-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: linear-gradient(45deg, #0077b6 0%, #00b4d8 100%);
  position: relative;
}
.about .content .read-more:hover {
  background: linear-gradient(180deg, #0077b6 0%, #00b4d8 100%);
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
}
.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.about .content .read-more:hover i {
  right: 15px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg, rgba(2, 11, 26, 0.95) 0%, rgba(0, 119, 182, 0.85) 100%), url("../img/counts-bg.png") center center no-repeat;
  padding: 60px 0;
}
.counts .counters span {
  font-size: 42px;
  display: block;
  color: #00e1ff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.counts .counters p { padding: 0; margin: 0 0 20px 0; font-size: 14px; color: rgba(255, 255, 255, 0.9); }
@media (max-width: 575px) {
  .counts .counters span { font-size: 34px; }
}

/*--------------------------------------------------------------
# Service Detail (Hizmet Detay Sayfası)
--------------------------------------------------------------*/

/* Hizmet detay sayfası – header'ın altında rahat dursun */
.service-detail {
  padding: 140px 0 110px;
}

/* Üst hero: ikon + başlık + kısa açıklama */
.service-detail-hero {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* İkon balonu */
.service-detail-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
}

.service-detail-icon-blob {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00b4d8, #0077b6);
  opacity: 0.15;
  filter: blur(2px);
}

.service-detail-icon-wrapper i {
  position: relative;
  font-size: 38px;
  color: #00b4d8;
}

/* Başlık + kısa açıklama */
.service-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.service-detail-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
}

/* Buton grubu */
.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center; /* Mobilde ortalı kalsın */
}

/* Secondary: Diğer Hizmetlerimize Göz At */
.btn-service-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.9); /* slate-400 */
  color: #475569;                             /* slate-600 */
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}

.btn-service-secondary:hover {
  background: #e0f2fe;            /* açık mavi */
  color: #0369a1;                 /* mavi metin */
  border-color: #7dd3fc;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.22);
}

/* Uzun açıklama kartı */
.service-detail-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 28px 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-top: 36px;
}

.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
  color: #0f172a;
  margin-top: 0.75rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.service-detail-content p {
  margin-bottom: 0.75rem;
}

/* ===========================
   Tüm Hizmetler Sayfası ( /services )
   =========================== */

.services-page {
  background: #f9fdff;
  padding-top: 120px;
  padding-bottom: 70px;
}

.services-page .section-title h2 {
  letter-spacing: 0.08em;
}

.services-page .section-title p {
  color: #64748b;
}

/* Kart */
.k-service-card-lg {
  position: relative;
  background: #f4fbff;
  border-radius: 28px;
  padding: 32px 26px 24px;
  box-shadow: 0 26px 60px rgba(0, 119, 182, 0.10);
  border: 1px solid rgba(0, 119, 182, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  transition: all 0.25s ease;
  text-align: center;
}

.k-service-card-lg:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 119, 182, 0.22);
  border-color: rgba(0, 180, 216, 0.4);
}

/* İkon balonu */
.k-service-icon-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  position: relative;
}

.k-service-icon-blob-lg {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, #e3f6ff 0%, #f0fbff 100%);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.25);
}

.k-service-icon-lg i {
  position: relative;
  font-size: 32px;
  color: #00b4d8;
  z-index: 2;
}

/* Başlık */
.k-service-card-lg-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #023e8a;
}

.k-service-card-lg-title a {
  color: inherit;
  text-decoration: none;
}

.k-service-card-lg-title a:hover {
  color: #0096c7;
}

/* Metin */
.k-service-card-lg-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Footer linki */
.k-service-card-lg-footer {
  margin-top: 10px;
  text-align: center;
}

.k-service-card-lg-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #00b4d8;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.k-service-card-lg-arrow {
  margin-left: 6px;
  font-size: 15px;
  transition: transform 0.2s ease;
}

.k-service-card-lg-link:hover {
  color: #0077b6;
  border-color: rgba(0, 180, 216, 0.7);
  transform: translateY(-1px);
}

.k-service-card-lg-link:hover .k-service-card-lg-arrow {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .k-service-card-lg {
    padding: 28px 22px 22px;
  }
}

@media (max-width: 575.98px) {
  .k-service-card-lg {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }
}

/* ======================================================
   HİZMET DETAY – FINAL
   (Yalnızca kullanılan güncel kodlar bırakıldı)
   ====================================================== */

.service-detail {
  padding: 120px 0 100px;
}

.service-detail-hero {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-detail-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 10px;
}

.service-detail-icon-blob {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00b4d8, #0077b6);
  opacity: 0.15;
  filter: blur(2px);
}

.service-detail-icon-wrapper i {
  position: relative;
  font-size: 38px;
  color: #00b4d8;
}

.service-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.service-detail-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
}

/* Butonlar */
.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-service-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid #d0e8f5;
  background: #f8fcff;
  color: #0077b6;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-service-secondary:hover {
  background: #eef9ff;
  border-color: #bde4f8;
  color: #006299;
}

.service-detail-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 28px 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

@media (max-width: 767.98px) {
  .service-detail-title {
    font-size: 26px;
  }
  .service-detail-content {
    padding: 22px 18px 20px;
  }
  .btn-service-primary,
  .btn-service-secondary {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .service-detail-actions {
    max-width: 520px;
    margin: 0 auto;
    justify-content: space-between;
  }
}

/* ===========================
   APP SAYFALARI – Boşluk Azaltma
   =========================== */

.app-detail {
  padding-top: 120px !important;
  padding-bottom: 60px !important;
}

.app-detail .service-detail-hero {
  margin-bottom: 2px !important; /* Hero ile içerik arasını kısalttık */
}

.app-detail .service-detail-content {
  margin-top: 2px !important; /* mt-5 yerine daha kısa */
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 { font-size: 20px; font-weight: 700; margin: 5px 0 10px 60px; color: #020b1a; }
.features .icon-box i { font-size: 48px; float: left; color: #00b4d8; }
.features .icon-box p { font-size: 15px; color: #848484; margin-left: 60px; }
.features .image { background-position: center center; background-repeat: no-repeat; background-size: cover; min-height: 400px; }
@media (max-width: 768px) {
  .features .image { min-height: 300px; }
  .features .icon-box h4, .features .icon-box p { margin-left: 50px; }
  .features .icon-box i { font-size: 40px; }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item { box-sizing: content-box; min-height: 320px; }
.testimonials .testimonial-item .testimonial-img {
  width: 90px; border-radius: 50%; margin: -40px 0 0 40px; position: relative; z-index: 2; border: 6px solid #fff;
  box-shadow: 0px 2px 15px rgba(0, 180, 216, 0.15);
}
.testimonials .testimonial-item h3 { font-size: 18px; font-weight: bold; margin: 10px 0 5px 45px; color: #0077b6; }
.testimonials .testimonial-item h4 { font-size: 14px; color: #999; margin: 0 0 0 45px; }
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right { color: #caf0f8; font-size: 26px; }
.testimonials .testimonial-item .quote-icon-left { display: inline-block; left: -5px; position: relative; }
.testimonials .testimonial-item .quote-icon-right { display: inline-block; right: -5px; position: relative; top: 10px; }
.testimonials .testimonial-item p {
  font-style: italic; margin: 0 15px 0 15px; padding: 20px 20px 60px 20px; background: #fff; position: relative; border-radius: 6px; z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}
.testimonials .swiper-pagination { margin-top: 20px; position: relative; }
.testimonials .swiper-pagination .swiper-pagination-bullet { width: 12px; height: 12px; background-color: #fff; opacity: 1; border: 1px solid #00b4d8; }
.testimonials .swiper-pagination .swiper-pagination-bullet-active { background-color: #00b4d8; }

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item { margin-bottom: 30px; }
.portfolio #portfolio-flters { padding: 0; margin: 0 auto 25px auto; list-style: none; text-align: center; border-radius: 50px; padding: 2px 15px; }
.portfolio #portfolio-flters li {
  cursor: pointer; display: inline-block; padding: 10px 15px; font-size: 14px; font-weight: 600; line-height: 1;
  text-transform: uppercase; color: #444444; margin-bottom: 5px; transition: all 0.3s ease-in-out; border-radius: 5px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff; background: #00b4d8; box-shadow: 0 2px 10px rgba(0, 180, 216, 0.3);
}
.portfolio #portfolio-flters li:last-child { margin-right: 0; }
.portfolio .portfolio-wrap { transition: 0.3s; position: relative; overflow: hidden; z-index: 1; border-radius: 8px; }
.portfolio .portfolio-wrap::before {
  content: ""; background: rgba(2, 11, 26, 0.85); position: absolute; left: 30px; right: 30px; top: 30px; bottom: 30px; transition: all ease-in-out 0.3s; z-index: 2; opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0; position: absolute; top: 10%; left: 0; right: 0; text-align: center; z-index: 3; transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info h4 { font-size: 20px; color: #fff; font-weight: 600; text-shadow: 0 0 10px rgba(0, 225, 255, 0.5); }
.portfolio .portfolio-wrap .portfolio-info p { color: #caf0f8; font-size: 14px; text-transform: uppercase; }
.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0; left: 0; right: 0; bottom: 10%; text-align: center; z-index: 3; position: absolute; transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a { color: rgba(255, 255, 255, 0.8); margin: 0 2px; font-size: 28px; display: inline-block; transition: 0.3s; }
.portfolio .portfolio-wrap .portfolio-links a:hover { color: #00e1ff; }
.portfolio .portfolio-wrap:hover::before { top: 0; left: 0; right: 0; bottom: 0; opacity: 1; }
.portfolio .portfolio-wrap:hover .portfolio-info { opacity: 1; top: calc(50% - 48px); }
.portfolio .portfolio-wrap:hover .portfolio-links { opacity: 1; bottom: calc(50% - 50px); }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box { padding: 20px; background: #fff; text-align: center; border-radius: 5px; position: relative; overflow: hidden; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); }
.pricing h3 { font-weight: 400; margin: -20px -20px 20px -20px; padding: 20px 15px; font-size: 16px; font-weight: 600; color: #020b1a; background: #f8f8f8; }
.pricing h4 { font-size: 36px; color: #00b4d8; font-weight: 600; font-family: "Roboto", sans-serif; margin-bottom: 20px; }
.pricing h4 sup { font-size: 20px; top: -15px; left: -3px; }
.pricing h4 span { color: #bababa; font-size: 16px; font-weight: 300; }
.pricing ul { padding: 0; list-style: none; color: #444444; text-align: center; line-height: 20px; font-size: 14px; }
.pricing ul li { padding-bottom: 16px; }
.pricing ul i { color: #00b4d8; font-size: 18px; padding-right: 4px; }
.pricing ul .na { color: #ccc; text-decoration: line-through; }
.pricing .btn-wrap { margin: 20px -20px -20px -20px; padding: 20px 15px; background: #f8f8f8; text-align: center; }
.pricing .btn-buy {
  background: linear-gradient(42deg, #0077b6 0%, #00b4d8 100%); display: inline-block; padding: 10px 35px; border-radius: 4px; color: #fff; transition: none; font-size: 15px; font-weight: 600; transition: 0.3s;
}
.pricing .btn-buy:hover { background: linear-gradient(180deg, #0077b6 0%, #00b4d8 100%); box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4); }
.pricing .featured h3 { color: #fff; background: #00b4d8; }
.pricing .advanced { width: 200px; position: absolute; top: 18px; right: -68px; transform: rotate(45deg); z-index: 1; font-size: 14px; padding: 1px 0 3px 0; background: #00b4d8; color: #fff; }

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: #ffffff !important; /* Zemin Beyaz */
}

.faq .section-title h2 {
  color: #020b1a !important; /* Başlık Koyu */
}

.faq .section-title p {
  color: #444444 !important; /* Açıklama Gri */
}

.faq .section-title h2::after {
  background: #00b4d8 !important; /* Alt Çizgi Mavi */
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  /* Beyaz zemin üstünde kutuların belli olması için gölge ekledik */
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5); 
  border: 1px solid rgba(0,0,0,0.05);
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: #020b1a;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #00b4d8;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  color: #666;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #020b1a;
}

.faq .faq-list a.collapsed:hover {
  color: #00b4d8;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact { background: linear-gradient(180deg, #f0fbff 0%, #e0f7fa 100%); position: relative; z-index: 1; }
.contact .info-box {
  color: #444444; text-align: center; background: #fff; box-shadow: 0 0 30px rgba(214, 215, 216, 0.3); padding: 30px 20px; border-radius: 10px; border-bottom: 3px solid transparent; transition: transform 0.3s ease, border-color 0.3s ease;
}
.contact .info-box:hover { transform: translateY(-5px); border-color: #00b4d8; }
.contact .info-box i { font-size: 32px; color: #00b4d8; border-radius: 50%; padding: 8px; background: rgba(0, 180, 216, 0.1); }
.contact .info-box h3 { font-size: 20px; color: #020b1a; font-weight: 700; margin: 10px 0; }
.contact .info-box p { padding: 0; line-height: 24px; font-size: 14px; margin-bottom: 0; color: #666; }
.contact iframe { width: 100%; height: 100%; min-height: 400px; border: 0; border-radius: 10px; box-shadow: 0 0 30px rgba(214, 215, 216, 0.4); }
.contact .contact-form-wrapper { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 0 30px rgba(214, 215, 216, 0.4); height: 100%; }
.contact input, .contact textarea {
  border-radius: 5px; box-shadow: none; font-size: 14px; background-color: #fff; border: 1px solid #ddd; color: #444; padding: 12px 15px; transition: all 0.3s;
}
.contact ::placeholder { color: #888; opacity: 1; }
.contact input:focus, .contact textarea:focus { background-color: #fff; border-color: #00b4d8; box-shadow: 0 0 8px rgba(0, 180, 216, 0.2); outline: none; }
.contact button[type=submit] {
  background: linear-gradient(90deg, #0077b6 0%, #00b4d8 100%); border: 0; padding: 12px 34px; color: #fff; transition: 0.4s; border-radius: 5px; font-weight: 600; margin-top: 10px;
}
.contact button[type=submit]:hover { background: linear-gradient(90deg, #0096c7 0%, #00e1ff 100%); box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4); transform: translateY(-2px); }
.contact .alert { margin-top: 15px; border-radius: 4px; font-size: 14px; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer { color: #fff; font-size: 14px; background: linear-gradient(45deg, rgba(2, 11, 26, 0.95) 0%, rgba(0, 119, 182, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat; background-size: cover; }
#footer .footer-top { padding: 60px 0 30px 0; position: relative; }
#footer .footer-top .footer-contact { margin-bottom: 30px; }
#footer .footer-top .footer-contact h3 { font-size: 28px; margin: 0 0 30px 0; padding: 2px 0 2px 0; line-height: 1; font-weight: 500; text-transform: uppercase; color: #00e1ff; }
#footer .footer-top .footer-contact p { font-size: 14px; line-height: 24px; margin-bottom: 0; font-family: "Poppins", sans-serif; color: rgba(255, 255, 255, 0.8); }
#footer .footer-top h4 { font-size: 16px; font-weight: bold; position: relative; padding-bottom: 12px; }
#footer .footer-top .footer-links { margin-bottom: 30px; }
#footer .footer-top .footer-links ul { list-style: none; padding: 0; margin: 0; }
#footer .footer-top .footer-links ul i { padding-right: 2px; color: #00b4d8; font-size: 18px; line-height: 1; }
#footer .footer-top .footer-links ul li { padding: 10px 0; display: flex; align-items: center; }
#footer .footer-top .footer-links ul li:first-child { padding-top: 0; }
#footer .footer-top .footer-links ul a { color: rgba(255, 255, 255, 0.8); transition: 0.3s; display: inline-block; line-height: 1; }
#footer .footer-top .footer-links ul a:hover { text-decoration: underline; color: #00e1ff; }
#footer .footer-newsletter { font-size: 15px; }
#footer .footer-newsletter h4 { font-size: 16px; font-weight: bold; position: relative; padding-bottom: 12px; }
#footer .footer-newsletter form { margin-top: 30px; background: #fff; padding: 6px 10px; position: relative; border-radius: 5px; text-align: left; border: 1px solid white; }
#footer .footer-newsletter form input[type=email] { border: 0; padding: 4px 8px; width: calc(100% - 100px); }
#footer .footer-newsletter form input[type=submit] {
  position: absolute; top: -1px; right: -2px; bottom: -1px; border: 0; background: none; font-size: 16px; padding: 0 20px; background: rgba(0, 119, 182, 0.9); color: #fff; transition: 0.3s; border-radius: 0 5px 5px 0; box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover { background: #00b4d8; }
#footer .copyright-wrap { border-top: 1px solid #0077b6; }
#footer .credits { padding-top: 5px; font-size: 13px; color: #fff; }
#footer .credits a { color: #00e1ff; }
#footer .social-links a {
  font-size: 18px; display: inline-block; background: rgba(255, 255, 255, 0.1); color: #fff; line-height: 1; padding: 8px 0; margin-right: 4px; border-radius: 50%; text-align: center; width: 36px; height: 36px; transition: 0.3s;
}
#footer .social-links a:hover { background: #00b4d8; color: #fff; text-decoration: none; box-shadow: 0 0 10px rgba(0, 180, 216, 0.5); }

/* ==================================================
   BLOG SLIDER - DARK & NEON TASARIM (GÜNCEL)
   ================================================== */

/* 1. Bölüm Arka Planı (FAQ ile Aynı Gradient) */
#recent-blog-posts,
#blog, 
.blog {
  background: linear-gradient(42deg, #020b1a 0%, #0077b6 100%) !important;
}

#recent-blog-posts {
  padding: 60px 0;
}

/* Blog Sayfası (Tüm Yazılar) İçin Padding */
#blog, .blog {
  padding-top: 140px; /* Header altı boşluk */
  padding-bottom: 60px;
  min-height: 100vh;
}

/* Başlık ve Açıklama Rengi (Beyaz) */
#recent-blog-posts .section-title h2,
#recent-blog-posts .section-title p,
#blog .section-title h2,
#blog .section-title p,
.blog .section-title h2,
.blog .section-title p {
  color: #ffffff !important;
}

#recent-blog-posts .section-title h2::after,
#blog .section-title h2::after,
.blog .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}

/* 2. Slider Mesafesi ve Hizalama */
.blog-slider {
  padding: 10px 10px 30px 10px; 
  overflow: hidden;
}

/* Slider Kart Genişlikleri */
.blog-slider .swiper-slide {
  height: auto;
  width: 100% !important;
  opacity: 1 !important;
  padding: 0 10px; /* Kartlar arası boşluk */
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .blog-slider .swiper-slide { width: 50% !important; }
}
@media (min-width: 1200px) {
  .blog-slider .swiper-slide { width: 33.333% !important; }
}

/* 3. OKLAR (DÜZELTİLDİ: Küçük ve Ortalanmış) */
.blog-slider .swiper-button-next,
.blog-slider .swiper-button-prev {
  color: #00e1ff;
  background: rgba(2, 6, 23, 0.95);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 225, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-slider .swiper-button-next:after,
.blog-slider .swiper-button-prev:after {
  font-size: 14px; 
  font-weight: bold;
}

/* Pagination */
.blog-slider .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
}
.blog-slider .swiper-pagination-bullet-active {
  background-color: #00e1ff;
}

/* 4. Kart Tasarımı & Hover (Genel) */
.post-box,
#blog .card,
.blog .card {
  background-color: rgba(15, 23, 42, 0.6) !important; 
  border: 1px solid rgba(0, 225, 255, 0.15) !important; 
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Kart Metin Renkleri */
.post-box .post-title a,
#blog .card-title a,
.blog .card-title a { 
  color: #ffffff !important; 
  transition: color 0.3s; 
}

.post-box .card-text,
#blog .card-text,
.blog .card-text { 
  color: #cbd5e1 !important; 
}

.post-box .text-muted,
#blog .text-muted,
.blog .text-muted { 
  color: #00b4d8 !important; 
}

/* Kart Hover Efekti */
.post-box:hover,
#blog .card:hover,
.blog .card:hover {
  transform: translateY(-8px);
  border-color: #00e1ff !important;
  box-shadow: 0 15px 40px rgba(0, 225, 255, 0.15) !important;
}

.post-box:hover .post-title a,
#blog .card:hover .card-title a,
.blog .card:hover .card-title a { 
  color: #00e1ff !important; 
}

.post-box:hover .post-img img,
#blog .card:hover img,
.blog .card:hover img { 
  transform: scale(1.1); 
}

.post-box:hover .readmore i,
#blog .card:hover i.bi-arrow-right,
.blog .card:hover i.bi-arrow-right { 
  transform: translateX(5px); 
}

.post-img img,
#blog img,
.blog img { 
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
}

.readmore,
#blog .text-info,
.blog .text-info { 
  color: #00e1ff !important; 
}

/* 5. Buton Tasarımı (Tüm Yazıları Gör) */
.btn-blog-all {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  border: none;
  text-decoration: none;
  background: linear-gradient(45deg, #0077b6 0%, #00b4d8 100%);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  transition: 0.3s;
}

.btn-blog-all:hover {
  background: linear-gradient(180deg, #0077b6 0%, #00b4d8 100%);
  box-shadow: 0 5px 20px rgba(0, 225, 255, 0.5);
  color: #fff;
  transform: translateY(-3px);
}

/* ==================================================
   BLOG DETAY SAYFASI STİLLERİ
   ================================================== */

/* İçerik Okunabilirliği */
.entry-content p {
  margin-bottom: 1.5rem;
  color: #cbd5e1; /* Göz yormayan açık gri */
}

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.entry-content ul, 
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #cbd5e1;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

/* Blog Geri Dön Butonu (Neon Stil) */
.btn-blog-back {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  color: #00e1ff;
  border: 1px solid rgba(0, 225, 255, 0.3);
  border-radius: 50px;
  background: rgba(0, 225, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-blog-back:hover {
  background: #00e1ff;
  color: #020617; /* Yazı koyu olsun */
  box-shadow: 0 0 15px rgba(0, 225, 255, 0.4);
  transform: translateX(-5px); /* Sola doğru hafif hareket */
}

/* Cloudflare */
.cf-turnstile {
  transform: scale(0.9);
  transform-origin: center;
}

/* Social Links */
.social-share a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0f1b33; /* Açık lacivert - sitenin koyu arka planına uygun */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important; /* Beyaz ikon */
    font-size: 20px;
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 225, 255, 0.15);
    text-decoration: none;
}

/* Hover efekti */
.social-share a:hover {
    background: #122142; /* Hafif daha açık lacivert */
    transform: scale(1.12);
    filter: drop-shadow(0 0 10px rgba(0, 225, 255, 0.6));
    border-color: rgba(0, 225, 255, 0.5);
}