@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;300;400;500;600;700;800;900&display=swap');

:root {
  --tripoli-blue: #00016d;      /* main color from logo */
  --tripoli-blue-light: #484c95;
  --bg-light: #f5f7fb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Alexandria', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, var(--bg-light) 55%, #e3e6f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 22px 26px;
  box-shadow: 0 18px 40px rgba(0, 1, 109, 0.12);
  text-align: center;
}

.logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

.company-en {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--tripoli-blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.company-ar {
  font-size: 0.95rem;
  color: var(--tripoli-blue-light);
  margin-bottom: 10px;
}

.tagline {
  font-size: 0.86rem;
  color: #6b6f85;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* ===== Social icons ===== */

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 20px 0 16px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--tripoli-blue);   /* <- icon color comes from here */
  text-decoration: none;
  transition: all 0.3s ease;
}


/* ================= Services ================= */

.services {
  margin: 20px 0 25px;
  text-align: center;
}

.services-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tripoli-blue);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-item {
  background: var(--bg-light);
  color: var(--tripoli-blue);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
  width: 70%;
  transition: 0.3s ease;
  border: 1px solid rgba(0, 1, 109, 0.15);
}

.service-item:hover {
  background: var(--tripoli-blue);
  color: #fff;
  border-color: var(--tripoli-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 1, 109, 0.2);
}


/* Make SVGs use currentColor and fit nicely */
.social-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.social-icon svg path,
.social-icon svg g path {
  fill: currentColor !important;
}

.social-icon:hover {
  background: var(--tripoli-blue);
  color: #ffffff;               /* icons turn white on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 1, 109, 0.2);
}

.footer-note {
  font-size: 0.75rem;
  color: #9a9eb3;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .card {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }
  .company-en {
    font-size: 1rem;
  }
  .company-ar {
    font-size: 0.9rem;
  }
}
