html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.main-content {
  flex-grow: 1;
}

nav {
  background-image: linear-gradient(rgb(0, 106, 187), darkred);
  display: flex;
  align-items: center;
  padding: 10px 20px;
  flex-shrink: 0;
}
nav .nav-link {
  color: white;
}
nav img {
  transition: transform 0.6s ease-in-out;
  width: 180px;
  height: auto;
}
nav img:hover {
  transform: rotateY(360deg);
  cursor: pointer;
}
@media (max-width: 768px) {
  nav img {
    width: 140px;
  }
}
@media (max-width: 480px) {
  nav img {
    width: 110px;
  }
}

.main {
  height: 85vh;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.593), rgba(255, 255, 255, 0.923), rgba(255, 255, 255, 0.96)), url(resimler/arkaPlan.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.main h1 {
  font-size: 2.8rem;
}
.main p {
  max-width: 600px;
  margin: 0 auto;
}
.main .btn-primary {
  border-radius: 50px;
  padding: 0.7rem 2rem;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}
.main .btn-primary:hover {
  transform: scale(0.9);
  color: none;
  background-color: darkred;
}

.kartlar .card {
  background-color: darkred;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}
.kartlar .card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.482) !important;
}
.kartlar img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.kartlar .btn {
  border-radius: 50px;
}

.hakkimda h4 {
  color: darkred;
}
.hakkimda .beceri {
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 30px;
  padding: 10px 22px;
  transition: all 0.3s ease;
  background-color: darkred;
  color: #fff;
  border: 2px solid darkred;
  cursor: pointer;
}
.hakkimda .beceri:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: darkred;
}
.hakkimda .sertifika-karti {
  background-color: #fff;
  border: 2px solid rgb(0, 106, 187);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: left;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.hakkimda .sertifika-karti .card-title {
  color: rgb(0, 106, 187);
  font-weight: bold;
}
.hakkimda .sertifika-karti .card-subtitle {
  color: #777;
}
.hakkimda .sertifika-karti .card-text {
  color: #555;
  flex-grow: 1;
  font-size: 0.9rem;
}
.hakkimda .sertifika-karti .btn-sertifika {
  background-color: darkred;
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}
.hakkimda .sertifika-karti .btn-sertifika:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}
.hakkimda .sertifika-karti:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgb(0, 77.0909090909, 136);
}

.icons a .bi {
  transition: all 0.3s ease;
  display: inline-block;
}
.icons a:hover .bi-instagram {
  transform: scale(1.5);
  color: rgb(255, 0, 128);
}
.icons a:hover .bi-github {
  transform: scale(1.7);
  color: #333;
}
.icons a:hover .bi-linkedin {
  transform: scale(1.5);
  color: rgb(0, 106, 187);
}

footer {
  flex-shrink: 0;
  background-color: darkred !important;
}
footer a:hover {
  color: #777 !important;
}/*# sourceMappingURL=main.css.map */