:root {
    --bg: #f6f3f3;
    --menutxtcl: 67,67,67;
    --menutxtweight: 600;
    --intlinear: 52,49,46;
    --txtall: 67,67,67;
    --cl1: 78,148,179;
    --pckdf: var(--cl1);
    --whydf: var(--cl1);
    --lbds: 255, 255, 255;
    --lsdb: 56, 58, 70;
    --text: 85, 85, 85;
    --fixedtel: #d581b4;
}
body.dark {
    --bg: #26272d;
    --menutxtcl: 226, 226, 228;
    --intlinear: 45, 45, 58;
    --txtall: 226, 226, 228;
    --cl1: 113,194,179;
    --lbds: 56, 58, 70;
    --lsdb: 255, 255, 255;
    --pckdf: var(--cl1);
    --text: 226, 226, 228;
}

@media (max-width: 768px){
    .fixActions {
        display: none !important;
    }
}
.homepageList {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 20px;
}

/* Varsayılan kutu boyutu */
.homepageList .item {
  width: 140px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homepageList .item a {
  text-decoration: none;
  color: inherit;
}

.homepageList .box {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.homepageList .item:hover {
  transform: translateY(-8px);
}

.homepageList .item:hover .box {
  background-color: #f0f0f0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.homepageList .box i {
  font-size: 32px;
  color: #333;
}

.homepageList .serviceName {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  font-weight: bold;
  font-size: 14px;
  color: #111;
  line-height: 1.2;
  max-width: 100%;
}

.homepageList .serviceName::after {
  content: "Hizmetleri";
  font-size: 12px;
  font-weight: normal;
  color: #777;
  margin-top: 2px;
  display: block;
}

/* Mobil uyumluluk */
@media (max-width: 600px) {
  .homepageList .item {
    width: 100px;
  }

  .homepageList .box {
    padding: 15px;
  }

  .homepageList .box i {
    font-size: 28px;
  }

  .homepageList .serviceName {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .homepageList .item {
    width: 80px;
  }

  .homepageList .box {
    padding: 10px;
  }

  .homepageList .box i {
    font-size: 24px;
  }

  .homepageList .serviceName {
    font-size: 10px;
  }
}