*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #041018;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(22, 162, 231, 0.11) 0%, transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(30, 200, 255, 0.08) 0%, transparent 38%);
  pointer-events: none;
  z-index: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}



::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.55); }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #16A2E7 100%);
  border: none;
  border-radius: 50px;
  color: #041018;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  font-weight: lighter;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30, 200, 255, 0.45);
}
.btn-primary i { font-size: 0.85rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50px;
  color: #ffffff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  font-weight: lighter;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}
.btn-ghost i { font-size: 0.75rem; }

.btn-accent {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: #ffffff;
  border-radius: 50px;
  color: #0b1430;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.8rem;
  background: transparent;
  border: 1.5px solid #16A2E7;
  border-radius: 2rem;
  color: #1ec8ff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(22, 162, 231, 0.14);
  border-color: #1ec8ff;
  color: #4fd6ff;
  transform: translateY(-2px);
}
.btn-outline i {
  font-size: 0.8rem;
  transition: transform 0.28s ease;
}
.btn-outline:hover i { transform: translateX(5px); }

.btn-brands {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  background: #16A2E7;
  border: none;
  border-radius: 0.5rem;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 162, 231, 0.30);
}
.btn-brands:hover {
  background: #1ec8ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 162, 231, 0.40);
  color: #ffffff;
}
.btn-brands i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.btn-brands:hover i { transform: translateX(5px); }

.contact-btn {
  grid-column: span 2;
  margin-top: 12px;
  padding: 16px 28px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
}
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30, 200, 255, 0.35);
}

.call-btn,
.whatsapp-btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: 0.3s;
}

.call-btn {
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
}

.whatsapp-btn {
  border: 1px solid rgba(30, 200, 255, 0.25);
  color: #1ec8ff;
}

.whatsapp-btn:hover {
  background: rgba(30, 200, 255, 0.18);
}

.map-btn {
  display: inline-flex;
  margin-top: 14px;
  gap: 8px;
  color: #1ec8ff;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: 0.3s;
}
.map-btn:hover { gap: 14px; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 44px 60px;
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%,  rgba(22, 162, 231, 0.13) 0%, transparent 65%),
    radial-gradient(circle at 8%  60%, rgba(30, 200, 255, 0.08) 0%, transparent 44%),
    radial-gradient(circle at 92% 40%, rgba(22, 162, 231, 0.07) 0%, transparent 42%),
    #041018;
  overflow: hidden;
  text-align: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 35%, black 10%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: rgba(30, 200, 255, 0.09);
  top: -170px; left: -170px;
  animation: orbFloat1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: rgba(22, 162, 231, 0.07);
  bottom: -110px; right: -90px;
  animation: orbFloat2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: rgba(30, 200, 255, 0.05);
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 7s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(26px, 16px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, -26px); }
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.85; transform: translate(-50%, -50%) scale(1.18); }
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.38;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 44px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1ec8ff;
  letter-spacing: 0.6px;
  margin-bottom: 1.1rem;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.07s both;
}

.hero-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1rem;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 55%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
  margin-bottom: 1.9rem;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.30s both;
}



.cards-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 500px;
  gap: 18px;
  width: 100%;
  max-width: 1160px;
  align-items: stretch;
  animation: cardsUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

