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


:root {
  --bg: #020617;

  --fg: #f8fafc;

  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --brand-primary: #3b82f6;

  --brand-accent: #14b8a6;

  --brand-gold: #f59e0b;

}


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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}


.text-brand-primary {
  color: var(--brand-primary) !important;
}

.text-brand-accent {
  color: var(--brand-accent) !important;
}

.text-brand-gold {
  color: var(--brand-gold) !important;
}

.text-slate-300 {
  color: var(--slate-300) !important;
}

.text-slate-400 {
  color: var(--slate-400) !important;
}

.text-slate-500 {
  color: var(--slate-500) !important;
}

.bg-slate-800 {
  background-color: var(--slate-800) !important;
}

.bg-slate-900 {
  background-color: var(--slate-900) !important;
}

.bg-brand-primary {
  background-color: var(--brand-primary) !important;
}


.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}

.glass-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.06);
}


#mainNavbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#mainNavbar.scrolled {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand .logo-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
  flex-shrink: 0;
}

.navbar-brand .brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  line-height: 1;
}

.navbar-brand .brand-sub {
  font-size: 0.6rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: var(--slate-300) !important;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0 !important;
  margin: 0 1rem;
  transition: color 0.2s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover {
  color: white !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  color: white;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-collapse {
  background-color: var(--slate-900);
}

@media(min-width:992px) {
  .navbar-collapse {
    background: transparent;
  }
}


.btn-brand {
  background: linear-gradient(135deg, var(--brand-primary), #2563eb);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  padding: 0.625rem 1.5rem;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
  color: white;
}

.btn-brand-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-outline-brand {
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--slate-300);
  background: transparent;
  border-radius: 0.5rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 0.625rem 1.5rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-outline-brand:hover {
  border-color: var(--brand-primary);
  background: rgba(59, 130, 246, 0.1);
  color: white;
}


#hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-glow-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.18);
  border-radius: 50%;
  filter: blur(100px);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 400px;
  height: 400px;
  background: rgba(20, 184, 166, 0.10);
  border-radius: 50%;
  filter: blur(100px);
  transform: translateY(50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--brand-primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero-h1 .gradient-text {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hero-checks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-400);
}

.hero-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
}


.hero-rings-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ring-1 {
  inset: 0;
  animation: spinCW 60s linear infinite;
}

.ring-2 {
  inset: 8%;
  animation: spinCCW 40s linear infinite;
}

.ring-3 {
  inset: 16%;
  animation: spinCW 20s linear infinite;
}

@keyframes spinCW {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinCCW {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-orb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(20, 184, 166, 0.2));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.2);
}

.center-orb .orb-percent {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.center-orb .orb-label {
  font-size: 0.7rem;
  color: var(--brand-primary);
  font-weight: 600;
}


.iso-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.iso-badge-1 {
  top: 10%;
  left: 50%;
  animation: floatBadge 4s ease-in-out infinite;
}

.iso-badge-2 {
  top: 50%;
  right: 0%;
  animation: floatBadge 4s ease-in-out infinite 1s;
  transform: translate(0, -50%);
}

.iso-badge-3 {
  bottom: 10%;
  left: 50%;
  animation: floatBadge 4s ease-in-out infinite 2s;
  transform: translate(-50%, 50%);
}

.iso-badge-4 {
  top: 50%;
  left: 0%;
  animation: floatBadge 4s ease-in-out infinite 3s;
  transform: translate(0, -50%);
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.iso-badge-2 {
  transform: translate(0, -50%) !important;
}

.iso-badge-4 {
  transform: translate(0, -50%) !important;
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translate(0, -50%) translateY(0);
  }

  50% {
    transform: translate(0, -50%) translateY(-10px);
  }
}

.iso-badge-2 {
  animation-name: floatBadge2 !important;
}

.iso-badge-4 {
  animation-name: floatBadge2 !important;
}


#trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
  padding: 2rem 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  cursor: default;
  transition: transform 0.3s;
}

.trust-item:hover {
  transform: scale(1.08);
}

.trust-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  transition: background 0.3s, color 0.3s;
}

.trust-item:hover .trust-icon-wrap {
  background: var(--brand-accent);
  color: white;
}


.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}


.benefit-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.glass-card:hover .benefit-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}


.standard-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.standard-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: inherit;
}

.standard-card:hover .standard-card-bg {
  opacity: 1;
}

.standard-card .card-desc {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 0.4rem;
}

.standard-card:hover .card-desc {
  opacity: 1;
  transform: translateY(0);
}

.standard-card .card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}

.standard-card:hover .card-footer-row {
  opacity: 1;
}

.standard-card .card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
  margin-bottom: 0.75rem;
}

.standard-card:hover .card-divider {
  transform: scaleX(1);
}


#process {
  background: rgba(15, 23, 42, 0.3);
}

