/* ═══════════════════════════════════════════════════════════════
   UNIQDATA Solutions Limited — Shared Stylesheet
   Brand: Blue #0057B8 | Teal #00B8A9 | Lime #A7E000 | Gray #2C2C2C
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Variables ─────────────────────────────────────────────── */

:root {
  --blue: #0057b8;
  --blue-d: #003d82;
  --blue-l: #eef4ff;
  --teal: #00b8a9;
  --teal-d: #008a7e;
  --teal-l: #e6faf9;
  --lime: #a7e000;
  --lime-d: #7aaa00;
  --gray: #2c2c2c;
  --gray-l: #6b6b6b;
  --soft: #f5f7fa;
  --white: #ffffff;
  --border: #e0e8f0;
  --shadow: 0 4px 16px rgba(0, 87, 184, 0.09);
  --radius: 10px;
  --nav-h: 70px;
}

/* ── Reset ─────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  background: radial-gradient(
      circle at top left,
      rgba(37, 99, 235, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 188, 212, 0.08),
      transparent 35%
    ),
    #f8fafc;
  /* background: var(--soft); */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--blue);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.accent-bar {
  height: 7px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--teal),
    var(--lime),
    var(--blue)
  );
  background-size: 300% 100%;
  animation: accentFlow 5s ease infinite;
  border-radius: 10px;
}

@keyframes accentFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* ================= HEADER BASE ================= */
/* ================= GLASS HEADER ================= */

.site-header {
  position: sticky;
  top: 0px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  /* max-width: 1180px; */
  margin: 0 auto;
  border-radius: 22px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 12px 22px;
  height: 72px;
}

/* ================= BRAND ================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 45px;
  height: 45px;

  border-radius: 12px;
  padding: 4px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.2)
  );

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  object-fit: contain;
}

.brand-text {
  display: grid;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;

  background: linear-gradient(90deg, var(--blue), #00bcd4);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 9px;
  color: rgba(40, 40, 40, 0.65);

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ================= NAV ================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;

  text-decoration: none;

  color: #344054;

  font-size: 13px;
  font-weight: 500;

  padding: 8px 14px;

  border-radius: 12px;

  transition: 0.3s ease;
}

/* hover glass */

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.65);

  color: var(--blue);

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

/* active */

.main-nav a.active {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15),
    rgba(0, 188, 212, 0.18)
  );

  color: var(--blue);

  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

/* ================= CTA ================= */

.btn-nav-cta {
  padding: 10px 18px;

  border-radius: 14px;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  color: white !important;

  background: linear-gradient(135deg, var(--blue), #00bcd4);

  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);

  transition: 0.3s ease;
}

.btn-nav-cta:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
}

/* ================= MOBILE BUTTON ================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: none;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(10px);

  color: var(--blue);

  font-size: 24px;

  cursor: pointer;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .main-nav a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .btn-nav-cta {
    padding: 9px 14px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .site-header {
    top: 1px;

    margin: 0 auto;
    width: 100%;

    border-radius: 0px;
  }

  .header-inner {
    height: 65px;

    padding: 10px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 75px;

    left: 0;

    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    padding: 15px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.5);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    width: 100%;
  }

  .btn-nav-cta {
    display: none;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .brand-tagline {
    display: none;
  }

  .brand-name {
    font-size: 15px;
  }
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-d);
  color: var(--white);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--teal-d);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline-w {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ================= HERO BASE ================= */

.home-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 70%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* background glow */

.home-hero::before,
.home-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.home-hero::before {
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(0, 184, 169, 0.2);
}

.home-hero::after {
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(167, 224, 0, 0.12);
}

/* ================= LAYOUT ================= */

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= TEXT ================= */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(0, 184, 169, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
}

/* ================= BUTTONS ================= */

.hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* ================= TRUST ================= */

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-trust-item {
  font-size: 11px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

/* ================= VISUAL ================= */

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.hero-card-chip {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 8px;
}

.hero-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 14px 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

/* ================= METRICS ================= */

.hero-metric-row {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}

.hero-metric .n {
  font-size: 18px;
  font-weight: 700;
}

.hero-metric .l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* ================= FLOAT CARD ================= */

.hero-card-float {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-float svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto;
  }

  .hero-btns,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    padding: 60px 0;
  }

  .hero-metric-row {
    flex-direction: column;
    gap: 10px;
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════════ */

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--gray);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .label {
  display: inline-block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15px;
  color: var(--gray-l);
  max-width: 540px;
  margin: 0 auto;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════════════════════════════════
   GRIDS & CARDS
══════════════════════════════════════════════════════════════ */

/* ================= RESPONSIVE GRIDS ================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Tablet */

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 26px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }
}

