* {
  box-sizing: border-box;
}

.fixed-header {
  position: absolute; /* veya fixed, sayfa kaydırıldığında da sabit kalmasını istiyorsanız */
  top: 120px;          /* üstten uzaklığı, mevcut tasarımınıza göre ayarlayın */
  left: 50%;          /* yatayda ortalamak için */
  transform: translateX(-50%); /* tam ortalama */
  font-size: 54px;    /* mevcut font-size ile aynı */
  color: #262262;     /* mevcut renk ile aynı */
  z-index: 1000;      /* diğer öğelerin üstünde görünsün */
  pointer-events: none; /* tıklanabilir olmasını engeller, isterseniz kaldırabilirsiniz */
  font-weight: 500;
}

@media (max-width: 768px) {
  .fixed-header {
    font-size: 29px;
    top: 120px;
    width: 100% !important;
    text-align: center;
  }
}

body, html {
  margin: 0;
  height: 100%;
  background-color: #efeed6;
  color: #112A5C;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


@media all and (max-width: 1000px) {
  .navbar .links{
    display: none;
  }

    .navbar .toggle{
      display: block;
    }

  .dropdown_menu {
    display: block;
  }
  .navbar .logo {
    flex-grow: 0;
  }

  .navbar .ctc {
    flex-grow: 1;
    text-align: center;
    display: inline;
  }

  .navbar .toggle {
    flex-grow: 0;
    margin-left: auto;
  }  

}


.dropdown {
  position: relative;
  display: inline-block;
}



.dropbtn {
  color: #081F37;
  padding: 14px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 16px 32px 0px rgba(8, 31, 55, 0.7);
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
}

.dropdown-content a {
  color: #081f37;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
}

.dropdown-content:hover{
  color: #081f37 !important;
}

* {
  scrollbar-width: auto;
  scrollbar-color: #002244 silver;
}

*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: silver;
}

*::-webkit-scrollbar-thumb {
  background-color: #112A5C;

}


.subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #3b4b75;
}
.icon{
  color: #A18F61 !important;
}

.application-section {
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 200px;
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1; /* kartı doldurur */
}

.card-content h2 {
  margin-bottom: 0.8rem;
}
.applications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.application-card {
  display: flex;
  flex-direction: column;
  justify-content: center; /* dikey ortalama */
  align-items: center;     /* yatay ortalama */
  background-color: #112A5C;
  border: 2px solid #A18F61;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  min-height: 380px; /* aynı yükseklik için */
}

.application-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.application-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: #A18F61;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0.5rem 0;
}

.details {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.apply-button {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
  padding: 0.6rem 1.4rem;
  background-color: white;
  color: #262262;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.apply-button:hover {
  background-color: #efeed6;
  color: #A18F61;
}

/* Responsive */
@media (max-width: 576px) {
  .subtitle { font-size: 1rem; padding: 0 1rem; }
}
