p,
a,
b,
strong,
span,
h1,
h2,
h3,
h4,
h5,
h6,
div {
  font-family: Verdana, Arial, sans-serif !important;
}

.yazi-font-size {
  font-size: 12px !important;
}

.table-div {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 10px;
}

.kutu-border {
  border: 4px solid #f5f5f5;
}

/* haberler-etkinlikler */

.haberler-etkinlikler-div {
  display: flex;
  align-items: center;
  background-color: white;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.haberler-etkinlikler-div .haber-etkinlik-baslik {
  text-decoration: underline dotted from-font;  
}

.haberler-etkinlikler-div:hover .haber-etkinlik-baslik {
  text-decoration: underline solid from-font;
}

.haber-etkinlik-tarih {
  color: black;
  font-size: 12px;
}

.haber-etkinlik-baslik {
  color: black;
  font-size: 12px;
}

.haber-etkinlik-kisa-yazi {
  color: black;
  font-size: 12px;
}

.haberler-etkinlikler-resim {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.main-btn-1 { 
  background-color: #ffffff;
  color: #0c4e8e;
  border-radius: 5px;
}

/* haberler-etkinlikler */

.haberler-container {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.ana-haber-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.ana-haber-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ana-haber-card img {
  border-radius: 6px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  max-height: 300px;
  object-fit: cover;
}

.ana-haber-card:hover img {
  transform: scale(1.02);
}

.haber-listesi {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-height: 800px;
  overflow-y: auto;
}

.haber-item {
  transition: all 0.3s ease;
  padding: 10px;
}

.haber-item:hover {
  background-color: #f1f1f1;
  border-radius: 5px;
}

.haber-item img {
  transition: transform 0.3s ease;
}

.haber-item:hover img {
  transform: scale(1.03);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
  .haberler-container {
    padding: 20px;
  }
  
  .ana-haber-card,
  .haber-listesi {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .haberler-container .row {
    flex-direction: column;
  }
  
  .ana-haber-card {
    margin-bottom: 30px;
  }
  
  .haber-listesi {
    max-height: none;
  }
}

/* haberler son */
.kurumsal-div {
  margin: 100px 0px 0px 0px;
}

.kurumsal-img {
  width: 100%;
  margin: -80px 0px 0px 0px;
}

/* haber son */
.haberler-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  padding: 2rem;
  background: var(--light-bg);
  box-sizing: border-box;
}

.ana-haber-card {
  flex: 1 1 65%;
  background: var(--dark-bg);
  border-radius: 16px;
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(12, 78, 142, 1);
  transition: transform 0.3s ease;
}

.ana-haber-card:hover {
  transform: translateY(-5px);
}

.ana-haber-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}

.ana-haber-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.ana-haber-card:hover .ana-haber-img {
  filter: brightness(1);
}

.ana-haber-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ana-haber-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.tarih {
  font-size: 0.9rem;
  color: #c9ddee;
}

/* Slider Alanı */
.slider-container {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 600px;
  overflow-y: auto;
}

.slider-item {
  background: var(--text-light);
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(12, 78, 142, 1);
  padding: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.slider-item:hover,
.slider-item.active {
  background-color: var(--logo-blue);
  color: var(--text-light);
  transform: translateX(6px);
  border-color: #f0f4f8;
}

.slider-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.slider-item:hover img,
.slider-item.active img {
  filter: brightness(1);
}

.slider-item h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

/* Scrollbar styles for slider container */
.slider-container::-webkit-scrollbar {
  width: 6px;
}

.slider-container::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 10px;
}

.slider-container::-webkit-scrollbar-thumb {
  background: var(--logo-blue);
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .haberler-container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .ana-haber-card {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .slider-container {
    flex-direction: row;
    max-height: unset;
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  .slider-item {
    min-width: 180px;
    flex-shrink: 0;
    transform: none !important;
  }
}

/* haber son */

.card-header>card-title>a {
  background-color: #0c4e8e;
  color: white;
}

.sertifika-logo {
  width: 100%;
}

.sertifika-baslik {
  border-top: 1px solid #0c4e8e;
  text-align: center;
}

.duyuru-resim-kutu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
}

.duyuru-resim {
  width: 200px !important;
  max-width: 100%;
}

.duyuru-kutu {
  display: flex;
  flex-direction: row;
}

@media (max-width: 1000px) {
  .duyuru-kutu {
    display: flex;
    flex-direction: column;
  }
}

/* ilt_inpt */
.ilt_inpt {
  color: black;
}

.ilt_inpt:hover,
.ilt_inpt:focus {
  color: black;
  border: 1px solid #0c4e8e;
}

/* ilt_inpt */

.arastirma-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80vw;
  /* Bu senin elinde, küçült-büyüt */
  max-width: 1000px;
  
}

.arastirma-wrapper {
  aspect-ratio: 7 / 1.2;
  width: 100%;
  position: relative;
  border-radius: 8px;
}

.green-arastirma {
  color: #03894f;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border-radius: 8px;
}

.blue-decoration {
  background-color: #0c4e8e;
  margin-left: auto;
  margin-right: auto;
  width: calc(60% / 3);
  height: calc(80% / 2);
  position: absolute;
  z-index: 0;
  border-radius: 6px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.blue-decoration.top-left {
  top: 44px;
  left: 0;
  transform: translate(-20px, -20px);
}

.blue-decoration.bottom-right {
  bottom: 44px;
  right: 0;
  transform: translate(20px, 20px);
}

.arastirma-text {
  background-color: #03894f;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  padding: 0 5%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arastirma-kutu-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 75px;
}

.arastirma-kutu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.arastirma-kutu {
  width: 250px;
}

.arastirma-kutu-resim {
  width: 230px;
  height: 230px;
  object-fit: cover;
  object-position: right;
  border-radius: 50%;
}

.arastirma-kutu-baslik {
  height: 52px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #0c4e8e;
  margin-top: 10px;
}

.mfp-counter {
  display: none;
}

.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

th {
  background-color: #f4f4f4;
}

tr:nth-child(even) {
  background-color: #fafafa;
}

.galeri-baslik {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: black;
}

.galeri-resim {
  border: 1px solid #444;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.haber-galeri-resim {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
  color: var(--default);
}

/* Hover ile dropdown açma */
.hover-dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* Bootstrap boşluk bırakıyor, gerekirse sıfırla */
}

/* Soldaki buton için */
.dropdown-menu.hover-dropdown-left {
  left: 0;
  right: auto;
}

/* Sağdaki buton için */
.dropdown-menu.hover-dropdown-right {
  left: auto;
  right: 0;
}

/* Bootstrap varsayılanı override etmek gerekebilir */
.hover-dropdown .dropdown-menu {
  display: none;
  transition: all 0.3s ease;
  position: absolute;
}

/* Hover ile dropdown açma */
/* platformlar */
.nav-tabs {
  justify-content: center;
  border-bottom: 3px solid #00b7b7;
}

.nav-tabs .nav-link {
  font-size: 1.1rem;
  padding: 12px 20px;
  color: #555;
  border: none;
  border-bottom: 4px solid transparent;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: #00b7b7;
  border-color: #00b7b7;
  font-weight: bold;
}

.tab-content {
  margin-top: 40px;
  background: #f1f9f9;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  min-height: 500px;
}

.media-29101 img {
  border-radius: 12px;
  width: 320px;
  max-width: 100%;
  object-fit: cover;
}

.category {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00b7b7;
}

.platform-text {
  font-size: 1.1rem;
  margin-top: 20px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .tab-content {
    padding: 20px;
  }
  
  .category {
    font-size: 1.4rem;
  }
}

/* platformlar */
::selection {
  background: #0c4e8e;
  color: white;
}

.iletisim-btn {
  display: flex;
  flex-direction: column;
}

.iletisim-btn i {
  text-align: center;
  color: #0c4e8e;
  font-size: 40px;
  border-bottom: 2px solid #0c4e8e;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.iletisim-btn span {
  text-align: center;
  color: #444;
  font-size: 18px;
}

.footer-baslik {
  color: white;
  font-size: 18px;
}

.footer-border-bottom {
  border-bottom: 2px solid rgb(255 255 255 / 50%);;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.main {
  min-height: 600px;
}

.dil-div {
  align-items: center;
  margin-left: 20px;
}

.dil-btn {
  margin: 0px 8px;
  font-weight: bold;
  font-size: 14px;
}

.dil-bayrak {
  width: 20px;
}

.banner-div {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-baslik {
  background-color: rgb(255 255 255 / 80%);
  padding: 10px;
  border-radius: 20px;
  font-size: 40px;
  color: #0c4e8e;
  text-align: center;
}

.hakkimizda-resim {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* platformlar */
.platformlar-div {
  background-color: white;
  text-align: center;
  margin: 10px;
  padding: 20px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px #0c4e8e;
  transition: all 0.3s ease;
  width: 100%;
}

.platformlar-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.platformlar-resim {
  width: 300px;
  max-width: 100%;
}

.platformlar-baslik {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #0c4e8e;
}

.platformlar-baslik-2 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #009640 0%, #a8e6a1 100%);
  color: white;
  padding: 8px;
  border-radius: 20px;
}

.platformlar-yazi {
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* platformlar */

/* yetenekler */
.yetenekler-div {
  background-color: white;
  text-align: center;
  margin: 10px;
  padding: 20px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px #0c4e8e;
  transition: all 0.3s ease;
  width: 100%;
}

.yetenekler-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.yetenekler-resim {
  width: 80px;
  max-width: 100%;
}

.yetenekler-baslik {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #0c4e8e;
}

.yetenekler-baslik-2 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #009640 0%, #a8e6a1 100%);
  color: white;
  padding: 8px;
  border-radius: 20px;
}

.yetenekler-yazi {
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* yetenekler */

/* kutu */
.kutu-div {
  text-align: center;
  margin: 10px;
  padding: 20px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px #0c4e8e;
  transition: all 0.3s ease;
  width: 100%;
}

.kutu-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.kutu-resim {
  width: 300px;
  max-width: 100%;
}

.kutu-baslik {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0c4e8e;
}

.kutu-baslik-2 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #009640 0%, #a8e6a1 100%);
  color: white;
  padding: 8px;
  border-radius: 20px;
}

.kutu-yazi {
  display: block;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* kutu */

/* etkinlik */
.etkinlik-kutu {
  margin: 20px auto;
}

.etkinlik-div {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  /* gölge rengi */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  /* beyaz arka plan */
  margin: 20px auto;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.etkinlik-div:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.etkinlik-resim {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: gray;
  display: block;
  border-bottom: 1px solid #eee;
}

.etkinlik-buyuk-resim {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

.etkinlik-tarih {
  font-size: 0.85rem;
  color: #009640;
  /* tarih için yeşil tonu */
  padding: 12px 20px 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.etkinlik-baslik {
  font-size: 1rem;
  font-weight: 700;
  padding: 0 20px 20px;
  color: #0c4e8e;
  /* başlık için mavi tonu */
  line-height: 1.4;
  min-height: 65px;
}

/* etkinlik */


/* duyuru */
.duyuru-div {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
  background-color: #fff;
  margin: 10px auto;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-left: 6px solid #0c4e8e;
  border-radius: 12px;
}

.duyuru-div:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  border-left-color: #009640;
}

.duyuru-tarih {
  font-size: 0.9rem;
  color: #009640;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.duyuru-baslik {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0c4e8e;
  line-height: 1.5;
  min-height: 54px;
  word-wrap: break-word;
}

/* duyuru */

/* haber */
.haber-div {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  /* gölge rengi */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  /* beyaz arka plan */
  margin: 20px auto;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-left: 6px solid #0c4e8e;
  /* mavi vurgu çizgisi */
}

.haber-div:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-left-color: #009640;
  /* hover'da yeşile geçiş */
}

.haber-resim {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  background-color: gray;
  display: block;
  border-bottom: 1px solid #eee;
}

.haber-tarih {
  font-size: 0.85rem;
  color: #009640;
  /* tarih için yeşil tonu */
  padding: 12px 20px 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.haber-baslik {
  font-size: 1rem;
  font-weight: 700;
  padding: 0 20px 20px;
  color: #0c4e8e;
  /* başlık için mavi tonu */
  line-height: 1.4;
  min-height: 65px;
}

/* haber */

.title {
  color: #0c4e8e;
  font-size: 24px;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin: 0px;
}

.title-white {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin: 0px;
}

.title-style {
  position: relative;
  border-bottom: 3px solid #00bfa6;
  background: linear-gradient(90deg, rgba(0, 191, 166, 0.1), rgba(0, 191, 166, 0));
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.title-boder {
  border: 1px solid #0c4e8e;
  width: 200px;
}

.fc-toolbar-title,
.fc-col-header-cell-cushion,
.fc-daygrid-day-number,
.fc-col-header-cell-cushion:hover {
  font-weight: bold;
  color: #0c4e8e;
}

a {
  text-decoration: none !important;
}

.header-bg {
  /* background: linear-gradient(45deg, rgb(12 78 142) 0%, rgba(0, 150, 64, 1) 100%); */
  background-color: rgb(12 78 142);
}

.footer-bg {
  /* background: linear-gradient(45deg, rgb(12 78 142) 0%, rgba(0, 150, 64, 1) 100%); */
  background-color: rgb(12 78 142);
}

.footer-border {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, 
  #0c4e8e 0%,     /* sol baş mavi */
  #ffffff 50%,    /* ortası beyaz */
  #0c4e8e 100%    /* sağ baş mavi */
  );
  border-image-slice: 1;
}

.title-border {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, 
  #0c4e8e 0%,     /* sol baş mavi */
  #ffffff 50%,    /* ortası beyaz */
  #0c4e8e 100%    /* sağ baş mavi */
  );
  border-image-slice: 1;
}

.bg-1 {
  background-color: #f5f5f5;
}

.bg-2 {
  background-color: #0c4e8e;
}

.footer-top-bg {
  background-color: rgb(12 78 142);
}

.footer-top-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1000px) {
  .footer-top-div {
    flex-direction: column;
  }
}

.footer-bottom-bg {
  background-color: rgb(12 78 142);
}

.header-link {
  color: white;
  margin: 4px 8px;
  font-size: 14px;
}

.header-link:hover {
  color: white;
}

.footer-link {
  color: white;
  margin: 4px 8px;
  font-size: 14px;
}

.footer-link:hover {
  color: black;
}

.sosyal-ikon {
  text-decoration: none;
}

.ana-sayfa-sosyal-ikon-resim {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  margin: 4px;
}

.sosyal-ikon-resim {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  margin: 4px;
}

.button {
  background: white;
  color: #0c4e8e;
  border: 1px solid;
  padding: 6px 4px;
  margin: 0px 4px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 177px;
  text-align: center;
}

.button:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  background: white;
  color: #0c4e8e;
  border-color: #009640;
  border: 1px solid;
}

.logo-1 {
  width: 150px;
  max-width: 100%;
}

.logo-2 {
  width: 84px;
  max-width: 100%;
}

.mini_logo {
  width: 120px;
}

/* mobil menü tam ekran*/
.alt_menu_btn_div {
  transition: 0.5s;
  /* border-top: 1px solid #0c4e8e; */
  border-bottom: 1px solid #0c4e8e;
}

.alt_alt_menu_btn_div {
  transition: 0.5s;
  /* border-top: 1px solid #0c4e8e; */
  border-bottom: 1px solid #0c4e8e;
}

.bg_1 {
  background-color: #f5f5f5 !important;
}

.bg_2 {
  background-color: #f5f5f5 !important;
}

.mobil_menu_overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
}

.mobil_menu_overlay_content {
  position: relative;
  top: 10%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mobil_menu_overlay a {
  padding: 12px 0px;
  margin: 6px 0px;
  text-decoration: none;
  font-size: 36px;
  color: #0c4e8e;
  display: inline;
  transition: 0.3s;
}

.mobil_menu_overlay a.active {
  border-bottom: 2px solid #0c4e8e;
}

.mobil_menu_overlay a:hover,
.mobil_menu_overlay a:focus {
  color: #0c4e8e;
}

.mobil_menu_overlay .mobil_menu_closebtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
}

#drop_down_1 {
  overflow-y: hidden;
  transition: 0.5s;
}

/* mobil menü tam ekran */
/* mobil menü buton */
#nav-icon3 {
  width: 46px;
  height: 38px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon3 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #0c4e8e;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

/* Icon 3 */
#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 15px;
}

#nav-icon3 span:nth-child(4) {
  top: 30px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#hizmet_formu.row {
  margin-top: 20px;
  margin-bottom: 20px;
}

