body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f8f8;
    color: #333;
}
.navbar {
  transition: background-color 0.4s ease;
  height: 120px;
}
.nav-link{
    font-weight: bolder;
    font-family:'Montserrat';
    color: #000000;
    font-size: 17px;
}
.navbar-brand img {
  height: 150px;
  width: 150px;
  margin-top: 15px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover {
    color: #FFD700;
}

.slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-text {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 20px 30px;
    border-radius: 8px;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
}

button.prev { left: 20px; }
button.next { right: 20px; }

.services, .projects, .contact {
    padding: 50px 20px;
    text-align: center;
}

.service-grid, .project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}




@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hkmzorta{
  margin-top: 150px;
}

.custom-slider button.prev, .custom-slider button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
}

.custom-slider button.prev { left: 20px; }
.custom-slider button.next { right: 20px; }


@media (max-width: 968px) {
    .header {
        flex-direction: column;
    }
    .service-grid, .project-grid {
        flex-direction: column;
    }
      .service-card {
        height: 400px;
        width: 100%;
    }
    .service-content {
        padding: 15px;
    }
    .navbar-brand img {
     width: 130px;
     height: 130px;
  }
  .navbar{
    height: auto;
  }
  .hkmzorta{
  margin-top: 300px;
}

}

@media (max-width: 768px) {
  .custom-project-row {
    flex-direction: column;
  }
  .netflix-project-card {
    grid-template-columns: 1fr;
  }
  .netflix-project-info {
    padding: 20px;
  }
}


@media (max-width: 576px) {
  .service-content h5, .card-title {
    font-size: 1.1rem;
  }
  .service-content p, .card-text {
    font-size: 0.9rem;
  }
}
