    html, body {
  overflow: hidden;
}

  /* ON durumunda toggle bar'ı sarı yap */
  .toggle input:checked + .toggle-icon {
    background-color: #F5B400 !important;
    border-color: #F5B400 !important;
  }

  /* Küçük knob topunu da sarıya boyamak istersen: */
  .toggle input:checked + .toggle-icon::before {
    background-color: #ffffff !important;
  }
  
  .toolbar.tabbar {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 60px;
    color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
        background: #ffffff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        backdrop-filter: none;
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.toolbar.tabbar .tab-link.tab-link-active {
  color: #F5B400;
}

.toolbar.tabbar .toolbar-inner {
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* Tabbar linkler */
.toolbar.tabbar .tab-link {
  flex: 1 1 0;
  text-align: center;
  padding: 8px 0;
}

/* Üst çizgileri ve gereksiz arkaplanları kaldır */
.toolbar::before,
.toolbar::after {
  display: none !important;
  background: none !important;
  content: none !important;
  height: 0 !important;
}

.toolbar,
.toolbar-inner {
  border: none !important;
  background: transparent
}

.tabbar .active {
  border-bottom: 2px solid #f7d247;
  color:#F5B400;
}

</style>

<style>
  /* Icon rengi değişsin */
  .tabbar .tab-link-active i {
    color: #F5B400; /* sarı */
  }
  
.tabbar .tab-link-active .tabbar-label {
  color: #F5B400;
}


@keyframes fadeInTabs {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInTabs 2s ease;
}


.bordered-card {
  border: 2px solid transparent;
  border-radius: 15px;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(45deg, #FFC400, #001F5B);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  /* Daha hafif glow */
  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.5),
    0 0 15px rgba(255, 196, 0, 0.3);
}

/* DARK MODE */
.theme-dark .bordered-card {
  background-image:
    linear-gradient(#1e1e1e, #1e1e1e),
    linear-gradient(45deg, #FFC400, #001F5B);
  color: #f4ca42;
  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.5),
    0 0 15px rgba(255, 196, 0, 0.3);
}


@font-face {
  font-family: 'guzell';
 src: url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap') format('truetype');
  font-weight: normal;
  font-style: normal;
}

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:10px;
    height: 60%;
  }

  #info-box, #info2-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #E7EA42, #F4C712);
    color: #fff;
    padding: 4px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    max-width: 350px;
    margin-bottom: 20px;
  }

  #info-box:hover, #info2-box:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #EFD347, #FCF5B8);
  }

  #profile-img, #profile2-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #fff;
  }

  #info-text, #info2-text {
    flex: 1;
  }
  
   /* WORD RAIN */
  .word-rain {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .word-rain span {
    position: absolute;
    top: -50px;
    animation: fall linear infinite;
    white-space: nowrap;
    opacity: 0.9;
    cursor: pointer;
  }
  @keyframes fall {
    to {
      transform: translateY(110vh);
      opacity: 0;
    }
  }

  /* Sabitlenmiş kelime */
  .word-rain span.pinned {
    position: fixed !important;
    z-index: 30;
    animation: none !important;
    transform: none !important;
    transition: transform .25s ease, opacity .25s ease;
    color: #fff;
  }
  .word-rain span.pinned.grow {
    transform: scale(2.2);
  }

  /* Modal & backdrop */
  .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 40;
  }
  .modal {
    position: fixed;
    top: 0; right: -480px;
    height: 100vh; width: min(90vw, 420px);

    box-shadow: -12px 0 40px rgba(0,0,0,.45);
    transition: right .28s cubic-bezier(.2,.8,.2,1);
    z-index: 45;
    padding: 22px 20px 28px;
    overflow: auto;
  }
  .modal header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
  }
  .modal h3 { margin: 0; font-size: 1.2rem; color: #ffd75a; }
  .modal .close { background:#222;border:0;color:#fff;border-radius:10px;padding:8px 12px;cursor:pointer }
  .modal p { line-height:1.5; color:#ddd }
  .modal .tag { display:inline-block;margin:6px 8px 0 0;padding:6px 10px;border-radius:999px;background:#222;color:#ffd75a;font-weight:600;font-size:.85rem }

  /* Açık durum */
  .is-open .modal { right: 0 }
  .is-open .modal-backdrop { opacity: 1; pointer-events:auto }
  
  
  .modal header {
  display: block;       /* flex yerine blok */
  margin-bottom: 14px;
}

.modal .close {
  display: block;
  margin-bottom: 7px;  /* buton ile başlık arası boşluk */
}
/* === ABOUT styles (site temasıyla uyumlu) === */
:root{
  --y:#F5B400;
  --y2:#FFD867;
  --ink:#1e1e1e;
  --muted:#666;
  --card:#ffffff;
  --line:#e9e9e9;
}

.theme-dark :root,
#app.theme-dark{
  --ink:#eaeaea;
  --muted:#a8a8a8;
  --card:#111111;
  --line:#222;
}

/* Kapsayıcı */
.about{
  max-width: 1100px;
  margin: 24px auto 96px;
  padding: 0 16px;
  color: var(--ink);
}
.about__head h2{
  margin: 0 0 6px;
    display: flex;
  justify-content: center;
  font-size: clamp(28px,3.5vw,40px);
  color: var(--y);
  letter-spacing:.2px;
}
.about__head p{
  margin: 0;
  margin-left:10px;
  color: var(--muted);
  line-height: 1.7;
}

/* Grid */
.about__grid{
  display: grid;
    justify-content: center;   /* ortala */
  gap: 22px;
    margin-left:5px;
  margin-top: 18px;
  grid-template-columns: 1fr 1fr;   /* daha dengeli */
}
@media (max-width: 900px){
  .about__grid{ grid-template-columns: 1fr; }
}

/* Kart görünümü (site kart estetiği) */
.card-like{
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* Bio kart */
.about__card {
  display: flex;
  gap: 16px;
  padding: 15px;
  border-radius: 17px;

  /* Sarı-Lacivert Kenarlık Efekti */
  background-image:
    linear-gradient(var(--card), var(--card)), /* içerik rengi */
    linear-gradient(45deg, #FFC400, #001F5B);  /* border için geçiş */
  background-origin: border-box;
  background-clip: padding-box, border-box;

  border: 2px solid transparent;
  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.4),
    0 0 15px rgba(0, 31, 91, 0.3); /* glow efekti */
}

.about__avatar{
  width:86px; height:86px; border-radius:16px; object-fit:cover;
  border: 3px solid #fff; box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.theme-dark .about__avatar{ border-color:#1e1e1e }
.about__card h3{ margin:4px 0 10px; font-size:1.1rem }

.facts{
  display:grid; gap:8px; list-style:none; margin:0 0 12px; padding:0;
}
.facts li{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 12px; border-radius:12px; background: #f7f7f7; border:1px solid var(--line);
}
.theme-dark .facts li{ background:#141414 }
.facts li span{ color:var(--muted) }

.about__cta{ display:flex; gap:10px; flex-wrap:wrap }
.btn{
  display:inline-block; padding:10px 14px; border-radius:999px; text-decoration:none;
  font-weight:700; font-size:.95rem; transition:.2s ease transform, .2s ease box-shadow;
}
.btn--primary{
  background: linear-gradient(145deg, var(--y), var(--y2)); color:#111;
  box-shadow: 0 10px 30px rgba(245,180,0,.35);
}
.btn--primary:hover{ transform: translateY(-2px) }
.btn--ghost{
  color: var(--ink); background:#f2f2f2; border:1px solid var(--line);
}
.theme-dark .btn--ghost{ background:#161616 }

/* Sağ kolon */
.about__right{ display:grid; gap:22px ;width:99%; }



/* Tech Stack ve Journey kartlarını gerçek "card" yapalım */
.skills,
.timeline {
  padding: 16px;
  border-radius: 18px;

  /* Sarı-Lacivert Border Efekti */
  background-image:
    linear-gradient(var(--card), var(--card)), /* içerik */
    linear-gradient(45deg, #FFC400, #001F5B);  /* border */
  background-origin: border-box;
  background-clip: padding-box, border-box;

  border: 2px solid transparent;
  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.4),
    0 0 15px rgba(0, 31, 91, 0.3); /* glow */
  overflow: hidden; /* köşelerde taşma olmasın */
}


.chips{ display:flex; flex-wrap:wrap; gap:10px }
.chip{
  padding:8px 12px; border-radius:999px; background:#f6f6f6; color:#333; font-weight:600; font-size:.9rem;
  border:1px solid var(--line);
}
.theme-dark .chip{ background:#161616; color:#ddd }

/* Timeline */
.timeline {
  padding: 16px;
  border-radius: 18px;

  /* Sarı–Lacivert border efekti */
  background-image:
    linear-gradient(var(--card), var(--card)),
    linear-gradient(45deg, #FFC400, #001F5B);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  border: 2px solid transparent;
  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.4),
    0 0 15px rgba(0, 31, 91, 0.3);
  overflow: hidden;
}

/* Çizgi */
.timeline ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.timeline ul::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(#dcdcdc,#ececec);
}
#app.theme-dark .timeline ul::before {
  background: linear-gradient(#242424,#2a2a2a);
}

/* Elemanlar */
.timeline li {
  position: relative;
  padding: 0 0 16px 36px;
}
.timeline .dot {
  position: absolute;
  left: 5px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--y));
  box-shadow: 0 0 18px rgba(245,180,0,.6);
}

.tl-body time{ display:block; color:#9b9b9b; font-size:.9rem; margin-bottom:4px }
.tl-body p{ margin:0; color:var(--ink) }
.theme-dark .tl-body p{ color:#e5e5e5 }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container */
.blog-card-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
}

.blog-card-btn i {
  margin-left: 3px;
}

/* --------- BLOG CARD --------- */
.blog-card {
  background: #ffffff;
  animation: fadeInUp 0.8s ease both;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(45deg, #FFC400, #001F5B);

  /* Işıltı (glow) efekti */
  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.5),
    0 0 15px rgba(255, 196, 0, 0.3);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 10px rgba(255, 196, 0, 0.7),
    0 0 20px rgba(255, 196, 0, 0.5);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 20px;
}

.blog-badge {
  display: inline-block;
  background: #F5B400;
  color: #1e1e1e;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-title {
  color: #001F5B;
  font-size: 22px;
  margin: 10px 0;
  font-weight: bold;
}

.blog-card-text {
  color: #555555;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.blog-card-footer span {
  color: #999999;
  font-size: 13px;
}

.blog-card-btn {
  background: #F5B400;
  color: #1e1e1e;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.blog-card-btn:hover {
  background: #001F5B;
  color: #ffffff;
}

/* --------- DARK MODE --------- */
.theme-dark .blog-card-body {
     background-color: #121212;
  color: #f4ca42;
}


.theme-dark .blog-card {
  background-color: #1e1e1e;
  border: 4px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image:
    linear-gradient(#1e1e1e, #1e1e1e),
    linear-gradient(45deg, #FFC400, #001F5B);
  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.5),
    0 0 15px rgba(255, 196, 0, 0.3);
}

.theme-dark .blog-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 10px rgba(255, 196, 0, 0.7),
    0 0 20px rgba(255, 196, 0, 0.5);
}

.theme-dark .blog-card-title {
  color: #F5B400;
}

.theme-dark .blog-card-text {
  color: #dddddd;
}

.theme-dark .blog-card-footer span {
  color: #999999;
}

.theme-dark .blog-card-btn {
  background: #F5B400;
  color: #1e1e1e;
}
   .blog-detail-container {
  padding: 20px;
  animation: fadeIn 0.4s ease-in-out;
}

.blog-detail-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

#blog-detail-title {
  font-size: 24px;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 5px;
}

#blog-detail-author {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

#blog-detail-body {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
}

hr {
  border: none;
  height: 1px;
  background-color: #e0e0e0;
  margin: 30px 0 20px;
}

#comments-section {
  margin-bottom: 20px;
  font-size: 15px;
  color: #555;
}

#comments-section p {
  color: #999;
  font-style: italic;
}

#comment-form input,
#comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.3s;
}

#comment-form input:focus,
#comment-form textarea:focus {
  border-color: #F5B400;
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.2);
}