#basvuru_formu.col-md-12 {
  text-align: center;
  font-size: 24px;
}

.leftListHeader {
  font-size: 1rem;
  font-weight: 700;
  color: #0c4e8e;
  line-height: 1.4;
}

.justMainColor {
  color: #0c4e8e !important;
}


/* Temanın header-nav kurallarını tamamen geçersiz kılma */
#header .header-nav a.btn.btn-light,
#header .header-nav .menu-item a.btn.btn-light,
#header .header-nav li a.btn.btn-light,
#header .header-nav nav>ul>li>a.btn.btn-light,
#header .header-nav .dropdown-item.btn.btn-light {
  display: inline-block !important;
  position: relative !important;
  background: #f8f9fa !important;
  background-color: #f8f9fa !important;
  background-image: linear-gradient(to right, rgba(12, 78, 142, 1) 0%, #0c4e8e 100%) !important;
  color: #fff !important;
  padding: 0.533rem 0.933rem !important;
  margin: 5px 2px !important;
  border: 0 !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  text-decoration: none !important;
  min-height: auto !important;
  height: auto !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  vertical-align: middle !important;
  cursor: pointer !important;
  user-select: none !important;
  line-height: 1.5 !important;
}

/* Hover efekti - tema kurallarını geçersiz kılma */
#header .header-nav a.btn.btn-light:hover,
#header .header-nav .menu-item a.btn.btn-light:hover,
#header .header-nav li a.btn.btn-light:hover,
#header .header-nav nav>ul>li>a.btn.btn-light:hover {
  background: #e2e6ea !important;
  background-color: #e2e6ea !important;
  background-image: linear-gradient(to right, rgba(12, 78, 142, 1) 0%, #0c4e8e 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
  color: #fff !important;
  border: 0 !important;
}

