.video-counters-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* errëson pak videon për lexueshmëri */
}

.counters-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  color: white;
  text-align: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.counter {
  max-width: 220px;
}

.counter-number {
  font-size: 5rem;
  font-weight: 800;
  color: #5eecca; 
}


.counter-label {
  margin-top: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: white; 
}


.human-focus-section {
  background-color: #f0fafb; /* një ngjyrë shumë e lehtë, freskuese */
  padding: 80px 20px;
  font-family: 'Outfit', sans-serif;
  color: #1b365d; /* ngjyrë e errët dhe serioze */
  text-align: center;
}

.human-focus-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.human-focus-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #00b8c6; /* ngjyra kryesore e markës për kontrast */
}

.human-focus-section p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.care-section {
  padding: 80px 20px;
  background-color: #f9fcfd;
  font-family: 'Outfit', sans-serif;
}

.care-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.care-image {
  flex: 1;
}

.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
}

.care-text {
  flex: 1;
  background-color: #ffffff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1b365d;
}

.care-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00b8c6;
}

.care-text p {
  font-size: 1.15rem;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #333;
}


.vision-mission-section {
  padding: 80px 20px;
  background-color: #f9fcfd;
  font-family: 'Outfit', sans-serif;
}

.vision-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.vision-block, .mission-block {
  flex: 1 1 48%;
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-block:hover,
.mission-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.vision-block h2,
.mission-block h2 {
  font-size: 26px;
  color: #00b8c6;
  margin-bottom: 20px;
}

.vision-block p,
.mission-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}


.werte-section {
  padding: 80px 20px;
  background-color: #f7f9fc;
  text-align: center;
}

.werte-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00b8c6;
}

.werte-header p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #444;
}

.werte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.wert-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 30px;
  transition: transform 0.3s ease;
}

.wert-card:hover {
  transform: translateY(-5px);
}

.wert-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00b8c6;
}

.wert-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.wert-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}



.cta-final {
  background-color: #00b8c6;
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}
.cta-final h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.cta-final p {
  font-size: 18px;
  margin-bottom: 30px;
}
.cta-btn {
  background: white;
  color: #00b8c6;
  padding: 14px 36px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #273582;
  color: white;
}



/* Responsive padding */
@media (max-width: 768px) {
  .werte-section {
    padding: 60px 10px;
  }
}





@media (max-width: 768px) {
  .care-container {
    flex-direction: column;
  }

  .care-text {
    padding: 30px 20px;
  }

  .care-text h2 {
    font-size: 2rem;
  }

  .care-text p {
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  .counters-container {
    gap: 30px;
    justify-content: center;
  }

  .counter {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .counter-number {
    font-size: 3.5rem;
  }

  .counter-label {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .counter-number {
    font-size: 2.8rem;
  }

  .counter-label {
    font-size: 1rem;
  }
}