#comment-form button {
  width: 100%;
  background: #F5B400;
  color: #1e1e1e;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  transition: background 0.3s;
}

#comment-form button:hover {
  background: #e0a900;
  color: white;
}

/* Animasyon */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark Mode Uyumlu */
.theme-dark #blog-detail-title,
.theme-dark #blog-detail-body,
.theme-dark #comments-section,
.theme-dark #comment-form input,
.theme-dark #comment-form textarea {
  color: #f4ca42;
  background-color: #1e1e1e;
}

.theme-dark #comment-form input,
.theme-dark #comment-form textarea {
  border-color: #444;
}

.theme-dark #comment-form button {
  background: #f4ca42;
  color: #1e1e1e;
}

.theme-dark #comment-form button:hover {
  background: #001F5B;
  color: #ffffff;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  position: relative;
  background: #ffffff;
  color: #333333;
  border-radius: 15px;
  max-width: 500px;
  width: 100%;
  padding: 30px;
  text-align: center;
  animation: fadeInUp 0.8s ease both;

  border: 4px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(45deg, #FFC400, #001F5B);

  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.5),
    0 0 15px rgba(255, 196, 0, 0.3);

  transition: all 0.3s;
  flex: 1 1 350px;
  min-width: 300px;
}

.contact-card:hover {
  box-shadow:
    0 0 12px rgba(255, 196, 0, 0.6),
    0 0 25px rgba(255, 196, 0, 0.4);
}