/* Aktif/seçili durum */
#header .header-nav a.btn.btn-light.active,
#header .header-nav a.btn.btn-light.active:hover,
#header .header-nav .menu-item a.btn.btn-light.active,
#header .header-nav li a.btn.btn-light.active {
  background: #0088CC !important;
  background-color: #0088CC !important;
  background-image: linear-gradient(to right, rgba(12, 78, 142, 1) 0%, #0c4e8e 100%) !important;
  color: white !important;
  border: 0 !important;
}

/* Temanın :before ve :after kurallarını tamamen engelleme */
#header .header-nav a.btn.btn-light:before,
#header .header-nav a.btn.btn-light:after,
#header .header-nav .menu-item a.btn.btn-light:before,
#header .header-nav .menu-item a.btn.btn-light:after,
#header .header-nav li a.btn.btn-light:before,
#header .header-nav li a.btn.btn-light:after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: none !important;
  opacity: 0 !important;
}

/* Temanın dropdown ve hover kurallarını geçersiz kılma */
#header .header-nav-main nav>ul>li.dropdown.open>a.btn.btn-light:before,
#header .header-nav-main nav>ul>li.dropdown:hover>a.btn.btn-light:before,
#header .header-nav-main nav>ul>li.dropdown.open>a.btn.btn-light:after,
#header .header-nav-main nav>ul>li.dropdown:hover>a.btn.btn-light:after {
  display: none !important;
  content: none !important;
}

