/* Google Font */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-light .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='rgba%280,0,0,0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
}

/* Hero Section */
.hero {
  position: relative;
  background: url('https://images.pexels.com/photos/4101143/pexels-photo-4101143.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
  height: 100vh;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.hero .container {
  position: relative;
  z-index: 2;
}

/* Hizmetler */
.service-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.service-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #007bff;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
footer a {
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #0d6efd;
}
.service-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}