@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.19.0/dist/tabler-icons.min.css');

/* ── Client Carousel ── */
.clients-section {
  background: #f8f9fb;
  padding: 3rem 2rem;
  overflow: hidden;
}
.clients-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.section-heading h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e293b;
}
.section-heading h2 em {
  font-style: normal;
  color: #a4c639;
}
.clients-track-wrap {
  overflow: hidden;
  position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fb, transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fb, transparent);
}
.clients-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
  animation: scroll-clients 28s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.client-item {
  flex-shrink: 0;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(.55);
  transition: filter .25s;
}
.client-item:hover { filter: grayscale(0) opacity(1); }
.client-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
@keyframes scroll-clients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Floating Circles ── */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  left: 16px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.fab-circle {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fab-circle:hover { transform: scale(1.12); box-shadow: 0 6px 22px rgba(0,0,0,.38); }
.fab-circle i { font-size: 26px; pointer-events: none; }
.fab-skype { background: #0078d4; }
.fab-call  { background: #22c55e; }
.fab-wa-in { background: #25d366; }
.fab-wa-ae { background: #128c7e; }

.fab-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: #1e293b;
  color: #f1f5f9;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.fab-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #1e293b;
}
.fab-circle:hover .fab-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ── Footer ── */
.site-footer { background: #0d1120; }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-img { height: 40px; width: auto; display: block; }

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}
.footer-brand p {
  color: rgba(255,255,255,.42);
  font-size: .84rem;
  line-height: 1.75;
}

.footer-social { display: flex; gap: 7px; flex-wrap: wrap; margin-top: .1rem; }
.s-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: .5px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
}
.s-icon:hover { background: rgba(255,255,255,.13); color: #fff; transform: translateY(-2px); }
.s-icon i { font-size: 15px; }

.footer-col h5 {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.88);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; padding: 0; margin: 0; }
.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,.42);
  font-size: .84rem;
  font-weight: 500;
  transition: color .15s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: #a4c639; }
.footer-col ul li a i { font-size: 14px; opacity: .65; flex-shrink: 0; }

.footer-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  border-top: .5px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bar span { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-bar a { text-decoration: none; }
.footer-bar a:hover { color: rgba(255,255,255,.6); }

@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar { flex-direction: column; text-align: center; }
}

/* ── Contact Modal ── */
#contactModal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.6);
}
#contactModal .modal-box {
  background: #fff;
  margin: 8% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,.3);
  overflow: hidden;
}
#contactModal .modal-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 37%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}
#contactModal .modal-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  z-index: 1;
}
#contactModal .modal-close {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  right: 15px; top: 10px;
  cursor: pointer;
  z-index: 9999;
  line-height: 1;
}
#contactModal .modal-close:hover { color: red; }

@media (max-width: 768px) {
  #contactModal .modal-box { width: 95%; margin: 34% auto; }
  #contactModal .modal-iframe-wrap { padding-bottom: 120%; }
}