.timeline-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}


.timeline-line {
  position: absolute;

  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

@media (min-width: 768px) {


  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}


.timeline-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}


@media (max-width: 767px) {
  .timeline-row {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto;
  }

  .timeline-left {
    display: none;
  }

  .timeline-node-col {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-right {
    grid-column: 2;
    grid-row: 1;
    padding-left: 1.25rem;
  }


  .timeline-row.odd .timeline-right {
    display: block;
  }

  .timeline-row.even .timeline-right {
    display: block;
  }

  .timeline-row.even .timeline-left {
    display: none;
  }
}


.timeline-left {
  display: flex;
  justify-content: flex-end;

  padding-right: 2rem;
}


.timeline-node-col {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
}

.timeline-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--slate-900);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.25);
}


.timeline-right {
  padding-left: 2rem;
}


.timeline-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  transition: border-color 0.3s;
}

.timeline-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}


.timeline-row.odd .timeline-left {
  display: flex;
}

.timeline-row.odd .timeline-right {
  visibility: hidden;
  pointer-events: none;
}


.timeline-row.even .timeline-left {
  visibility: hidden;
  pointer-events: none;
}

.timeline-row.even .timeline-right {
  display: block;
}


@media (max-width: 767px) {
  .timeline-row.odd .timeline-right {
    visibility: visible;
    pointer-events: auto;
  }

  .timeline-row.odd .timeline-left {
    display: none;
  }

  .timeline-row.even .timeline-left {
    display: none;
  }

  .timeline-row.even .timeline-right {
    visibility: visible;
    pointer-events: auto;
  }
}


#testimonials {
  background: rgba(2, 6, 23, 0.6);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--brand-primary);
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 6rem;
  color: var(--brand-primary);
  opacity: 0.08;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card:hover {
  border-left-color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--brand-gold);
}

.testi-text {
  color: var(--slate-300);
  font-size: 0.9rem;
  line-height: 1.8;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  line-height: 1.2;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 2px;
}

.testi-iso-badge {
  margin-left: auto;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: monospace;
  background: rgba(59, 130, 246, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
  white-space: nowrap;
  align-self: flex-start;
}



.stat-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--slate-300);
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 120px;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.3s;
  cursor: default;
}

.industry-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: background 0.3s, color 0.3s;
}

.industry-item:hover .industry-icon {
  background: var(--brand-primary);
  color: white;
}


#final-cta {
  padding: 6rem 0;
}

.cta-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
}


/* =========================================================================
   PREMIUM NEW FOOTER DESIGN
   ========================================================================= */
footer {
  background: linear-gradient(180deg, #020617 0%, #071226 100%);
  padding: 70px 20px 30px;
  color: #94a3b8;
}

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

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

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 20px;
  align-self: flex-start;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 280px;
  margin: 0;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #22c55e;
  border-radius: 2px;
  margin-top: 6px;
  display: block;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #94a3b8;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #22c55e;
  padding-left: 5px;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-divider {
  height: 1px;
  background-color: #1e293b;
  margin: 40px 0 20px;
  border: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-bottom-text {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 30px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 50px 20px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col {
    align-items: center;
  }
  .footer-heading::after {
    margin: 6px auto 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-desc {
    font-size: 13px;
  }
}


.form-control-dark {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.5rem !important;
  color: white !important;
  padding: 0.75rem 1rem !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.form-control-dark:focus {
  outline: none !important;
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 1px var(--brand-primary) !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

.form-control-dark::placeholder {
  color: var(--slate-500) !important;
}

.form-control-dark option {
  background: #0f172a;
  color: white;
}


.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  transition: background 0.3s, color 0.3s;
}

.glass-card:hover .service-icon-wrap {
  background: var(--brand-primary);
  color: white;
}


.std-tab-btn {
  padding: 0.4rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.05);
  color: var(--slate-400);
}

.std-tab-btn.active {
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.std-tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.std-tab-panel {
  display: none;
}

.std-tab-panel.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.validity-badge {
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--slate-400);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}


.core-val-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.core-val-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.val-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-300);
  margin-bottom: 1rem;
}


.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.notice-warning {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 0.5rem;
  color: #fde68a;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  text-align: center;
}


.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 260px;
  filter: grayscale(1);
  transition: filter 0.5s;
}

.map-container:hover {
  filter: grayscale(0);
}


.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}


.skew-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 500px;
  background: rgba(59, 130, 246, 0.04);
  transform: skewY(-3deg) translateY(-50%);
  z-index: 0;
}


.testi-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 0.5rem 0.25rem 0.75rem;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
}

@media (max-width: 767px) {
  .testi-slide {
    flex: 0 0 90%;
  }
}


.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, opacity 0.25s;
}

.testi-arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.4);
}


.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.testi-dot.active {
  background: var(--brand-primary);
  transform: scale(1.35);
}