@charset "utf-8";

:root {
  --default-color: #08cc94;
}

html,
body {
  margin: 0;
  padding: 0;
}
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1; /* Üstte görünmesini sağla */
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.nav-link svg {
  display: none;
  margin-right: 5px;
  vertical-align: middle;
}

.nav-link.active svg {
  display: inline;
}
.nav-link.active {
  color: var(--default-color) !important; /* İstediğin rengi buraya yaz */
}

.viewmyproject {
  background-color: var(--default-color); /* Arka plan rengi */
  border: none; /* Sınır yok */
  padding: 12px 30px; /* İç boşluk */
  font-size: 16px; /* Yazı büyüklüğü */
  font-weight: 600; /* Yazı kalınlığı */
  border-radius: 50px; /* Köşe yuvarlama */
  transition: all 0.3s ease; /* Geçiş efekti */
  text-transform: uppercase; /* Yazıyı büyük harfe dönüştür */
  box-shadow: var(--default-color); /* Gölgeleme */
  color: rgb(255, 255, 255);
}

.viewmyproject:hover {
  background-color: #199d28; /* Hover durumu */
  box-shadow: var(--default-color); /* Hover gölgeleme */
  transform: translateY(-2px); /* Hoverda buton yukarı kayar */
  color: whitesmoke;
}

.viewmyproject:focus,
.viewmyproject:active {
  outline: none; /* Odaklanınca kenar çerçevesini kaldır */
  background-color: var(--default-color); /* Tıklanmış halde farklı renk */
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  object-fit: cover;
  height: 200px;
}

.card-body {
  padding: 20px;
}

.text-primary {
  color: var(--default-color) !important;
  text-decoration: none;
}

.text-muted {
  color: #6c757d;
}
.sendButton {
  background-color: var(--default-color);
  color: white;
}
