.withlogo {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100px;
  height: 20px;
}
.imgnav {
  height: 50px;
}
.blks {
  color: black;
}
.sml {
  font-size: 15px;
}

.flow-wrap .text h2 {
  font-size: small; /* change this to whatever size you want */
  font-weight: 600; /* adjust weight if needed */
  color: #333; /* change text color */
  line-height: 1.2; /* adjust spacing between lines */
  margin: 0; /* remove default margin if needed */
}

.row {
  cursor: default;
}
.table-container {
  overflow-x: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  font-family: monospace;
}

thead {
  background: #2f4b75;
  color: #fff;
}

th,
td {
  padding: 15px;
  vertical-align: top;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}

th {
  text-align: center;
  font-weight: 600;
}

td ul {
  padding-left: 18px;
  margin: 0;
}

td ul li {
  list-style: "✓";
  margin-bottom: 6px;
}

.industry {
  font-weight: 600;
  background: #f0f0f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  table {
    min-width: 100%;
  }

  thead {
    display: none;
  }

  tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }

  td {
    display: block;
    border: none;
    border-bottom: 1px solid #eee;
  }

  td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #2f4b75;
  }

  .industry {
    background: #e9eef6;
  }
}
.clients {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ftco-navbar-light .navbar-toggler {
    font-size: larger;
  }
}
@media (max-width: 1024px) {
  .staff .text .position {
    font-size: small;
  }
  #maam {
    font-size: 19px;
  }
  #aliyah {
    font-size: larger;
    padding-bottom: 30px;
  }
  #hometo {
    font-size: 600px;
  }
}
@media (min-width: 853px) {
}
.chg {
  color: #e0e0e0;
}
h2 {
  color: #ffffff;

  animation: fadeDown 1s ease;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeUp 1s ease;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  transition: all 0.3s ease;
}

th {
  background: gray;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
}

tr {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

tr:nth-child(even) {
  background-color: #f7f7f7;
}

tr:hover {
  transform: scale(1.01);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  background-color: #e8f5e9;
}

td.industry {
  font-weight: bold;
  background-color: #f0f0f0;
}

td.empty {
  text-align: center;
  color: #aaa;
  font-style: italic;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li {
  margin-bottom: 5px;
  opacity: 0;
  transform: translateX(-10px);
  animation: slideIn 0.5s forwards;
}

/* stagger animation */
li:nth-child(1) {
  animation-delay: 0.1s;
}
li:nth-child(2) {
  animation-delay: 0.2s;
}
li:nth-child(3) {
  animation-delay: 0.3s;
}
li:nth-child(4) {
  animation-delay: 0.4s;
}
li:nth-child(5) {
  animation-delay: 0.5s;
}
li:nth-child(6) {
  animation-delay: 0.6s;
}
li:nth-child(7) {
  animation-delay: 0.7s;
}
li:nth-child(8) {
  animation-delay: 0.8s;
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
