body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f3f3f3;
  padding: 0.5rem 3rem;
}

.logo-header {
  width: 60px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* HERO SECTION */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 6rem;
}

.left-content {
  flex: 1;
}

.text-logo {
  width: 380px;
  max-width: 100%;
  height: auto;
}

.left-content p {
  margin-top: 1.5rem;
  line-height: 1.6;
}

.cta {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 1px solid #000;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #000;
  color: #fff;
}

.right-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.chameleon {
  width: 420px;
  height: auto;
}

/* FOOTER */
.footer {
  text-align: center;
  background: #0a0a0a;
  color: #fff;
  padding: 3rem 0;
}

.footer h4 {
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer h1 {
  font-size: 4rem;
  letter-spacing: 3px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .right-content {
    order: -1;
  }

  .chameleon {
    width: 180px;
    margin-bottom: 2rem;
  }

  .text-logo {
    width: 240px;
    margin: 0 auto;
  }

  .cta {
    margin: 2rem auto 0;
    display: inline-block;
  }

  .logo-header {
    width: 50px;
  }

  .navbar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
/* ======= SEKTIONI KLIENTËT ======= */
.clients {
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

.clients h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== LOGO SLIDER ===== */
.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logos {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: slide 25s linear infinite;
  width: max-content;
}

.logos img {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== ANIMACIONI ===== */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .clients {
    padding: 3rem 1rem;
  }

  .clients h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .logos {
    gap: 2rem;
    animation: slide 18s linear infinite;
  }

  .logos img {
    height: 50px;
  }
}


.about-section {
  background-color: #fff;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
}

.about-logo img {
  width: 340px;
  height: auto;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 42px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #e63946; /* e kuqe Exodia */
}

.about-text p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-logo img {
    width: 200px;
    margin-bottom: 20px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-text p {
    font-size: 16px;
  }
}
.services-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 100px 10%;
  text-align: center;
  position: relative;
}

.services-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.services-title span {
  color: #e63946;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.service-box {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: #e63946;
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
}

.service-box h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-box h3 span {
  color: #e63946;
  font-weight: 400;
}

.service-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 12px;
}

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

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 70px 6%;
  }

  .services-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .service-box {
    padding: 25px;
  }

  .service-box h3 {
    font-size: 20px;
  }

  .service-box p {
    font-size: 15px;
  }
}
