:root {
  --neon-blue: #4f8eff;
  --neon-purple: #a855f7;
  --neon-cyan: #22d3ee;
  --dark-bg: #080b18;
  --card-bg: rgba(10, 14, 35, 0.88);
  --left-bg: linear-gradient(145deg, #0d0f2a 0%, #12093a 55%, #0a0e28 100%);
  --border: rgba(79, 142, 255, 0.18);
  --text-muted: rgba(200, 210, 255, 0.55);
  --input-bg: rgba(255, 255, 255, 0.04);
  --input-border: rgba(79, 142, 255, 0.22);
}

/* ── SCENE ── */
.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(
    ellipse 130% 80% at 60% 40%,
    #1a0a3e 0%,
    #08091a 55%,
    #000510 100%
  );
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 600px at 20% 70%,
      rgba(79, 142, 255, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle 400px at 80% 20%,
      rgba(168, 85, 247, 0.14) 0%,
      transparent 60%
    );
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(79, 142, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 255, 0.6) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 80%
  );
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.32;
  animation: floatOrb var(--d, 9s) var(--dl, 0s) ease-in-out infinite alternate;
}

.orb-1 {
  width: 340px;
  height: 340px;
  background: #4f8eff;
  top: -80px;
  left: -80px;
  --d: 9s;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: #a855f7;
  bottom: -60px;
  right: -60px;
  --d: 11s;
  --dl: -2s;
}

.orb-3 {
  width: 160px;
  height: 160px;
  background: #22d3ee;
  top: 40%;
  left: 50%;
  --d: 7s;
  --dl: -4s;
  opacity: 0.13;
}

@keyframes floatOrb {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(18px, 28px) scale(1.07);
  }
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--d, 3s) var(--dl, 0s) ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.1;
    transform: scale(1);
  }

  to {
    opacity: 0.85;
    transform: scale(1.4);
  }
}

/* ── TRIGGER ── */
.sg-trigger {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 50;
  padding: 0.7rem 1.4rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 28px rgba(79, 142, 255, 0.4),
    0 4px 20px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.sg-trigger:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 44px rgba(79, 142, 255, 0.65),
    0 4px 24px rgba(0, 0, 0, 0.5);
}

/* ── MODAL ── */
.modal-dialog {
  max-width: 940px;
}

.modal-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow:
    0 40px 100px rgba(0, 0, 8, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.modal-body {
  padding: 0;
}

/* ── LEFT PANEL ── */
.sg-left {
  background: var(--left-bg);
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem 1rem 2rem;
  /* display: flex; */
  flex-direction: column;
  gap: 1.3rem;
  justify-content: space-between;
}

.sg-left::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle 300px at 15% 20%,
      rgba(79, 142, 255, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle 260px at 85% 85%,
      rgba(168, 85, 247, 0.18) 0%,
      transparent 55%
    );
}

.sg-left > * {
  position: relative;
  z-index: 1;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(79, 142, 255, 0.1);
  border: 1px solid rgba(79, 142, 255, 0.28);
  border-radius: 50px;
  padding: 0.28rem 0.85rem;
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.sg-headline {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.22;
  background: linear-gradient(135deg, #fff 0%, #a8c4ff 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.sg-sub {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.sg-proven {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.stat-box {
  background: rgba(79, 142, 255, 0.07);
  border: 1px solid rgba(79, 142, 255, 0.16);
  border-radius: 10px;
  padding: 0.5rem 0.35rem;
  text-align: center;
}

.stat-val {
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #4f8eff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.58rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.act-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.6rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1rem;
}

.act-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.act-icon.blue {
  background: rgba(79, 142, 255, 0.18);
}

.act-icon.purple {
  background: rgba(168, 85, 247, 0.18);
}

.act-icon.green {
  background: rgba(52, 211, 153, 0.18);
}

.act-name {
  font-size: 0.76rem;
  color: #d0d8ff;
  font-weight: 500;
}

.act-sub {
  font-size: 0.63rem;
  color: var(--text-muted);
}

.tick-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  border: 1.5px solid rgba(52, 211, 153, 0.4);
  color: #34d399;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-left: auto;
}

.logo-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  color: rgba(200, 210, 255, 0.55);
  font-weight: 500;
}