/* Responsive uyumluluk */
@media (min-width: 992px) {
  #header .header-nav a.btn.btn-light {
    margin: 5px 2px !important;
    padding: 0.533rem 0.933rem !important;
    min-height: auto !important;
    height: auto !important;
  }
}

/* Border-0 sınıfı için */
#header .header-nav a.border-0 {
  border: 0 !important;
}

/* Text-dark sınıfı için */
#header .header-nav a.text-dark {
  color: #212529 !important;
}

/* Mb-2 sınıfı için */
#header .header-nav a.mb-2 {
  margin-bottom: 0.5rem !important;
}

/* Gradient sınıfı için */
#header .header-nav a.bg-gradient-primary-light-rgba-30 {
  background-image: linear-gradient(to right, rgba(12, 78, 142, 1) 0%, #0c4e8e 100%) !important;
}

/* Butonun tema tarafından ezilen tüm özelliklerini yeniden tanımlama */
#header .header-nav a.btn {
  display: inline-block !important;
  padding: 0.533rem 0.933rem !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  text-align: center !important;
  text-decoration: none !important;
  vertical-align: middle !important;
  cursor: pointer !important;
  user-select: none !important;
  border: 0 !important;
  border-radius: 4px !important;
  background-color: #f8f9fa !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}




/* ===========================================
ANIMASYONSUZ ACCORDION NAVIGATION
=========================================== */