.contact-card h2 {
  color: #F5B400;
  margin-bottom: 20px;
  font-size: 26px;
}

.contact-card input,
.contact-card select {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
  color: #333333;
}

.contact-card textarea {
  width: 100%;
  height: 150px;         /* ← bu satırı ekle */
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
  color: #333333;
}


.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  outline: none;
  border-color: #F5B400;
}

.contact-card button {
  background: #F5B400;
  color: #1e1e1e;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.contact-card button:hover {
  background: #001F5B;
  color: #ffffff;
}

.contact-note {
  margin-top: 20px;
  color: #999;
}

.contact-social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-social-icons .social {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border: 2px solid #F5B400;
  color: #F5B400;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-social-icons .social:hover {
  background: #F5B400;
  color: #1e1e1e;
  transform: scale(1.2);
}

.contact-social-icons .social:hover::after {
  content: attr(data-label);
  position: absolute;
  top: 55px;
  background: #1e1e1e;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}

/* ------------------------------
   DARK MODE
------------------------------ */

.theme-dark .contact-card {
  background: #1e1e1e;
  color: #f4ca42;
  border: 4px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image:
    linear-gradient(#1e1e1e, #1e1e1e),
    linear-gradient(45deg, #FFC400, #001F5B);

  box-shadow:
    0 0 8px rgba(255, 196, 0, 0.5),
    0 0 15px rgba(255, 196, 0, 0.3);

  animation: fadeInUp 0.8s ease both;
  transition: all 0.3s;
}

.theme-dark .contact-card:hover {
  box-shadow:
    0 0 12px rgba(255, 196, 0, 0.6),
    0 0 25px rgba(255, 196, 0, 0.4);
}

.theme-dark .contact-card input,
.theme-dark .contact-card textarea,
.theme-dark .contact-card select {
  background: #2b2b2b;
  border: 1px solid #555;
  color: #f4ca42;
}

.theme-dark .contact-card button {
  background: #f4ca42;
  color: #1e1e1e;
}

.theme-dark .contact-card button:hover {
  background: #001F5B;
  color: #ffffff;
}

.theme-dark .contact-note {
  color: #777;
}

.theme-dark .contact-social-icons .social {
  background: #1e1e1e;
  border-color: #f4ca42;
  color: #f4ca42;
}

.theme-dark .contact-social-icons .social:hover {
  background: #f4ca42;
  color: #1e1e1e;
}

/* ------------------------------
   RESPONSIVE (MOBILE)
------------------------------ */

@media (max-width: 768px) {
  .contact-container {
    gap: 10px;
    padding: 10px;
  }
  .contact-card {
    margin: 5px 0;
    padding: 20px 10px;
  }
}

/* -------------------------------
LIGHT MODE STİLLER
--------------------------------*/

/* Dialog pencere arkaplanı */
.dialog.modal-in,
.dialog.modal-out {
background: #ffffff;
border-radius: 12px;
border: 2px solid transparent;
background-clip: padding-box, border-box;
background-origin: border-box;
background-image:
linear-gradient(#ffffff, #ffffff),
linear-gradient(45deg, #FFC400, #001F5B);
color: #1e1e1e;
}

/* Dialog içindeki başlık */
.dialog .dialog-title {
color: #F5B400;
font-weight: bold;
}

/* Dialog içindeki metin */
.dialog .dialog-text {
color: #333333;
}

/* Dialog düğmeleri */
.dialog .dialog-buttons a {
color: #F5B400;
background: transparent;
border-radius: 8px;
transition: all 0.3s ease;
}

.dialog .dialog-buttons a:hover {
color: #120a8f;
}

.dialog-button {
color: #F5B400 !important;
}

/* -------------------------------
DARK MODE STİLLER
--------------------------------*/

.theme-dark .dialog.modal-in,
.theme-dark .dialog.modal-out {
background: #1e1e1e;
border-radius: 12px;
border: 3px solid transparent;
background-clip: padding-box, border-box;
background-origin: border-box;
background-image:
linear-gradient(#1e1e1e, #1e1e1e),
linear-gradient(45deg, #FFC400, #001F5B);
color: #f4ca42;
}

.theme-dark .dialog .dialog-title {
color: #f4ca42;
font-weight: bold;
}

.theme-dark .dialog .dialog-text {
color: #ffffff;
}

.theme-dark .dialog .dialog-buttons a {
color: #f4ca42;
background: transparent;
border-radius: 8px;
transition: all 0.3s ease;
}

.theme-dark .dialog .dialog-buttons a:hover {
color: #120a8f;
}

.theme-dark .dialog-button {
color: #F5B400 !important;
}





.contact-card {
  position: relative;
  background: #ffffff;
  color: #333;
  border-radius: 15px;
  max-width: 374px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
  border: 2px solid #F5B400;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-card h2 {
  color: #F5B400;
  margin-bottom: 10px;
}

.contact-social-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-social-icons .social {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 2px solid #F5B400;
  color: #F5B400;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-social-icons .social:hover {
  background: #F5B400;
  color: #1e1e1e;
  transform: scale(1.2);
}

.contact-social-icons .social:hover::after {
  content: attr(data-label);
  position: absolute;
  top: 60px;
  background: #1e1e1e;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}

            .timeline li.future .dot {
  background: radial-gradient(circle at 30% 30%, #fff, #007bff); /* mavi */
  box-shadow: 0 0 18px rgba(0, 123, 255, 0.6);
}

.timeline li.future p {
  color: #007bff;
  font-weight: 600;
}

      .blog-detail-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 15px;
}

.blog-detail-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.blog-detail-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  white-space: pre-line; /* satır atlamalarını düzgün gösterir */
}



.count-container {
  display: flex;
  justify-content: center; /* yatay ortala */
  min-height: 0vh;       /* tam ekran yüksekliği */
} 

.count-card {
  background: #fff ;
  border-radius: 16px;
  padding: 30px 40px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.count-card h1 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #1c2a4a;
}

.statss {
  font-size: 40px;
  font-weight: bold;
  color: #0073e6;
  margin: 10px 0 20px;
}

.rowss {
  margin: 12px 0;
  font-size: 16px;
  color: #333;
}

.count-card hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}