@keyframes cardsUp {
  from { opacity: 0; transform: translateY(52px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hcard {
  border-radius: 24px;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  height: 500px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.hcard:hover {
  border-radius: 24px !important ;
  border-color: rgba(30, 200, 255, 0.25);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(30, 200, 255, 0.14);
}

.hcard-img {
  overflow: hidden !important;
  border-radius: 24px !important;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hcard-img img {
  border-radius: 24px !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}
.hcard:hover .hcard-img img { transform: scale(1.06); }

.hcard-img-overlay {
  position: absolute;
  border-radius: 24px !important;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(4, 12, 22, 0.98)  0%,
    rgba(4, 12, 22, 0.82)  28%,
    rgba(4, 12, 22, 0.30)  58%,
    rgba(4, 12, 22, 0.00) 100%
  );
}

.hcard-body {
  border-radius: 24px !important;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 24px 24px 26px;
}

.hcard-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  border-radius: 24px !important;
}

.hcard-text { flex: 1; text-align: left; }

.hcard-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.hcard-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.hcard-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.hcard:hover .hcard-icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
}
.hcard-icon i { color: #ffffff; font-size: 1rem; }

.hcard-icon--cyan {
  background: rgba(30, 200, 255, 0.18);
  border-color: rgba(30, 200, 255, 0.40);
}
.hcard-icon--cyan i { color: #1ec8ff; }
.hcard:hover .hcard-icon--cyan {
  background: rgba(30, 200, 255, 0.30);
  box-shadow: 0 0 20px rgba(30, 200, 255, 0.30);
}

.hcard--accent {
  background: linear-gradient(148deg, #16A2E7 0%, #0a6da0 65%, #085282 100%);
  border-color: rgba(30, 200, 255, 0.35);
  display: flex;
  flex-direction: column;
}
.hcard--accent:hover {
  border-color: rgba(30, 200, 255, 0.65);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(30, 200, 255, 0.30),
    0 0 70px rgba(30, 200, 255, 0.14);
}

.hcard-wave {
  position: absolute;
  bottom: 0; right: 0;
  width: 90%; height: 68%;
  pointer-events: none;
  opacity: 0.95;
  z-index: 0;
}
.hcard-wave svg { width: 100%; height: 100%; }

.hcard-accent-body {
  position: relative;
  z-index: 1;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.hcard-accent-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hcard-accent-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.70;
  flex: 1;
}

@media (max-width: 1200px) {
  .hero { padding: 56px 36px 56px; }
  .cards-row { max-width: 1000px; gap: 14px; }
}
@media (max-width: 960px) {
  .hero { padding: 52px 24px 52px; }
  .hero-content { padding-bottom: 36px; }
  .cards-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 320px;
  }
  .hcard        { height: auto; }
  .hcard--photo { height: 420px; }
  .hcard--accent { grid-column: span 2; height: 320px; }
  .hcard-accent-title { font-size: 1.45rem; }
  .hcard-accent-body  { padding: 26px 24px 24px; gap: 12px; }
}
@media (max-width: 640px) {
  .hero { padding: 48px 16px 48px; }
  .hero-title { font-size: 2.2rem; }
  .hero-sub   { font-size: 0.92rem; }
  .hero-content { padding-bottom: 28px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { justify-content: center; width: 100%; max-width: 300px; }
  .cards-row { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hcard--photo  { height: 380px; }
  .hcard--accent { grid-column: span 1; height: 380px; }
  .hcard-accent-title { font-size: 1.3rem; }
}
@media (max-width: 380px) {
  .hero-title   { font-size: 1.9rem; }
  .hcard--photo { height: 320px; }
}



.stats {
  position: relative;
  padding: 90px 0;
  background: #060d1f;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.032) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

.stats::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 200, 255, 0.22), transparent);
  z-index: 1;
  pointer-events: none;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(22, 162, 231, 0.03); }

.stat-item::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(30, 200, 255, 0.50));
  pointer-events: none;
}

.stat-num {
  display: block;
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #1ec8ff;
}

.stat-num .stat-suffix {
  font-size: 2.2rem;
  vertical-align: baseline;
}

.stat-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.08); }
}
@media (max-width: 768px) {
  .stats { padding: 60px 0; }
  .stat-num { font-size: 2.8rem; }
  .stat-item { padding: 30px 16px; }
}
@media (max-width: 480px) {
  .stats { padding: 48px 0; }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 0.72rem; letter-spacing: 0.3px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

.about {
  position: relative;
  padding: 130px 0;
  background: #000000;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 95% 20%, rgba(22, 162, 231, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 5%  80%, rgba(30, 200, 255, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.about .s-mesh::before { z-index: 0; }
.about .container { position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1ec8ff;
  margin-bottom: 1.4rem;
}
.about-label::before {
  content: "";
  width: 24px; height: 1.5px;
  background: #1ec8ff;
  box-shadow: 0 0 8px #1ec8ff;
}

.about-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.4rem;
}
.about-title span {
  color: #1ec8ff;
  font-style: italic;
}

.about-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 460px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid rgba(30, 200, 255, 0.35);
  border-radius: 10px;
  transition: all 0.25s ease;
}
.about-list li:hover {
  border-left-color: #1ec8ff;
  border-color: rgba(30, 200, 255, 0.22);
  background: rgba(22, 162, 231, 0.06);
  color: #ffffff;
}
.about-list li i { color: #1ec8ff; font-size: 0.78rem; flex-shrink: 0; }

.about-img-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.about-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 162, 231, 0.08)  0%,
    transparent                50%,
    rgba(30, 200, 255, 0.05)  100%
  );
  pointer-events: none;
}