/* ── RIGHT PANEL ── */
.sg-right {
  padding: 1rem 2rem 1rem;
  background: rgba(5, 8, 22, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.panel-title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
}

.panel-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.18rem;
}

/* floating label fields */
/* .sg-field {
            position: relative;
        }

        .sg-field label {
            position: absolute;
            left: 2.7rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: .82rem;
            color: var(--text-muted);
            pointer-events: none;
            transition: top .2s, font-size .2s, color .2s, left .2s;
            z-index: 2;
        } */

/* .sg-field.has-val label,
        .sg-field input:focus~label,
        .sg-field select:focus~label,
        .sg-field textarea:focus~label {
            top: .48rem;
            font-size: .66rem;
            color: var(--neon-blue);
            left: 2.4rem;
            transform: none;
        } */

/* Floating label fix */
.sg-field {
  position: relative;
}



/* Hide placeholder while typing */
.sg-field input::placeholder,
.sg-field textarea::placeholder {
  color: transparent;
  transition: 0.2s;
}

.sg-field input:focus::placeholder,
.sg-field textarea:focus::placeholder {
  color: transparent;
}

/* Default label position */
.sg-field label {
  position: absolute;
  left: 2.7rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 2;
}

/* Move label top when typing OR focus */
.sg-field input:focus + label,
.sg-field input:not(:placeholder-shown) + label,
.sg-field textarea:focus + label,
.sg-field textarea:not(:placeholder-shown) + label {
  top: 8px;
  left: 2.4rem;
  font-size: 12px;
  color: #4f8eff;
  transform: none;
  background: #0a0e23;
  padding: 0 4px;
}

/* Select floating label fix */
.sg-field select {
  padding-top: 1.35rem !important;
  padding-bottom: 0.45rem !important;
  color: #fff;
}

/* Default label */
.sg-field select + label {
  position: absolute;
  left: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 2;
}

/* Move label top on focus/value */
.sg-field select:focus + label,
.sg-field select:valid + label {
  top: 6px;
  left: 2.4rem;
  font-size: 12px;
  color: #4f8eff;
  transform: none;
  background: #0a0e23;
  padding: 0 4px;
}

/* First option hidden style */
.sg-field select option[value=""] {
  color: #999;
}
.sg-field textarea ~ label {
  top: 1rem;
  transform: none;
}

.sg-field.has-val textarea ~ label {
  top: 0.38rem;
  font-size: 0.66rem;
  color: var(--neon-blue);
  left: 2.4rem;
}

