html {
  height: auto !important;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: #000;
  padding-top: 155px;
}

b {
  font-weight: bold;
}

.btn-danger {
  background-color: #bc1b17 !important;
  border-color: #bc1b17 !important;
}

.btn-outline-danger {
  color: #fff;
}

.btn-danger:hover {
  background-color: #9a1413 !important;
  border-color: #9a1413 !important;
}

.donate-btn {
  background-color: #bc1b17;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.donate-btn:hover {
  font-weight: 900;
}

h1, h2, h3, h4 {
  font-family: Poppins, sans-serif;
  font-weight: 800;
}

.card h5 {
font-size:1rem;
font-weight: bold;
}

.nav-link {
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000 !important;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.nav-link:hover {
  color: #bc1b17 !important;
  border-color: #bc1b17 !important;
}

.section-title {
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  margin: 2.5rem 0;
  text-align: center;
  font-weight: 900;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  min-height: 50px;
}

.card-text {
  flex-grow: 1;
  max-height: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-img-top {
  height: 360px;
  object-fit: cover;
  border-radius: 30px;
  padding: 10px;
}

.badge {
  display: inline-block;
  white-space: nowrap;
  margin: 2px 5px 2px 0;
  padding: 0.7em;
  font-weight: bold;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  font-size: 0.7rem;
}

.card-title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.card-text {
  font-size: 0.875rem;
  color: #666;
}

.card-soz-verdik {
  border-color: #bc1b17;
}

.card-soz-tuttuk {
  border-color: blue;
}

.card-baskandan {
  border-color: green;
}

.card-gundem {
  border-color: orange;
}

section {
  padding: 30px 0;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-left {
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
}

.fade-right {
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
}

.fade-up {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.fade-down {
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}

.fade-center {
  animation: fadeInCenter 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInCenter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slogan {
  min-height: 150px;
  padding: 3.5rem;
  animation: fadeInCenter 2s ease forwards;
  opacity: 0;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.catTitle {
  min-height: 150px;
  padding: 3.5rem;
  animation: fadeInCenter 2s ease forwards;
  opacity: 0;
  text-align: center;
  font-family: Poppins, sans-serif;
  border-bottom: 1px solid #e1e1e1;
}

.catCards {
  min-height: auto !important;
}

.upper {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lower {
  font-size: 2.3rem;
  font-weight: 900;
  color: #bc1b17;
}

.statistics {
  background: linear-gradient(rgb(100 2 0 / 94%), rgb(188 27 23 / 83%)), url("https://baytas.org/img/harita.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  animation: fadeInCenter 1s ease forwards;
  opacity: 0;
}

.stat-box {
  background: #fff;
  border-radius: 0.5rem;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box .counter {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 3.4rem;
  margin: 10px 0;
  color: #d21000;
}

.stat-box i {
  font-size: 2.5rem;
  color: #000 !important;
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.social-icons a {
  color: #000;
  font-size: 1.6rem;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}

.social-icons a:hover {
  color: #dc3545;
  text-decoration: none;
}

.newsDate {
  font-size: 13px;
  font-weight: bold;
}

.newsDetail p {
  line-height: 1.7;
}

.newsDetail img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.newsDetail iframe {
  width: 100%;
  height: 415px;
}

.footer-custom {
  background-color: #bc1b17;
  color: #fff;
  font-family: Poppins, sans-serif;
}

.footer-custom a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-custom a:hover {
  color: #ececec;
}

.footer-custom hr {
  border-top: 1px solid rgb(255 255 255 / 30%);
}

.widget {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.widget a {
  font-size: 16px;
  color: #d21000;
  font-weight: bold;
  text-decoration: none;
}

.widget-top-text {
  font-size: 20px;
}

.widget-big-text {
  font-size: 28px;
  display: block;
  font-weight: 800;
  font-family: Poppins, sans-serif;
}

.widget-small-text {
  font-size: 16px;
}

.widget-image img {
  max-width: 100%;
  border-radius: 10px;
}

.widget {
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgb(255 255 255 / 30%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgb(0 0 0 / 10%);
  color: #000;
}

.widget-blue {
  background: rgb(74 144 226 / 20%);
  border-color: rgb(74 144 226 / 50%) !important;
}

.widget-green {
  background: rgb(46 204 113 / 20%);
  border-color: rgb(46 204 113 / 50%) !important;
}

.widget-orange {
  background: rgb(230 126 34 / 20%);
  border-color: rgb(230 126 34 / 50%) !important;
}

.widget-red {
  background: rgb(231 76 60 / 20%);
  border-color: rgb(231 76 60 / 50%) !important;
}

.widget-purple {
  background: rgb(155 89 182 / 20%);
  border-color: rgb(155 89 182 / 50%) !important;
}

.widget-gray {
  background: rgb(149 165 166 / 20%);
  border-color: rgb(149 165 166 / 50%) !important;
}

.widget-white {
  border-color: rgb(255 0 0) !important;
}

.widget-red-white {
  border-color: rgb(80 0 0 / 50%) !important;
}

.widget-top-text {
  font-size: 1.3rem;
  font-weight: bold;
}

.widget-big-text {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.widget-small-text {
  font-size: 1rem;
  opacity: 0.9;
}

.widget-image img {
  max-width: 90px;
  height: auto;
  margin-top: 10px;
  border-radius: 50%;
}

.widget-text {
  font-size: 1rem;
  margin-top: 10px;
}

blockquote {
  padding-left: 15px;
  color: #000;
  font-size: 1.8rem;
  border-left: 5px solid #bc1b17;
  font-weight: 800;
  font-family: Poppins;
}

.modern-search-modal {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
  background-color: #fff;
  overflow: hidden;
}

.modern-search-modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modern-search-modal .modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.modern-search-modal .modal-body {
  padding: 20px 30px;
}

.modern-search-modal .form-control {
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.modern-search-modal .form-control:focus {
  border-color: #007bff;
  box-shadow: none;
}

.modern-search-modal .btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.modern-search-modal .btn-primary:hover {
  background-color: #0056b3;
}

.modern-search-modal .btn-secondary {
  background-color: #6c757d;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.modern-search-modal .btn-secondary:hover {
  background-color: #5a6268;
}

.svg-icon svg {
  width: 35px;
  height: 34px;
  background: transparent;
}

.svg-icon svg path {
  stroke-width: 3;
}

.neighborhood-logo {
  width: 160px !important;
  height: auto;
  display: block;
}

.chart-container {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
}

.chart-container h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

canvas {
  max-width: 100%;
  height: auto !important;
}

@media (width <= 768px) {
  .chart-container {
    margin-bottom: 20px;
  }
}

#neighborhood-sidebar .nav-link {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 5px;
  border-radius: 4px;
}

#neighborhood-sidebar .nav-link:hover {
  color: #c00;
  border-radius: 0;
}

#neighborhood-sidebar .nav-link.active {
  color: #c00 !important;
  border: 1px solid #c00;
}

#category-sidebar .nav-link {
  color: #080000 !important;
  padding: 10px;
  font-weight: normal;
  font-size:1rem;
  font-family: Poppins;
}

#category-sidebar .nav-link.active {
  color: #c00 !important;
  padding: 10px;
  font-weight: bold;
  }

#category-sidebar .nav-link.hover {
  color: #c00 !important;
  padding: 10px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.blinking-button {
  animation: blink 1.5s infinite;
}

#liveStreamButton {
  position: fixed; bottom: 20px; right: 20px; padding: 10px 20px; display: flex; align-items: center; z-index: 1000; border-radius: 50px;border:2px solid #fff!important;
}