
/* Menü bağlantılarının genel stili */
.navbar-custom .nav-link,
.navbar-custom .dropdown-toggle,
.navbar-custom .dropdown-item {
    color: #000; /* Siyah yazı rengi */
    text-decoration: none;
    padding: 8px 12px;
    border-radius:20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover durumunda arka plan rengi */
.navbar-custom .nav-link:hover,
.navbar-custom .dropdown-toggle:hover,
.navbar-custom .dropdown-item:hover {
    background-color: #0a456d;
    color: #fff !important;
}

/* Aktif olduğunda linkler mavi olmasın */
.navbar-custom .nav-link:focus,
.navbar-custom .dropdown-toggle:focus,
.navbar-custom .dropdown-item:focus {
    background-color: #0a456d;
    color: #fff !important;
}

/* Dropdown menüde hover renk geçişi */
.navbar-custom .dropdown-menu {
    border: none;
    padding: 0;
    overflow: hidden;
}

.navbar-custom {
  position: relative;
  background-color: #f8f9fa;
  height: 100px;
}

/* Container'ı tam yükseklik yap ve flex kullan */
.navbar-custom .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; /* DİKEYDE ORTALAMA */
}

/* Logo yukarıdan taşacak şekilde ayarlanmış */
.logo-wrapper {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.logo-wrapper img {
  height: 160px;
}

/* Menü aralıkları ve hizalama */
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


    .btn-uye-giris {
      background-color: #0a456d;
      color: white;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 0.9rem;
      border: none;
    }

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none;
  }

  .navbar-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    height: 70px;
    position: relative;
  }

  .logo-wrapper {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .logo-wrapper img {
    height: 100px;
  }
}

    /*slider*/

     .carousel-inner {
      height: 800px;
    }

    .carousel-item {
      height: 800px;
      background-size: cover;
      background-position: center;
      position: relative;
      color: white;
    }

    .gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(30, 84, 119, 0.8) 0%, rgba(30, 84, 119, 0) 100%);
      z-index: 1;
    }

    .carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  text-align: left;
  color: white;
}

.carousel-caption .content-box h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-caption .content-box p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.carousel-caption .content-box .btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
}


    /* Özel ok butonları */
    .carousel-control-prev,
    .carousel-control-next {
      width: 60px;
      height: 60px;
      top: 50%;
      transform: translateY(-50%);
      background-color: white;
      opacity: 1 !important;
      border-radius: 50%;
      z-index: 3;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    }

    .carousel-control-prev {
      left: 15px;
    }

    .carousel-control-next {
      right: 15px;
    }
    /*slider bitiş */

    /* slider mobil*/ 

/* Masaüstü için mevcut yükseklik */
.carousel-inner {
  height: 800px;
}

.carousel-item {
  height: 800px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

/* Butonlar */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  opacity: 1 !important;
  border-radius: 50%;
  z-index: 3;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

/* Mobil için özel ayarlar */
@media (max-width: 991.98px) {
  .carousel-inner,
  .carousel-item {
    height: 400px; /* Mobilde yüksekliği yarıya düşürdüm, istersen 300px de olabilir */
  }

  /* Butonların boyutunu küçült */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    top: auto; /* Topu sıfırla */
    bottom: 10px; /* Butonları alt kısma yerleştir */
    transform: none;
  }
  /* Geri buton solda, sıfırdan biraz içerden */
  .carousel-control-prev {
    left: 10px;
  }

  /* İleri buton, geri butonun hemen yanında */
  .carousel-control-next {
    left: 80px; /* 60px buton genişliği + 10px boşluk + 10px padding */
    right: auto;
  }

  /* Buton ikonlarını biraz küçült */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }

  /* Caption içeriğinin padding/margin ayarlarını mobilde küçült */
  .carousel-caption .content-box h1 {
    font-size: 1.8rem;
  }

  .carousel-caption .content-box p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .carousel-caption .content-box .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}


    /* slider mobil bitiş*/ 

/*yaklaşan ektinlik başlangıç*/

.event-container {
  background-image: url('img/countdown-bg-1-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  
  padding: 2rem 3rem;
  max-width: 1200px;
  position: relative;
  z-index: 2;
  margin-top: 0; /* varsayılan mobil için sıfır */
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  color: white;
}

.time-box {
  text-align: center;
  min-width: 60px;
}

.time-number {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.time-label {
  font-size: 1rem;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;

}

  .time-block {
    position: relative;
    padding: 1rem 0;
   
    border-radius: 10px;
    text-align: center;
  }
  .time-block:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: rgba(255,255,255,0.7);
  }
  .time-value {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
  }

.divider {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
  color: white;
}
@media (min-width: 577px) {
  .event-container {
    margin-top: -120px; /* 577px ve üzeri ekranlarda slider üstüne çık */
  }
}
@media (max-width: 576px) {
  .countdown {
    flex-wrap: wrap;
    justify-content: center;
  }
  .time-box {
    min-width: 50px;
  }
  .divider {
    display: none; /* Küçük ekranda bölücüyü gizleyebiliriz */
  }
  
  
}
.event-card {
  background: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.read-more:hover {
  color: #ffdb4d;
}


/*yaklaşan ektinlik bitiş*/


/*hikaye başlangıç*/

.circle-item {
  /* Gerekirse buraya item düzenlemeleri */
}

.circle-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #0a456d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  background-color: #f8f9fa;
  transition: border-color 0.3s;
  overflow: hidden;
}

.circle-icon img {
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
}

.circle-item:hover .circle-icon {
  border-color: #0056b3;
}

.circle-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  /* color: #333;  <-- bu renk linkin rengini ezebilir */
}