.field-icon {
  position: absolute;
  left: 0.82rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.sg-field input,
.sg-field select,
.sg-field textarea {
  width: 100%;
  padding: 1.4rem 1rem 0.48rem 2.7rem;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  color: #f0f4ff;
  font-size: 0.85rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.sg-field select {
  padding-right: 1.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234f8eff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.75rem) 50%;
}

.sg-field select option {
  background: #0d0f2a;
  color: #fff;
}

.sg-field textarea {
  padding-top: 1.65rem;
  resize: none;
  height: 82px;
}

.sg-field input:focus,
.sg-field select:focus,
.sg-field textarea:focus {
  border-color: rgba(79, 142, 255, 0.55);
  box-shadow:
    0 0 0 3px rgba(79, 142, 255, 0.1),
    0 0 22px rgba(79, 142, 255, 0.22);
  background: rgba(79, 142, 255, 0.04);
}

.sg-field input:focus ~ .field-icon,
.sg-field select:focus ~ .field-icon {
  color: var(--neon-blue);
}

.sg-field input::placeholder,
.sg-field textarea::placeholder {
  opacity: 0;
}

.err-msg {
  font-size: 0.69rem;
  color: #f87171;
  margin-top: 0.2rem;
  padding-left: 0.35rem;
  display: none;
}

.sg-field.is-error input,
.sg-field.is-error select,
.sg-field.is-error textarea {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

.sg-field.is-error .err-msg {
  display: block;
}

.sg-field.is-valid input,
.sg-field.is-valid select {
  border-color: rgba(52, 211, 153, 0.4);
}

.valid-mark {
  position: absolute;
  right: 0.72rem;
  top: 50%;
  transform: translateY(-50%);
  color: #34d399;
  display: none;
  font-size: 0.82rem;
  z-index: 3;
}

.sg-field.is-valid .valid-mark {
  display: block;
}

/* phone row */
.phone-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
}

.country-sel {
  padding: 0.88rem 0.4rem;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  color: #f0f4ff;
  font-size: 0.78rem;
  cursor: pointer;
  min-width: 76px;
  padding-right: 1.6rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234f8eff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.4rem) 50%;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.country-sel:focus {
  border-color: rgba(79, 142, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(79, 142, 255, 0.1);
}

.country-sel option {
  background: #0d0f2a;
}

/* CTA */
.sg-cta {
  width: 100%;
  padding: 0.92rem;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #4f8eff 0%, #7c3aed 100%);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(79, 142, 255, 0.35),
    0 0 40px rgba(168, 85, 247, 0.12);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.sg-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 8px 32px rgba(79, 142, 255, 0.5),
    0 0 60px rgba(168, 85, 247, 0.22);
}

.sg-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.2s;
}

.sg-cta:hover::before {
  opacity: 1;
}

.sg-divider {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.74rem;
}

.sg-divider::before,
.sg-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* comm icons */
.comm-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.comm-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.comm-btn:hover {
  transform: translateY(-3px) scale(1.12);
}

.comm-li {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
  box-shadow: 0 4px 14px rgba(0, 119, 181, 0.4);
}

.comm-li:hover {
  box-shadow: 0 6px 24px rgba(0, 119, 181, 0.7);
}

.comm-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.comm-wa:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.comm-ms {
  background: linear-gradient(135deg, #6264a7, #464775);
  box-shadow: 0 4px 14px rgba(98, 100, 167, 0.4);
}

.comm-ms:hover {
  box-shadow: 0 6px 24px rgba(98, 100, 167, 0.7);
}

.comm-btn svg {
  color: #fff;
}

.comm-tip {
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 14, 40, 0.95);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.22rem 0.5rem;
  font-size: 0.68rem;
  color: #a8c4ff;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.comm-btn:hover .comm-tip {
  opacity: 1;
}

/* success */
.sg-success {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: rgba(8, 11, 28, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 10;
}

.sg-success.show {
  opacity: 1;
  pointer-events: all;
}

.check-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34d399, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(52, 211, 153, 0.4);
  animation: popIn 0.5s cubic-bezier(0.2, 1.5, 0.5, 1);
}

@keyframes popIn {
  from {
    transform: scale(0) rotate(-30deg);
  }

  to {
    transform: scale(1) rotate(0);
  }
}

.sg-success h3 {
  font-size: 1.3rem;
  color: #fff;
}

.sg-success p {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 230px;
}

.sg-back {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  color: #a8c4ff;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.sg-back:hover {
  background: rgba(79, 142, 255, 0.1);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: scale(0);
  animation: rippleA 0.6s linear;
  pointer-events: none;
}

@keyframes rippleA {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .sg-left,
  .sg-right {
    padding: 1.5rem 1.25rem;
  }

  .sg-headline {
    font-size: 1.3rem;
  }
}

/* Modal backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.85) !important;
}

/* Modal content background */
.modal-content {
  background: #0a0e23 !important;
  border: 1px solid rgba(79, 142, 255, 0.25) !important;
}

/* Left panel */
.sg-left {
  background: linear-gradient(
    145deg,
    #0d0f2a 0%,
    #12093a 55%,
    #0a0e28 100%
  ) !important;
}

/* Right panel */
.sg-right {
  background: #080b1a !important;
}
.sg-field input,
.sg-field select{
  height: 50px;
}
/* Input fields */
.sg-field input,
.sg-field select,
.sg-field textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(79, 142, 255, 0.3) !important;
  color: #f0f4ff !important;
}