/* ==============================
   SERVICES CARDS
================================ */

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 87, 184, 0.15);
}

/* ICON HEADER */

.service-card-header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2a55, var(--blue), #00888a);
}

/* Background glow */

.service-card-header::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -70px;
  right: -50px;
}

.service-card-header i {
  position: relative;
  z-index: 2;
  font-size: 52px;
  color: white;
  opacity: 0.95;
}

/* COLORS FROM DATABASE */

.service-card-header.teal {
  background: linear-gradient(135deg, #005f73, #00888a);
}

.service-card-header.lime {
  background: linear-gradient(135deg, #355c00, #84cc16);
}

/* CONTENT */

.service-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card-body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
}

.service-card-body p {
  margin: 0;
  color: var(--gray-l);
  font-size: 13px;
  line-height: 1.7;
  flex: 1;
}

/* FOOTER */

.service-card-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  background: var(--soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MOBILE */

@media (max-width: 600px) {
  .service-card-header {
    height: 120px;
  }

  .service-card-header i {
    font-size: 42px;
  }

  .service-card-body {
    padding: 18px;
  }

  .service-card-body h3 {
    font-size: 15px;
  }

  .service-card-body p {
    font-size: 12.5px;
  }
}

/* ================= CARD RESPONSIVENESS ================= */

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
}

/* Better spacing on small screens */

@media (max-width: 600px) {
  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 14px;
  }

  .card p {
    font-size: 12.5px;
  }
}

.section-header h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.section-header p {
  font-size: clamp(13px, 1.2vw, 15px);
}

/* Product card */

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 87, 184, 0.14);
}

.product-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a2a55, var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-img .ph-icon {
  width: 56px;
  height: 56px;
  fill: rgba(255, 255, 255, 0.25);
}

.product-card-img .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--lime);
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
}

.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.product-card-body p {
  font-size: 12px;
  color: var(--gray-l);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.product-card-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--soft);
}

.product-card-footer .price {
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
}

/* Stat strip */

.stat-strip {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  padding: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--lime);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Feature list */

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.feature-list li:last-child {
  border: none;
}

.check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

/* Data table */

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data-table thead tr {
  background: var(--blue);
  color: var(--white);
}

.data-table thead th {
  padding: 13px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}

.data-table tbody tr:nth-child(even) {
  background: var(--blue-l);
}

.data-table tbody td {
  padding: 11px 18px;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}

.data-table tbody td:first-child {
  font-weight: 600;
  color: var(--blue);
}

/* Highlight box */

.highlight-box {
  border-left: 5px solid var(--teal);
  background: var(--teal-l);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Divider */

hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  margin: 0;
}

/* Sector badge */

.sector-badge {
  display: inline-block;
  background: var(--blue-l);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #c0d8f5;
}

