@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap');

:root {
  --primarycolor: #008384;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Yatay kaydırmayı engeller */
}

html {
  scroll-behavior: smooth;
}

/* Header */

/* Slider */
.carousel-item {
  position: relative;
  overflow: hidden;
  height: 100vh;
  /* Set carousel item height to viewport height */
}

.carousel-caption {
  top: 60%;
  transform: translateY(-50%);
  bottom: auto;
}

.carousel-caption h1 {
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: clamp(0.875rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
}

.carousel-caption .btn {
  font-size: clamp(0.75rem, 2vw, 1.25rem);
  padding: 0.5rem 1.5rem;
}

.slider-content {
  position: absolute;
  top: 80%;
  right: 35%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  color: white;
  text-align: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.slider-box {
  padding: 20px;
  width: 250px;
  flex: 1 1 0;
}

.btn-slider:hover {
  font-size: 2rem;
  transition: 0.5s;

}

/* Slider image */
.img-1 {
  filter: brightness(100%);
  /* No longer needed for video */
}

/* Video Styling */
.video-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  /* Place video behind content */
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
  filter: brightness(42%);
  /* Apply brightness to the video */
}

/* Category Tabs */
.category-tabs-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-tab-2 {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #d1d5db;
  background: none;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.category-tab-2:hover {
  border-color: #9ca3af;
  color: #6b7280;
}

.category-tab-2.active {
  border-color: #03adad;
  color: #000000;
  transform: scale(1.05);
}

/* Footer */

.footer a:hover {
  
  transition: 0.5s;
}

.footer h5 {
  color: #fff;
  font-weight: 700;
}

.footer-poweredby {
  color: #79dfec;
}

.logo-footer {
  height: 176px;
  display: block;
}

/* BreakPoints */
@media(max-width: 991px) {
  .sidebar {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

  }
}

/* index.html Css End */

/*============== Banner olan sayfalar burdan alıyor css'i ===============*/
.banner {
  position: relative;
  background-image: url('../images/bursa-banner.png');
  /* Görselin yolu */
  background-size: cover;
  background-position: center;
  height: 420px;
  /* Yüksekliği isteğe göre ayarlayın */
  font-family: Arial, sans-serif;
  align-items: center;
  text-align: center;
}

.page-title {
  color: #1a6e7d;
  font-weight: bold;
  margin-bottom: 30px;
}

/*=========0 KVKK Dökümanları CSS */
.document-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.document-header {
  background-color: #2c3e50;
  color: white;
  padding: 15px 20px;
  font-size: 1.5rem;
  font-weight: 500;
}

.document-table {
  width: 100%;
  border-collapse: collapse;
}

.document-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.document-table tr:last-child {
  border-bottom: none;
}

.document-table th {
  text-align: left;
  padding: 15px 20px;
  background-color: #f9f9f9;
  font-weight: 500;
  color: #333;
}

.document-table td {
  padding: 12px 20px;
  vertical-align: middle;
}

.download-btn {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.download-btn:hover {
  background-color: #3498db;
}

.document-table tr:hover {
  background-color: #f5f5f5;
}

.section-title-k {
  font-weight: bold;
  margin-top: 2rem;
}

/*====================== Footer Social Icons ====================*/
.social-footer {
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.footer-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-align: start;
}

.social-container {
  display: flex;
  justify-content: start;
  gap: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}

.social-link:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Instagram */
.instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook */
.facebook::before {
  background: linear-gradient(45deg, #1877f2, #0d65d9);
}

/* Twitter/X */
.twitter::before {
  background: linear-gradient(45deg, #000000, #333333);
}

/* YouTube */
.youtube::before {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-link i {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* X logosu için özel stil */
.twitter .x-logo {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-footer {
    padding: 30px 25px;
  }

  .footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .social-container {
    gap: 25px;
  }

  .social-link {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .twitter .x-logo {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .social-footer {
    padding: 25px 20px;
  }

  .footer-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .social-container {
    gap: 20px;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .twitter .x-logo {
    font-size: 1.4rem;
  }
}

/* Pulse efekti arka planda */
.social-footer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
}

.social-footer {
  position: relative;
}