*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 .navbar-nav .nav-link {
    color: #28a745 !important;
    transition: all 0.3s ease;
    font-weight: 500;
  }


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2328a745' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


  .navbar-nav .nav-link:hover {
    color: #1e7e34 !important;
    transform: scale(1.05);
  }

  .navbar-nav .dropdown-menu a.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #28a745;
  }
.hero {
      background: url('img/herobg.jpg') no-repeat center center/cover;
      color: white;
      height: 100vh;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

/* project kısmı*/


.project-card {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card .card-body {
  padding: 15px;
}

.project-card h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.project-slider::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.scroll-left {
  left: -10px;
}

.scroll-right {
  right: -10px;
}
 

.project-card {
  transition: transform 0.2s;
}
.project-card:hover {
  transform: scale(1.02);
}


/*
Neden biz kısmı
*/


.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  border: 2px solid #28a745;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card::before {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.feature-card::after {
  bottom: 0;
  left: 0;
  border-top: none;
  border-right: none;
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}