/* Timeline */

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--blue));
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.timeline-item p {
  font-size: 13px;
  color: var(--gray-l);
  margin: 4px 0 0;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
/* ======================================================
   PREMIUM GLASS FOOTER
====================================================== */


.site-footer{

    position:relative;

    background:

    radial-gradient(
        circle at top left,
        rgba(37,99,235,.35),
        transparent 35%
    ),

    linear-gradient(
        135deg,
        #020617,
        #022049
    );


    color:white;

    padding-top:70px;

    overflow:hidden;

}



.site-footer::before{


    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;


    background:

    linear-gradient(
        90deg,
        #2563eb,
        #06b6d4,
        #84cc16,
        #2563eb
    );


    background-size:300%;

    animation:
    footerGlow 8s linear infinite;


}



@keyframes footerGlow{

0%{
background-position:0%;
}


100%{
background-position:300%;
}

}






.footer-grid{


    display:grid;


    grid-template-columns:

    1.5fr 1fr 1fr 1.2fr;


    gap:35px;


}






/* ================= BRAND ================= */



.footer-brand{


    display:flex;


    align-items:center;


    gap:14px;


    margin-bottom:20px;


}



.footer-brand img{


    width:55px;


    height:55px;


    object-fit:contain;


    background:white;


    border-radius:14px;


    padding:5px;


}



.footer-brand-name{


    font-size:18px;


    font-weight:800;


    color:white;


}






.footer-col p{


    color:

    rgba(255,255,255,.65);


    font-size:14px;


    line-height:1.8;


}






/* ================= TITLES ================= */



.footer-col h4{


    color:white;


    font-size:16px;


    font-weight:700;


    margin-bottom:22px;


    position:relative;


}



.footer-col h4::after{


    content:"";


    display:block;


    width:35px;


    height:3px;


    margin-top:8px;


    border-radius:10px;


    background:

    linear-gradient(
        90deg,
        #06b6d4,
        #84cc16
    );


}







/* ================= LINKS ================= */


.footer-links{


    list-style:none;


    padding:0;

    margin:0;


}



.footer-links li{


    margin-bottom:12px;


}



.footer-links a{


    text-decoration:none;


    color:

    rgba(255,255,255,.65);


    font-size:14px;


    transition:.3s;


}



.footer-links a::before{


    content:"→";


    opacity:0;


    margin-right:-10px;


    transition:.3s;


    color:#06b6d4;


}



.footer-links a:hover{


    color:white;


    padding-left:8px;


}



.footer-links a:hover::before{


    opacity:1;


    margin-right:6px;


}









/* ================= SOCIAL ================= */


.social-links{


    display:flex;


    gap:12px;


    margin-top:25px;


}



.social-link{


    width:42px;


    height:42px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:14px;


    background:

    rgba(255,255,255,.08);


    border:

    1px solid rgba(255,255,255,.12);


    backdrop-filter:

    blur(10px);


    transition:.35s;


}



.social-link svg{


    width:18px;


    height:18px;


    fill:white;


}



.social-link:hover{


    transform:

    translateY(-5px);


    background:

    linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );


}









/* ================= CONTACT ================= */


.footer-ci{


    display:flex;


    gap:12px;


    align-items:flex-start;


    margin-bottom:18px;


    padding:12px;


    border-radius:14px;


    background:

    rgba(255,255,255,.05);


    border:

    1px solid rgba(255,255,255,.08);


}



.footer-ci svg{


    width:20px;


    height:20px;


    fill:#06b6d4;


    flex-shrink:0;


    margin-top:2px;


}



.footer-ci span,
.footer-ci a{


    color:

    rgba(255,255,255,.75);


    font-size:13px;


    line-height:1.6;


}







/* ================= BOTTOM ================= */


.footer-bottom{


    display:flex;


    justify-content:space-between;


    align-items:center;


    gap:20px;


    padding:25px 0;


    color:

    rgba(255,255,255,.55);


    font-size:13px;


}









/* ================= RESPONSIVE ================= */


@media(max-width:992px){


.footer-grid{


grid-template-columns:

repeat(2,1fr);


}


}




@media(max-width:650px){


.site-footer{


padding-top:45px;


}



.footer-grid{


grid-template-columns:1fr;


}



.footer-bottom{


flex-direction:column;


text-align:center;


}



.footer-brand-name{


font-size:16px;


}


}

/* ══════════════════════════════════════════════════════════════
   UTILS
══════════════════════════════════════════════════════════════ */