/* Temel accordion nav container */
.accordion-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Accordion item */
.accordion-nav .accordion-item {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}

/* Accordion header (ana kategori başlıkları) */
.accordion-nav .accordion-header {
  transition: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 5px 30px 5px 10px;
  display: block;
  color: #666;
  font-size: 0.9em;
  text-decoration: none;
  line-height: 20px;
  cursor: pointer;
  position: relative;
  background: transparent;
}

/* Header hover efekti */
.accordion-nav .accordion-header:hover {
  background-color: rgba(0, 0, 0, 0.03);
  text-decoration: none;
}

/* Header aktif durumu */
.accordion-nav .accordion-header:not(.collapsed) {
  font-weight: bold;
  color: #0c4e8e;
}

/* Ok ikonu (sol tarafta) */
.accordion-nav .accordion-header:before {
  font-family: 'Font Awesome 6 Free';
  content: "\f054";
  font-weight: 900;
  position: absolute;
  top: 5px;
  font-size: 7.2px;
  font-size: 0.45rem;
  opacity: 0.7;
  transform: translate3d(-1px, 0, 0);
  left: 0px;
}

/* Aktif header için ok ikonu rengi */
.accordion-nav .accordion-header:not(.collapsed):before {
  color: #0c4e8e;
  opacity: 1;
}