.circle-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.circle-title a:hover {
  color: #af9038;
}


/*hikaye bitiş*/



/*hakkımızda başlangıç*/

  .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
  }
  .video-button:hover {
    background: rgba(0,0,0,0.8);
  }
  .video-button svg {
    fill: white;
    width: 30px;
    height: 30px;
  }
  .content-title-small {
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .content-title-big {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .content-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }
  .icon-box {
    text-align: center;
   
  }
  .icon-circle {
    width: 70px;
    height: 70px;
    background-color: #e7edff;
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bordered-image {
  border: 2px solid black;
  border-radius: 20px;
}

  .icon-circle svg {
    fill: #b4923f;
    width: 35px;
    height: 35px;
  }
  .icon-box-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
  }
  .icon-box-desc {
    font-size: 14px;
    color: #666;
  }

  @media (max-width: 767.98px) {
    .row > [class*='col-'] {
      margin-bottom: 20px;
    }
  }

/*hakkımızda bitiş*/


/*yaklaşan etkinlikler başlangıç*/
.nav-tabs {
  border-bottom: none; /* Pasif tablar için çizgi kaldırıldı */
  margin-bottom: 0;
}

.nav-tabs .nav-link {
  color: #888;
  border: none;
  background: none;
  padding: 6px 20px 8px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.2;
  position: relative; /* ::after için konum gerekli */
}

.nav-tabs .nav-item {
  margin-right: 30px;
}

.nav-tabs .nav-link small {
  color: #aaa;
  font-size: 13px;
  line-height: 1.2;
  display: block;
  margin-top: 2px;
}

.nav-tabs .nav-link.active {
  color: #05436a !important;
  font-weight: 600;
}

.nav-tabs .nav-link.active small {
  color: #05436a;
}

/* Sadece aktif tab'a alt çizgi */
.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0; /* çizgi tam altında */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #05436a;
}

/* Tab başlık ile içerik arasındaki boşluk */
.tab-content-fixed {
  height: auto;
  overflow-y: visible; /* veya overflow-y: unset; */
}


/*yaklaşan etkinlikler bitiş*/
 

/* duyuru */
.announcement-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.announcement-logo {
  margin-bottom: 20px; /* Logo ile box arasına boşluk */
  
}

.announcement-logo img {
  max-height: 180px; /* Logo boyutu artırıldı */
}

.announcement-box {
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  text-align: left;
}

.announcement-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.announcement-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.read-more {
  font-size: 14px;
  color: #0a456d;         /* Yeni renk */
  text-decoration: underline;  /* Altı çizili */
}



/*duyuru bitiş*/


/*doktor yorum başlangıç*/

 .doctor-photo {
  width: 360px;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Butonlar doktor fotoğrafının hemen altında olacak şekilde konumlandırılıyor */
.doctor-photo {
  width: 360px;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.review-box {
  width: 510px;
  height: 300px;
  background-color: #edfffe;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  position: absolute;
  top: 60px; /* fotoğrafın üstüne binme */
  left: 320px;
  z-index: 10;
}

.review-buttons {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px); /* yorum kutusunun altında, ortada */
  display: flex;
  gap: 15px;
  z-index: 20;
}

.review-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background-color: #05436b;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.review-btn:hover {
  background-color: #043353;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 40px;
}

.review-author {
  font-weight: 700;
  position: absolute;
  bottom: 20px;
  right: 20px;
}


/* --- Mobil düzenlemeleri --- */
@media (max-width: 767.98px) {
  .col-md-8.position-relative.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    min-height: auto !important;
    position: static !important;
  }

  .doctor-photo {
    width: 280px;
    height: 360px;
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 1;
  }

  .review-box {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-top: -80px; /* fotoğrafın üstüne biner */
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 5;
  }

  .review-buttons {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 15px;
    justify-content: center;
    gap: 15px;
    width: fit-content;
  }
}


/*doktor yorum bitiş*/


/*logolar başlangıç*/
.logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.logo-img:hover {
  filter: grayscale(0);
}




/*logolar bitiş*/


/*duyurlar başlangıç*/
.full-width-bg {
  background-color: #f0e9d7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.news-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.news-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.read-more-btn {
  background-color: #05436a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #04334f;
}

.news-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.news-description {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

.read-more-btn {
  background-color: #05436a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #04334f;
}


/*duyurlar bitiş*/


/*footer başlangıç*/

.footer-heading {
  color: #b4923f;
  font-weight: 600;
}

.footer-link {
  color: #05436a;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-link:hover {
  text-decoration: underline;
}


/*footer bitiş*/