.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.img-ph {
  background: linear-gradient(135deg, #0a2a55, var(--blue));
}

/* ===========================
   COMPANY SNAPSHOT
=========================== */

.company-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.company-card-header {
  padding: 28px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
}

.company-card-header h3 {
  margin: 0;
  font-size: 22px;
}

.company-card-header span {
  display: inline-block;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.company-info {
  padding: 10px 25px;
}

.company-row {
  display: grid;
  grid-template-columns: 28px 110px 1fr;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #edf2f7;
}

.company-row:last-child {
  border: none;
}

.company-row i {
  color: var(--blue);
  font-size: 18px;
}

.company-row span {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.company-row strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.company-footer {
  padding: 25px;
  background: #f8fafc;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ===========================================
   WHY CHOOSE US
=========================================== */

/* ===========================================
   MAIN TWO COLUMN LAYOUT
=========================================== */

.grid-2c {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: 45px;
  align-items: start;
}

.why-section h2 {
  font-size: 34px;
  color: var(--blue);
  margin: 12px 0 20px;
  line-height: 1.25;
  font-weight: 700;
}

.why-description {
  color: var(--gray-l);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 620px;
}

/* ===========================================
 FEATURES
=========================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 35px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: 0.25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 87, 184, 0.12);
}

.feature-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 22px;
}

.feature-card h4 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--gray-l);
  line-height: 1.7;
  font-size: 13px;
}

/* ===========================================
 COMPANY CARD
=========================================== */

.company-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.company-header {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-header small {
  display: block;
  letter-spacing: 2px;
  font-size: 11px;
  opacity: 0.85;
  margin-bottom: 8px;
}

.company-header h3 {
  margin: 0;
  font-size: 26px;
  color: white;
}

.company-header i {
  font-size: 45px;
  opacity: 0.25;
}

.company-body {
  padding: 15px 30px;
}

.company-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #edf2f7;
}

.company-item:last-child {
  border-bottom: none;
}

.company-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 87, 184, 0.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.company-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-item strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

.company-footer {
  background: #f8fafc;
  padding: 25px;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* ===========================================
 RESPONSIVE
=========================================== */

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-section h2 {
    font-size: 28px;
  }

  .company-header {
    padding: 24px;
  }

  .company-header h3 {
    font-size: 22px;
  }

  .company-body {
    padding: 10px 20px;
  }

  .company-item {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    padding: 18px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .company-item {
    align-items: flex-start;
  }
}

/* ===========================================
   ABOUT PAGE RESPONSIVE FIX
=========================================== */

/* Prevent all content overflow */

.page-hero,
.section {
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===========================================
   MAIN STORY + FOUNDER
=========================================== */

.grid-2c {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}

.grid-2c > div {
  min-width: 0;
}

/* ===========================================
   TEXT SAFETY
=========================================== */

h1,
h2,
h3,
h4,
p,
strong {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

p {
  line-height: 1.8;
}

/* ===========================================
   FOUNDER CARD
=========================================== */

.founder-card {
  background: var(--blue);
  border-radius: 16px;
  padding: 32px;
  color: white;
  margin-bottom: 20px;
}

.founder-card p {
  font-size: 14px;
  line-height: 1.8;
}

/* ===========================================
   SMALL INFO CARDS
=========================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-width: 0;
}

/* ===========================================
   FOUNDATION CARDS
=========================================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.card p {
  overflow-wrap: anywhere;
}

/* ===========================================
   TIMELINE
=========================================== */

.timeline {
  width: 100%;
}

.timeline-item {
  max-width: 100%;
}

.timeline-item h4 {
  overflow-wrap: anywhere;
}

/* ===========================================
   CTA BUTTONS
=========================================== */

.section .btn {
  max-width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Story + Founder */
  .grid-2c {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Year + HQ */
  .grid-2 {
    grid-template-columns: 1fr;
  }

  /* Foundation */
  .grid-3 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px !important;
  }

  .page-hero p {
    font-size: 15px;
  }

  /* CTA buttons stack */
  .section .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 10px 0 !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .card {
    padding: 18px;
  }
}

/* =========================================
   BLUE GLASSMORPHISM SOLUTION FEATURES
========================================= */

.glass-card {
  background: linear-gradient(
    145deg,
    rgba(223, 231, 244, 0.285),
    rgba(222, 230, 245, 0.25)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0, 34, 90, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* BLUE LIGHT EFFECT */

.glass-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(172, 225, 248, 0.35),
    transparent 70%
  );
  top: -70px;
  right: -70px;
  border-radius: 50%;
  filter: blur(10px);
}

.glass-card::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(143, 186, 250, 0.35),
    transparent 70%
  );
  bottom: -60px;
  left: -60px;
  border-radius: 50%;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 25px 60px rgba(0, 102, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* CARD CONTENT */

.glass-card h3 {
  color: #ffffff;
  font-size: 23px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.glass-card p {
  color: rgba(219, 234, 254, 0.85);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* =========================================
   ICON STYLE
========================================= */

.glass-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.45),
    rgba(56, 189, 248, 0.2)
  );
  border-radius: 18px;
  border: 1px solid rgba(147, 197, 253, 0.4);
  margin-bottom: 22px;
  color: #38bdf8;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);
}

/* =========================================
   FEATURE GRID
========================================= */

.glass-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 900px) {
  .glass-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .glass-features {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   BLUE DARK BACKGROUND
========================================= */

.solution-glass-section {
  background: radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(0, 102, 255, 0.25),
      transparent 40%
    ),
    linear-gradient(135deg, #020617, #082f67);
  padding: 80px 0;
}

/* =========================================
   BADGE
========================================= */

.glass-badge {
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(0, 102, 255, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

/* =========================================
   FEATURE CHECK LIST
========================================= */

.glass-list {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.glass-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(72, 148, 247, 0.9);
  margin-bottom: 16px;
}

.glass-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  background: linear-gradient(135deg, #0066ff, #38bdf8);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

/* =========================================
   HERO
========================================= */

.hero-glass {
  text-align: center;
  padding: 55px;
}

.solution-feature-card {
  min-height: 350px;
}

/* SMALL GLASS ITEMS */

.mini-glass {
  padding: 15px !important;
  text-align: center;
  font-weight: 700;
  color: white;
  background: rgba(30, 64, 175, 0.767) !important;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

/* ==========================
 HOME HERO GLASS STYLE
========================== */

.home-hero {
  min-height: 750px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 55px;
  line-height: 1.1;
  color: white;
}

.hero-content p {
  color: rgba(219, 234, 254, 0.85);
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
}

.hero-badge {
  margin-bottom: 25px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-card-main {
  padding: 35px;
}

.hero-card-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.hero-card-sub {
  color: rgba(219, 234, 254, 0.8);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 25px 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.hero-metric {
  padding: 20px;
  text-align: center;
}

.hero-metric .n {
  font-size: 32px;
  font-weight: 800;
  color: #38bdf8;
}

.hero-metric .l {
  color: white;
  font-size: 14px;
}

.hero-card-float {
  position: absolute;
  bottom: -40px;
  left: -50px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
}

.hero-card-float strong {
  display: block;
  color: white;
}

.hero-card-float span {
  color: rgba(219, 234, 254, 0.75);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-card-float {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
  }
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta {
  text-align: center;
  padding: 70px 35px;
}

.final-cta h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 18px;
}

.final-cta p {
  max-width: 650px;
  margin: auto;
  color: rgba(219, 234, 254, 0.85);
  margin-bottom: 35px;
}

/* FORCE WHITE HEADINGS ON DARK GLASS */

.solution-glass-section h1,
.solution-glass-section h2,
.solution-glass-section h3 {
  color: white;
}

/* HERO GLASS ADDITIONS */

.glass-mini {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.glass-tag {
  background: rgba(0, 102, 255, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: white;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  transition: 0.3s;
}

.glass-tag:hover {
  background: rgba(56, 189, 248, 0.25);
  transform: translateY(-3px);
}

.hero-solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.hero-solution-features div {
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
}

.hero-trust-item {
  transition: 0.3s;
}

.hero-trust-item:hover {
  transform: translateY(-3px);
}

/* =====================================
   SERVICES GLASS FEATURES
===================================== */

.glass-feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}

.glass-feature-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.35), transparent);
}

.glass-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.2);
}

.glass-service-icon {
  width: 75px;
  height: 75px;
  margin: 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.25),
    rgba(56, 189, 248, 0.15)
  );
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.glass-service-icon i {
  font-size: 32px;
  color: #38bdf8;
}

.service-card-body {
  padding: 0 25px 30px;
}

.service-card-body h3 {
  color: #0284c7;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card-body p {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
}

/* subtle solution badge */

.glass-feature-card::after {
  content: 'UNIQDATA SOLUTIONS';
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  color: #0284c7;
  opacity: 0.6;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.solution-tags span {
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.35);
  color: #0066ff;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.glass-card ul {
  margin-bottom: 0;
}

.glass-card:hover .glass-icon {
  transform: scale(1.08);
}

.glass-icon {
  transition: 0.3s ease;
}

.timeline-item {
  background: rgba(0, 102, 255, 0.06);
  border-left: 3px solid #0066ff;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.timeline-item h4 {
  color: #0066ff;
  margin-bottom: 8px;
}

.timeline-item p {
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   UNIQDATA COMPANY PROFILE DESIGN
   New isolated CSS
============================================================ */

/* ================= GLOBAL ================= */

.company-page {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #1e293b;
}

.company-container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HERO ================= */

.company-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 45px;
  border-radius: 28px;
  background: linear-gradient(135deg, #062b66, #0b63ce);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.company-hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  right: -150px;
  top: -150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.company-logo-box {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
  z-index: 1;
}

.company-logo-box img {
  max-width: 100%;
}

.company-hero-content {
  position: relative;
  z-index: 2;
}

.company-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  margin-bottom: 15px;
}

.company-hero h1 {
  font-size: 42px;
  margin: 0 0 15px;
  font-weight: 800;
}

.company-hero p {
  max-width: 750px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.company-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.company-badges span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 13px;
}

/* ================= SNAPSHOT CARDS ================= */

.company-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 45px 0;
}

.company-card {
  background: white;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e5edf8;
  transition: 0.35s;
}

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.company-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf3ff;
  color: #0866d6;
  border-radius: 16px;
  font-size: 22px;
  margin-bottom: 18px;
}

.company-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.company-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ================= SECTION ================= */

.company-section {
  margin-top: 20px;
  padding: 0px 50px 0px 50px;
}

.company-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.company-section-title span {
  width: 45px;
  height: 45px;
  background: #0866d6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.company-section-title h2 {
  margin: 0;
  font-size: 28px;
  color: #062b66;
}

/* ================= COMPANY GRID ================= */

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.company-item {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(240, 246, 255, 0.85)
  );
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(8, 102, 214, 0.15);
  box-shadow: 0 10px 30px rgba(2, 32, 73, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.company-item::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0866d6, #5e4df7);
  opacity: 0.12;
  border-radius: 50%;
  right: -30px;
  top: -30px;
}

.company-item:hover {
  transform: translateY(-6px);
  border-color: #0866d6;
  box-shadow: 0 20px 45px rgba(8, 102, 214, 0.18);
}

.company-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
}

.company-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #022049;
  line-height: 1.5;
}

/* ================= MANAGEMENT ================= */

.company-management {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

.company-profile {
  background: white;
  padding: 30px;
  border-radius: 22px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.company-avatar {
  width: 80px;
  height: 80px;
  background: #0866d6;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.company-profile h3 {
  margin: 0;
}

.company-profile span {
  color: #0866d6;
  font-weight: 600;
}

.company-profile p {
  color: #64748b;
  line-height: 1.6;
}

.company-side-card {
  background: #062b66;
  color: white;
  padding: 30px;
  border-radius: 22px;
}

.company-side-card small {
  opacity: 0.7;
}

/* ================= BUSINESS TEXT ================= */

.company-highlight {
  background: linear-gradient(135deg, #0866d6, #0b8cff);
  padding: 35px;
  border-radius: 25px;
  color: white;
}

.company-highlight p {
  font-size: 18px;
  line-height: 1.8;
}

.company-text {
  margin-top: 25px;
}

.company-text p {
  color: #475569;
  line-height: 1.8;
}

/* ================= SERVICES ================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid #e5edf8;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-header i {
  font-size: 28px;
  color: #0866d6;
}

.service-status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.service-status.active {
  background: #dcfce7;
  color: #166534;
}

.service-status.upcoming {
  background: #fef3c7;
  color: #92400e;
}

.service-card ul {
  padding-left: 18px;
  color: #64748b;
}

/* ================= PARTNERS ================= */

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #e5edf8;
}

.partner-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tier1 {
  background: #dbeafe;
  color: #1d4ed8;
}

.tier2 {
  background: #ede9fe;
  color: #6d28d9;
}

.tier3 {
  background: #fee2e2;
  color: #b91c1c;
}

.local {
  background: #dcfce7;
  color: #166534;
}

/* ================= COMPLIANCE ================= */

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.compliance-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

.compliance-card i {
  font-size: 30px;
  color: #0866d6;
  margin-bottom: 15px;
}

/* ================= CTA ================= */

.company-action {
  margin-top: 70px;
  padding: 40px;
  border-radius: 25px;
  background: #eaf3ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.company-action h2 {
  margin: 0 0 10px;
  color: #062b66;
}

.company-action p {
  color: #64748b;
}

.company-action-buttons {
  display: flex;
  gap: 15px;
}

.company-action .btn {
  padding: 13px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.company-action .btn-primary {
  background: #0866d6;
  color: white;
}

.company-action .btn-outline {
  border: 2px solid #0866d6;
  color: #0866d6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .company-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-grid,
  .service-grid,
  .partner-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-management {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .company-page {
    padding: 40px 15px;
  }

  .company-hero {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .company-hero h1 {
    font-size: 30px;
  }

  .company-badges {
    justify-content: center;
  }

  .company-cards,
  .company-grid,
  .service-grid,
  .partner-list,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .company-profile {
    flex-direction: column;
    text-align: center;
  }

  .company-action {
    flex-direction: column;
    text-align: center;
  }

  .company-action-buttons {
    flex-direction: column;
    width: 100%;
  }
}