/* Chevron ikonu (sağ tarafta) */
.accordion-nav .accordion-header .accordion-icon {
  position: absolute;
  right: 10px;
  top: 35%;
  transform: translateY(-35%);
  transition: none;
  font-size: 0.7rem;
  color: #666;
}

/* Kapalı durumda chevron ikonu */
.accordion-nav .accordion-header.collapsed .accordion-icon {
  transform: translateY(-35%) rotate(-90deg);
}

/* Açık durumda chevron ikonu */
.accordion-nav .accordion-header:not(.collapsed) .accordion-icon {
  transform: translateY(-35%) rotate(0deg);
  color: #0c4e8e;
}

/* Alt menü container - ANIMASYONSUZ */
.accordion-nav .collapse {
  display: none;
  transition: none;
}

/* Açık alt menü */
.accordion-nav .collapse.show {
  display: block;
}

/* Geçiş sırasında - animasyon yok */
.accordion-nav .collapsing {
  display: none;
  transition: none;
}

/* Alt menü listesi */
.accordion-nav .accordion-item ul.nav {
  list-style: none;
  margin: 0 0 0 25px;
  padding: 0;
}

/* Alt menü itemleri */
.accordion-nav .accordion-item ul.nav .nav-item {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
}

/* Alt menü linkleri */
.accordion-nav .accordion-item ul.nav .nav-link {
  transition: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 5px 0 5px 10px;
  display: block;
  color: #666;
  font-size: 0.85em;
  text-decoration: none;
  line-height: 18px;
}

/* Alt menü son item için border kaldır */
.accordion-nav .accordion-item:last-child>.accordion-header {
  border-bottom: 0;
}

.accordion-nav .accordion-item ul.nav .nav-item:last-child .nav-link {
  border-bottom: 0;
}

/* Alt menü hover efekti */
.accordion-nav .accordion-item ul.nav .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
  padding-left: 10px;
}

/* Alt menü aktif link */
.accordion-nav .accordion-item ul.nav .nav-link.active {
  font-weight: bold;
  color: #0c4e8e;
}

/* Tüm transition'ları kaldır */
.accordion-nav *,
.accordion-nav *::before,
.accordion-nav *::after {
  transition: none !important;
  animation: none !important;
}

/* Focus indicator for accessibility */
.accordion-nav .accordion-header:focus-visible {
  outline: 2px solid #0c4e8e;
  outline-offset: 2px;
}

.accordion-nav .accordion-item ul.nav .nav-link:focus-visible {
  outline: 2px solid #0c4e8e;
  outline-offset: 1px;
  border-radius: 2px;
}

.newsImage {
  object-fit: contain;
  height: 200px !important;
}

.newsHeader {
  font-size: 22px;
  text-decoration: underline dotted !important;
  text-underline-offset: 3px;
  text-decoration-thickness: from-font;
  color: #000;
}

.newsHeader:hover{
  color: #0c4e8e !important;
  text-decoration: underline !important;
}

.sectionNews {
  background: #0c4e8e !important;
  color: #fff;
  padding: 20px 0 !important;
}

.one-page-img-1 {
  width: 200px;
  max-width: 100%;
  border-radius: 50%;
  border: 1px solid #0c4e8e;
  padding: 10px;
}

.one-page-text-1 {
  font-size: 1.1rem;
  line-height: 1.6;
}
