body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* LOGO */
.logo-img {
  height: 28px; /* იგივე რაც მთავარ გვერდზე */
  width: auto;
  margin-right: 8px;
  filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

/* NAVBAR */
.navbar {
  background-color: #111 !important;
}

.nav-link {
  color: #fff !important;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #dc3545 !important;
}

/* SERVICES SECTION */
.services-section {
  background-color: #000;
  padding-top: 100px;
}

/* სურათის ჩარჩოები */
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.service-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(220, 53, 69, 0.4);
}

.service-card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}

/* სურათის გაფართოება (popup) */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #dc3545;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 12px 15px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* FOOTER */
footer {
  border-top: 1px solid #333;
}

footer a {
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .logo-img {
    height: 22px;
  }

  .service-card img {
    height: 200px;
  }

  .services-section {
    padding-top: 80px;
  }

  .modal-content {
    width: 90%;
  }

  .close {
    top: 20px;
    right: 25px;
  }
}
