* Banner Career Css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slider-option {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.slider-content-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;

}

.hero-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

/* Metin Efekti */
.effect-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
}

.hero-banner__title {
  font-size: 4rem;
  /* 60px yerine */
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  /* Beyaz neon yazı */
  opacity: 0;
  animation: fade-in 2s ease-in-out forwards;
  z-index: 3;
  position: relative;
  font-family: "Quicksand", sans-serif !important;

  /* Yazı seçilebilsin */
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;

  /* Neon beyaz glow + 28a75 tonlu gölge */
  text-shadow:
    0 0 2.5px #ffffff,
    0 0 2.5px #ffffff,
    0 0 5px #ffffff,
    6px 6px 8px #28a75a;
}



@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-default-career-banner {
  padding: 1rem 2rem;
  background: #28a745;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-top: 50px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.btn-default-career-banner:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
  .hero-banner__title {
    font-size: 3rem;
  }

  .hero-banner__subtitle {
    font-size: 2rem;
  }

  .btn-default-career-banner {
    padding: 1rem 1rem;
    font-size: 1rem;
  }

}

a {
  text-decoration: none;
  /* Alt çizgiyi kaldır */
  color: inherit;
  /* Varsayılan rengi koru */
}

a:focus,
a:active {
  outline: none;
  /* Kenarlık (focus) efektini kaldır */
  color: inherit;
  /* Tıklandığında rengi değiştirme */
  text-decoration: none;
}


.tech-sub-page-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: auto;

  gap: 100px;
}

.tech-sub-page-section>.tech-sub-page-exp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  max-width: 1000px;
  gap: 30px;
}

.tech-sub-page-exp h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.tech-sub-page-exp h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #28a745;
  line-height: 1.4;
}

.tech-sub-page-exp p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.tech-sub-page-content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  /* Varsayılan olarak yan yana */
  flex-direction: row;
}

.tech-sub-page-content img {
  width: 700px;
  max-width: 1500px;
  height: auto;
}

.tech-sub-page-text {
  flex: 1;
  padding: 50px;
  text-align: center;
}

.tech-sub-page-text h3 {

  font-size: 1.8rem;
  font-weight: 600;
  color: #28a745;

  line-height: 1.4;
}

.tech-sub-page-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
  .tech-sub-page-content {
    flex-direction: column;
    gap: 20px;
  }

  .tech-sub-page-content img {
    max-width: 100%;
  }
}