/* Input focus */
.sg-field input:focus,
.sg-field select:focus,
.sg-field textarea:focus {
  background: rgba(79, 142, 255, 0.08) !important;
  border-color: rgba(79, 142, 255, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(79, 142, 255, 0.12) !important;
}

/* Labels */
.sg-field label {
  color: rgba(200, 210, 255, 0.6) !important;
}

/* Country select */
.country-sel {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(79, 142, 255, 0.3) !important;
  color: #f0f4ff !important;
}

/* Panel title */
.panel-title {
  color: #ffffff !important;
}

.panel-sub {
  color: rgba(200, 210, 255, 0.6) !important;
}

/* Divider */
.sg-divider {
  color: rgba(200, 210, 255, 0.4) !important;
}
.sg-sub,
.brand-badge {
  color: #fff !important;
}
/* Bootstrap override - modal background */
#myModal .modal-content {
  background-color: #0a0e23 !important;
  border: 1px solid rgba(79, 142, 255, 0.25) !important;
  border-radius: 22px !important;
}

/* Pulse dot fix */
#myModal .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee !important;
  box-shadow: 0 0 8px #22d3ee !important;
  flex-shrink: 0;
  animation: pulseAnim 2s infinite !important;
}

/* Pulse animation */
@keyframes pulseAnim {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px #22d3ee;
  }
  50% {
    opacity: 0.15;
    box-shadow: 0 0 2px #22d3ee;
  }
}
#myModal .logo-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  color: rgba(200, 210, 255, 0.55);
  font-weight: 500;
  margin: 0 4px 4px 0;
}

#myModal .d-flex.flex-wrap {
  gap: 6px !important;
}
#myModal .stat-val {
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #4f8eff, #c084fc) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1.2;
}

#myModal .stat-lbl {
  font-size: 0.65rem;
  color: rgba(200, 210, 255, 0.7) !important;
  margin-top: 0.15rem;
}

#myModal .stat-box {
  background: rgba(79, 142, 255, 0.1) !important;
  border: 1px solid rgba(79, 142, 255, 0.2) !important;
  border-radius: 10px;
  padding: 0.5rem 0.35rem;
  text-align: center;
}
#myModal .btn-close {
  background: transparent
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E")
    center/12px auto no-repeat !important;
  width: 24px !important;
  height: 24px !important;
  opacity: 0.7 !important;
  border: none !important;
  cursor: pointer !important;
  flex-shrink: 0;
}

#myModal .btn-close:hover {
  opacity: 1 !important;
  transform: scale(1.1);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.act-sub {
  color: rgba(200, 210, 255, 0.7) !important;
}

#myModal .field-icon svg {
  stroke: rgba(200, 210, 255, 0.6) !important;
  color: rgba(200, 210, 255, 0.6) !important;
}

#myModal .sg-field input:focus ~ .field-icon svg,
#myModal .sg-field select:focus ~ .field-icon svg {
  stroke: #4f8eff !important;
  color: #4f8eff !important;
}
#myModal .row.g-2 {
  --bs-gutter-x: 0.5rem !important;
  --bs-gutter-y: 0.5rem !important;
}
.tech-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.marquee-content li {
  flex-shrink: 0;
  margin: 0 20px;
}

.star-divider img {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 500px) {
  .sg-left {
    display: none!important;
  }
}