.about-img-stat {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(4, 16, 24, 0.88);
  border: 1px solid rgba(30, 200, 255, 0.22);
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.about-img-stat-icon {
  width: 42px; height: 42px;
  background: rgba(22, 162, 231, 0.18);
  border: 1px solid rgba(30, 200, 255, 0.22);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-img-stat-icon i { color: #1ec8ff; font-size: 0.95rem; }

.about-img-stat-val {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
}
.about-img-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-body  { max-width: 100%; }
  .about-img-wrap img { height: 380px; }
}
@media (max-width: 768px) {
  .about { padding: 80px 0; }
  .about-title { color: #1ec8ff !important; font-size: 2.4rem; }
  .about-img-wrap img { height: 300px; }
  .about-list li { font-size: 0.86rem; padding: 9px 14px; }
}
@media (max-width: 480px) {
  .about { padding: 60px 0; }
  .about-title { font-size: 2rem; }
  .about-label { font-size: 0.65rem; }
  .about-body  { font-size: 0.92rem; }
  .about-img-stat { bottom: 16px; left: 16px; padding: 12px 14px; gap: 10px; }
  .about-img-stat-val { font-size: 1.25rem; }
  .about-img-stat-icon { width: 36px; height: 36px; }
}



.features-section {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(circle at top, #0b1430 0%, #060d1f 60%, #040712 100%);
}

.features-header h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
}
.features-header p {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-box {
  position: relative;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: #0b1430;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease;
}
.feature-box:hover { transform: translateY(-8px); }

.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease, transform 0.6s ease;
  z-index: 1;
}
.feature-stt::before { background-image: url("/newsite/images/index_page_img/STT.jpg"); }
.feature-ai::before  { background-image: url("/newsite/images/index_page_img/AI TYPIST.jpg"); }

.feature-box::after {
  content: "";
  padding: 20px 10px;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 8, 20, 0.15), rgba(4, 8, 20, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.feature-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-icon {
  width: 60px; height: 60px;
  background: rgba(22, 162, 231, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.feature-icon i { color: #1ec8ff; font-size: 22px; }

.feature-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.feature-content {
  margin-top: 22px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}
.feature-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-list { padding-left: 18px; }
.feature-list li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  margin-bottom: 10px;
  position: relative;
}
.feature-list li::marker { color: #1ec8ff; }

.feature-box:hover::before  { opacity: 0.25; transform: scale(1.08); }
.feature-box:hover::after   { opacity: 1; }
.feature-box:hover .feature-title   { transform: translateY(-90px); }
.feature-box:hover i                { display: none; }
.feature-box:hover .feature-icon    { display: none; }
.feature-box:hover .feature-content { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-box   { height: 440px; }
  .feature-title { font-size: 1.4rem; }
}
@media (max-width: 576px) {
  .features-section { padding: 80px 0; }
  .features-header h2 { font-size: 2rem; }
  .feature-box   { height: auto; min-height: 420px; }
  .feature-inner { padding: 28px; }
}



.brands-section {
  position: relative;
  padding: 100px 0;
  background: #000000;
  overflow: hidden;
}
.brands-section .container { max-width: 1200px; }

.brands-content { padding-right: 2rem; }

.brands-badge {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.brands-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.brands-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 350px;
}


@media (max-width:906px){

  .brands-description{
  
  text-align: center;
  
  }
  
}


.brands-logos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.brands-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

/* .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  height: 80px;
  text-decoration: none;
} */


.brand-logo {
  width: 100%;
  height: 80px;

  object-fit: contain;   /* 🔥 MOST IMPORTANT */
  padding: 10px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;

  display: block;        /* ✅ fix */
  transition: all 0.3s ease;
}


.brand-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(22, 162, 231, 0.30);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-logo img {
  max-width: 100%; max-height: 50px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  opacity: 0.6;
  transition: all 0.3s ease;
}


.brand-logo:hover img {
  filter: grayscale(0%) brightness(1.2);
  opacity: 1;
}

.workflow-section {
  padding: 140px 0;
  background-color: #041018;
}

.workflow-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 72px;
  align-items: center;
}

.workflow-left h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}
.workflow-left h2 span { color: #1ec8ff; }
.workflow-left p {
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  max-width: 460px;
}

.workflow-slider-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  width: 100%;
}
.workflow-slider { width: 100%; min-width: 0; }

.workflow-slider .slick-list  { overflow: hidden; border-radius: 28px; width: 100%; }
.workflow-slider .slick-track { display: flex !important; align-items: stretch; }
.workflow-slider .slick-slide { float: none !important; display: flex !important; height: auto; }
.workflow-slider .slick-slide > div { width: 100%; display: flex; flex: 1; }

.slide {
  height: 360px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  flex: 1;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 8, 18, 0.95) 0%,
    rgba(5, 8, 18, 0.55) 45%,
    rgba(5, 8, 18, 0.25) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.slide-step {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: #1ec8ff;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.slide-content h3 {
  font-family: 'Fjalla One', sans-serif;
  color: #4fd6ff;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.25;
}

.slide-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 320px;
}

.workflow-arrows {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.workflow-arrows button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 200, 255, 0.18);
  color: #1ec8ff;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.workflow-arrows button:hover {
  background: rgba(30, 200, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 200, 255, 0.30);
}

@media (max-width: 991px) {
  .workflow-section   { padding: 80px 0; }
  .workflow-container { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .workflow-left      { text-align: center; }
  .workflow-left h2   { font-size: 2.4rem; }
  .workflow-left p    { max-width: 100%; }
  .workflow-arrows    { justify-content: center; }
  .slide              { height: 340px; }
  .slide-content      { padding: 36px; }
  .slide-content h3   { font-size: 1.65rem; }
}
@media (max-width: 576px) {
  .workflow-section   { padding: 60px 0; }
  .workflow-container { padding: 0 16px; gap: 32px; }
  .workflow-left h2   { font-size: 1.9rem; }
  .workflow-left p    { font-size: 0.95rem; margin-top: 14px; }
  .slide              { height: 290px; border-radius: 18px; }
  .workflow-slider .slick-list { border-radius: 18px; }
  .slide-content      { padding: 22px; gap: 8px; }
  .slide-content h3   { font-size: 1.35rem; }
  .slide-content p    { font-size: 0.87rem; max-width: 100%; }
  .workflow-arrows    { margin-top: 18px; justify-content: center; }
  .workflow-arrows button { width: 44px; height: 44px; font-size: 0.95rem; }
}
@media (max-width: 375px) {
  .workflow-container { padding: 0 12px; }
  .workflow-left h2   { font-size: 1.65rem; }
  .slide              { height: 260px; }
  .slide-content      { padding: 18px; }
  .slide-content h3   { font-size: 1.2rem; }
}


.vmp-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.vmp-eyebrow {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1ec8ff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vmp-eyebrow::before {
  content: "";
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, #1ec8ff);
}
.vmp-eyebrow::after {
  content: "";
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, #1ec8ff, transparent);
}

.vmp-heading {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 56px;
}
.vmp-heading span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 55%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.vmp-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 520px;
  min-height: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.45s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.vmp-card:hover {
  transform: translateY(-10px);
  border-color: rgba(30, 200, 255, 0.22);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(30, 200, 255, 0.15),
    0 0 60px rgba(30, 200, 255, 0.08);
}
.vmp-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, #16A2E7, transparent);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.vmp-card:hover::after { opacity: 1; }

.vmp-card--featured {
  border-color: rgba(30, 200, 255, 0.22);
}

@media (max-width:786px){

  .vmp-grid{
  
  display:block;
  
  }
  
  }

.vmp-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vmp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.vmp-card:hover .vmp-card-img img { transform: scale(1.06); }

.vmp-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(4, 12, 22, 0.97)  0%,
    rgba(4, 12, 22, 0.78)  38%,
    rgba(4, 12, 22, 0.35)  65%,
    rgba(4, 12, 22, 0.10) 100%
  );
  transition: background 0.4s ease;
}
.vmp-card:hover .vmp-card-overlay {
  background: linear-gradient(
    to top,
    rgba(4, 12, 22, 0.98)  0%,
    rgba(4, 12, 22, 0.85)  42%,
    rgba(4, 12, 22, 0.50)  70%,
    rgba(4, 12, 22, 0.15) 100%
  );
}
.vmp-card--featured .vmp-card-overlay {
  background: linear-gradient(
    to top,
    rgba(4, 10, 22, 0.98)  0%,
    rgba(4, 10, 22, 0.80)  40%,
    rgba(4, 10, 22, 0.40)  68%,
    rgba(4, 10, 22, 0.12) 100%
  );
}

.vmp-card-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(22, 162, 231, 0.15);
  border: 1px solid rgba(30, 200, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.vmp-card:hover .vmp-card-icon {
  background: rgba(30, 200, 255, 0.25);
  border-color: rgba(30, 200, 255, 0.50);
  box-shadow: 0 0 28px rgba(30, 200, 255, 0.30);
  transform: scale(1.08);
}
.vmp-card-icon i {
  font-size: 1.15rem;
  color: #1ec8ff;
}

.vmp-card-body {
  position: relative;
  z-index: 2;
  padding: 0 28px 32px;
}

.vmp-card-rule {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #1ec8ff, #16A2E7);
  border-radius: 2px;
  margin-bottom: 14px;
  transition: width 0.4s ease;
}
.vmp-card:hover .vmp-card-rule { width: 56px; }

.vmp-card-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.vmp-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 100%;
}

@media (max-width: 960px) {
  .vmp-section { padding: 60px 32px; }
  .vmp-grid    { grid-template-columns:2fr; gap: 18px; }
  .vmp-card           { height: 420px; }
  .vmp-card--featured { height: 420px; grid-column: span 2; }
}
@media (max-width: 640px) {
  .vmp-section { padding: 48px 16px; }
  .vmp-grid    { grid-template-columns: 1fr; }
  .vmp-card           { height: 380px; }
  .vmp-card--featured { grid-column: span 1; height: 380px; }
  .vmp-card-title     { font-size: 1.55rem; }
  .vmp-card-icon  {display: none;}
  .vmp-heading        { margin-bottom: 36px; }
}


.contact-alt-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #0b1430, #050914);
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.contact-form-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 32px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  min-width: 0;
}

.address-card .fa-arrow-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-tag {
  color: #1ec8ff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'DM Sans', sans-serif;
}

.contact-form-box h2 {
  font-family: 'Fjalla One', sans-serif;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 400;
  margin: 16px 0 36px;
  line-height: 1.2;
}
.contact-form-box h2 span { color: #1ec8ff; }

.contact-alt-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group {
  position: relative;
  min-width: 0;
}
.input-group.full { grid-column: span 2; }

.input-group i {
  position: absolute;
  top: 50%; left: 18px;
  transform: translateY(-50%);
  color: #1ec8ff;
  font-size: 15px;
  pointer-events: none;
}
.input-group.textarea i { top: 20px; transform: none; }

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 18px 16px 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  box-sizing: border-box;
}
.input-group textarea {
  min-height: 120px;
  resize: none;
}
.input-group input::placeholder,
.input-group textarea::placeholder { color: rgba(255, 255, 255, 0.60); }
.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(30, 200, 255, 0.60);
  background: rgba(255, 255, 255, 0.08);
}

.contact-alt-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: 0.35s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 200, 255, 0.40);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.info-card h4 {
  color: #ffffff;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-family: 'Fjalla One', sans-serif;
  font-weight: 400;
}
.info-card h4 i { color: #1ec8ff; }

.info-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-card {
  background: linear-gradient(135deg, rgba(30, 200, 255, 0.10), rgba(22, 162, 231, 0.05));
  border: 1px solid rgba(30, 200, 255, 0.25);
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.reply-time {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.60);
  font-family: 'DM Sans', sans-serif;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 18px 0;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.social-icons a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 200, 255, 0.15);
  color: #1ec8ff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.social-icons a:hover {
  background: rgba(30, 200, 255, 0.40);
  color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .contact-alt-section { padding: 80px 0; }
  .contact-container   { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .contact-form-box    { padding: 40px 32px; }
  .contact-form-box h2 { font-size: 2.2rem; }
}
@media (max-width: 576px) {
  .contact-alt-section { padding: 60px 0; }
  .contact-container   { padding: 0 16px; gap: 24px; }
  .contact-form-box    { padding: 28px 20px; border-radius: 22px; }
  .contact-form-box h2 { font-size: 1.8rem; margin-bottom: 24px; }
  .contact-alt-form    { grid-template-columns: 1fr; gap: 14px; }
  .input-group.full,
  .contact-btn         { grid-column: span 1; }
  .info-block p        { font-size: 0.9rem; }
  .social-icons a      { width: 38px; height: 38px; }
}
@media (max-width: 375px) {
  .contact-container   { padding: 0 12px; }
  .contact-form-box    { padding: 22px 16px; }
  .contact-form-box h2 { font-size: 1.6rem; }
  .input-group input,
  .input-group textarea { font-size: 0.88rem; padding: 14px 14px 14px 42px; }
}


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.55); }