@import url('https://fonts.cdnfonts.com/css/gilroy-bold');  
  
  .enesHAZIR {
    font-family: 'Gilroy-Bold', sans-serif;
    margin-top: 13px;
    font-size: 26px;
    font-weight: 800;
  }
  
  /* Proje ve Makale Başlık */
  .title {
    padding: 30px 0 8px;
    position: relative;
    font-size: 26px;
    font-weight: 400;
  }
  
  .title::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 150px;
    height: 1px;
    transform: skew(-12deg) translateX(-50%);
    /* background: rgba(191, 255, 0, 0.5); */
    /* background: DarkOrange; */
    background: #125688;
    z-index: -1;
  }

  .yetenek .title::before {
    width: 200px;
  }

  #makale .title::before {
    width: 117px;
  }

  #sertifika .title::before {
    width: 195px;
  }

  /* Sosyal medya butonlar */
  .SM .bi {
    padding: 10px;
    font-size: 20px;
    width: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
  }
  .SM .bi:hover {
    opacity: 0.7;
  }
  .SM .bi-linkedin {
    background: #007bb5;
    color: white;
  }
  .SM .bi-github {
    background: #3B5998;
    color: white;
  }
  .SM .bi-instagram {
    background: #125688;
    color: white;
  }

  /* Kartlar */
  .kartlar {
    border-style: solid;
    border-color: #ffffff;
    border-width: 2px;
  }

  .kartlar:hover {
    border-color: #7cddfd;
  }

  .badge {
    color: #555;
    background-color: #dbf2fd;
  }

  .badge:hover {
    background-color: #5e5a5a;
    color: #ffffff;
  }

  #makale-say .badge {
    color: #ffffff;
  }

  .border-success {
    border-color: #f5f6f7;
    color: #f5f6f7;
    background-color: #f5f6f7;
  }

nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all 0.4s;
}

.navColor {
 color: #ffffff;
}

nav ul li a:hover {
  color: #555;
}
  
  /* SHIFT */
  nav.shift ul li a {
    position:relative;
    z-index: 1;
  }
  nav.shift ul li a:hover {
    color: #ffffff;
  }
  nav.shift ul li a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 25px;
    width: 100%;
    height: auto;
    content: '.';
    color: transparent;
    background: #007bb5;
    visibility: none;
    opacity: 0;
    z-index: -1;
  }
  nav.shift ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }

  /* Search Bar */
  .custom-search-button {
    width: 200px;
    height: 40px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.search-input {
    border: none;
    outline: none;
    width: calc(100% - 30px); /* Arama ikonu genişliğini çıkararak input genişliğini ayarla */
}

.search-icon {
    font-size: 20px;
    color: #999;
    background-color: transparent; /* Arama ikonunun arka planını kaldır */
    border: none; /* Sınıra gerek yok */
}

  /* End Search Bar */


  /* social media */

  @import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css);


.ac {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin: 0 auto;
}
.ac .circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5px;
  stroke-dasharray: 40;
  transition: all 0.2s ease-in-out;
  -webkit-animation: outWaveOut 1s cubic-bezier(0.42, 0, 0.58, 1) forwards;
          animation: outWaveOut 1s cubic-bezier(0.42, 0, 0.58, 1) forwards;
}
.ac .social {
  color: #3aaae1;
  font-size: 1.8em;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.ac:hover {
  cursor: pointer;
}
.twitter:hover .circle {
  fill: #3aaae1;
  fill-opacity: 1;
  -webkit-animation: outWaveIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards, colorTwitter 1s linear forwards;
          animation: outWaveIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards, colorTwitter 1s linear forwards;
}
.twitter:hover .social {
  color: #ffffff;
}
.facebook:hover .circle {
  fill: #3b5998;
  fill-opacity: 1;
  -webkit-animation: outWaveIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards, colorFacebook 1s linear forwards;
          animation: outWaveIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards, colorFacebook 1s linear forwards;
}
.facebook:hover .social {
  color: #ffffff;
}

.linkedin:hover .circle {
  fill: #007bb6;
  fill-opacity: 1;
  -webkit-animation: outWaveIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards, colorLinkedin 1s linear forwards;
          animation: outWaveIn 1s cubic-bezier(0.42, 0, 0.58, 1) forwards, colorLinkedin 1s linear forwards;
}
.linkedin:hover .social {
  color: #ffffff;
}
@-webkit-keyframes colorTwitter {
  from {
    stroke: #3aaae1;
  }
  to {
    stroke: #ffffff;
  }
}
@keyframes colorTwitter {
  from {
    stroke: #3aaae1;
  }
  to {
    stroke: #ffffff;
  }
}
@-webkit-keyframes colorFacebook {
  from {
    stroke: #3b5998;
  }
  to {
    stroke: #ffffff;
  }
}
@keyframes colorFacebook {
  from {
    stroke: #3b5998;
  }
  to {
    stroke: #ffffff;
  }
}
@-webkit-keyframes colorLinkedin {
  from {
    stroke: #007bb6;
  }
  to {
    stroke: #ffffff;
  }
}
@keyframes colorLinkedin {
  from {
    stroke: #007bb6;
  }
  to {
    stroke: #ffffff;
  }
}
@-webkit-keyframes outWaveIn {
  to {
    stroke-width: 10px;
    stroke-dasharray: 400;
  }
}
@keyframes outWaveIn {
  to {
    stroke-width: 10px;
    stroke-dasharray: 400;
  }
}
@-webkit-keyframes outWaveOut {
  from {
    stroke-width: 10px;
    stroke-dasharray: 400;
  }
  to {
    stroke: #ffffff;
    stroke-width: 5px;
    stroke-dasharray: 40;
  }
}
@keyframes outWaveOut {
  from {
    stroke-width: 10px;
    stroke-dasharray: 400;
  }
  to {
    stroke: #ffffff;
    stroke-width: 5px;
    stroke-dasharray: 40;
  }
}

/* end social media */



/* Kartlar */

/* .image-container {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 53%;
}

.image-container img {
  width: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: opacity 0.3s;
}

.image-container:hover img {
  opacity: 1;
}

.image-container:hover::before {
  opacity: 0;
}

.text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 136, 255, 1), transparent);
  padding: 10px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.6s;
  text-align: center;
}

.image-container:hover .text-container {
  opacity: 0;
} */

/* End Kartlar */





#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #007bb6;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
}

#myBtn:hover {
  background-color: #555;
}

/* Makale kod alanı */
pre {
  position: relative;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  counter-reset: line;
  white-space: pre-line;
}


/* navbar hover */
#navbarNav .nav-item .nav-link {
  position: relative;
  color: #fff;
}

#navbarNav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent; /* İlk başta görünmez olması için */
  transition: background-color 0.3s ease; /* Animasyon */
}

#navbarNav .nav-item .nav-link:hover::after {
  background-color: rgb(255, 255, 255);
}

#navbarNav .nav-item .nav-link.active::after {
  width: 100%; /* Active olduğunda çizginin genişliğini %100 yap */
  background-color: rgb(255, 255, 255);
}
