/* Creative Design — SoftTech-inspired Dark Theme */
:root {
  --bg-deep: #0d0221;
  --bg-mid: #1a0b2e;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-solid: #1e1235;
  --line: rgba(255, 80, 120, 0.35);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.68);
  --accent: #ff4d2e;
  --accent-2: #ff8a00;
  --accent-grad: linear-gradient(135deg, #ffcc33 0%, #ff8a00 45%, #ff4d2e 100%);
  --magenta: #ff2d78;
  --glow: 0 0 40px rgba(255, 77, 46, 0.45);
  --glow-soft: 0 0 60px rgba(255, 45, 120, 0.25);
  --radius: 14px;
  --radius-pill: 999px;
  --nav-h: 80px;
  --container: 1180px;
  --font-display: "Poppins", "Hind Siliguri", sans-serif;
  --font-body: "Hind Siliguri", "Poppins", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(120, 40, 180, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(255, 45, 120, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 40%, #0a0118 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: .25s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* Decorative circles bg */
.soft-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.soft-circles::before,
.soft-circles::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 80, 140, 0.12);
  border-radius: 50%;
}
.soft-circles::before {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
}
.soft-circles::after {
  width: 360px; height: 360px;
  bottom: -80px; left: -60px;
  border-color: rgba(255, 140, 0, 0.1);
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
}
.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: #fff;
}
.section-head p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1.02rem;
}
.section-pad { padding: clamp(4rem, 8vw, 6rem) 0; position: relative; }

/* Buttons */
.btn-cd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.btn-cd:hover { transform: translateY(-2px); }
.btn-cd-primary {
  background: var(--accent-grad);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(255, 100, 0, 0.4);
}
.btn-cd-primary:hover {
  filter: brightness(1.08);
  color: #fff !important;
  box-shadow: var(--glow);
}
.btn-cd-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-cd-ghost:hover {
  border-color: var(--accent);
  color: #fff !important;
  background: rgba(255, 77, 46, 0.12);
}
.btn-cd-outline {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid var(--line);
}
.btn-cd-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 77, 46, 0.1);
  color: #fff !important;
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
}
.btn-play .play-ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 77, 46, 0.35);
}
.btn-play:hover .play-ico {
  background: var(--accent-grad);
  color: #fff;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 2, 33, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.site-header .navbar {
  padding: 0.9rem 0;
  background: transparent !important;
  box-shadow: none !important;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff !important;
}
.brand-lockup img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.35));
}
.site-nav .nav-link {
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  margin: 0 0.1rem;
  padding: 0.45rem 0.7rem !important;
  font-family: var(--font-display);
  font-size: 0.92rem;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--accent) !important;
}
.has-submenu { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #1a0f30;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s var(--ease);
  z-index: 50;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.submenu li a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}
.submenu li a:hover {
  background: rgba(255, 77, 46, 0.12);
  color: var(--accent);
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  filter: invert(1);
}
.navbar-toggler:focus { box-shadow: none; }
.dropdown-menu {
  background: #1a0f30 !important;
  border: 1px solid var(--line-soft) !important;
}
.dropdown-item { color: rgba(255,255,255,0.85) !important; }
.dropdown-item:hover {
  background: rgba(255, 77, 46, 0.15) !important;
  color: #fff !important;
}

/* ===== Hero ===== */
.hero-soft {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
  overflow: hidden;
}
.hero-soft .row { position: relative; z-index: 2; align-items: center; }
.hero-soft h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  color: #fff;
}
.hero-soft .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 0 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}
.hero-visual {
  position: relative;
  text-align: center;
}
.hero-visual img {
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(255, 45, 120, 0.35));
  animation: floatY 5s ease-in-out infinite;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 46, 0.35), transparent 65%);
  filter: blur(20px);
  z-index: -1;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Services */
.service-soft-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.service-soft-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.1rem;
  text-align: center;
  transition: .3s var(--ease);
  min-height: 210px;
}
.service-soft-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--glow-soft);
  background: rgba(255, 77, 46, 0.06);
}
.service-soft-card .icon {
  width: 54px; height: 54px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 77, 46, 0.12);
  color: var(--accent);
  font-size: 1.35rem;
}
.service-soft-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #fff;
}
.service-soft-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 0.85rem;
}
.service-soft-card .more {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
}

/* About split */
.about-soft {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-soft__media {
  position: relative;
  text-align: center;
}
.about-soft__media img {
  width: min(100%, 480px);
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(120, 40, 180, 0.4));
}
.about-soft__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.about-soft__content p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Why choose */
.why-soft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why-list-soft { display: grid; gap: 0.75rem; }
.why-list-soft li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.why-list-soft li i {
  color: var(--accent);
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.why-list-soft li strong {
  color: #fff;
  font-weight: 600;
}
.why-glow-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.why-glow-media .rings {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 42%, rgba(255, 77, 46, 0.15) 43%, transparent 44%),
    radial-gradient(circle, transparent 52%, rgba(255, 120, 0, 0.2) 53%, transparent 54%),
    radial-gradient(circle, transparent 62%, rgba(255, 45, 120, 0.18) 63%, transparent 64%);
  box-shadow: inset 0 0 80px rgba(255, 77, 46, 0.15);
  animation: spinSlow 28s linear infinite;
}
.why-glow-media img {
  position: relative;
  z-index: 2;
  width: min(72%, 280px);
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 50px rgba(255, 77, 46, 0.55);
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

/* Pricing */
.price-soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.price-soft-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: .3s var(--ease);
}
.price-soft-card:hover,
.price-soft-card.is-featured {
  border-color: var(--accent);
  box-shadow: var(--glow-soft);
  transform: translateY(-4px);
}
.price-soft-card.is-featured {
  background: linear-gradient(180deg, rgba(255, 77, 46, 0.12), rgba(255,255,255,0.03));
}
.price-soft-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}
.price-soft-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.price-soft-card .dur { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.price-soft-card ul { flex: 1; margin-bottom: 1.5rem; }
.price-soft-card li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  color: var(--text-muted); margin-bottom: 0.65rem; font-size: 0.94rem;
}
.price-soft-card li i { color: var(--accent); margin-top: 0.25rem; }
.featured-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-grad);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

/* Portfolio */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2rem;
}
.filter-bar button {
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--text-muted);
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: .25s var(--ease);
  font-family: var(--font-display);
}
.filter-bar button.active,
.filter-bar button:hover {
  background: var(--accent-grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 100, 0, 0.35);
}
.portfolio-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  aspect-ratio: 4/3;
  border: 1px solid var(--line-soft);
}
.portfolio-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .35s;
  opacity: 0.9;
}
.portfolio-tile:hover img {
  transform: scale(1.06);
  opacity: 0.45;
}
.portfolio-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.25rem;
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  transition: .35s var(--ease);
  background: linear-gradient(transparent, rgba(13, 2, 33, 0.95));
}
.portfolio-tile:hover .portfolio-meta {
  opacity: 1; transform: none;
}
.portfolio-meta h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}
.portfolio-meta span { font-size: 0.85rem; color: var(--text-muted); }
.portfolio-meta a {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--accent);
  font-weight: 600;
}

/* Team with glow circles */
.team-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-soft-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
}
.team-soft-card .avatar-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
}
.team-soft-card .avatar-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 46, 0.55), rgba(255, 45, 120, 0.15) 55%, transparent 70%);
  filter: blur(2px);
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.team-soft-card img {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(255,255,255,0.2);
}
.team-soft-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}
.team-soft-card span {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* Testimonials */
.t-soft {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: .3s var(--ease);
}
.t-soft:hover {
  border-color: var(--line);
  box-shadow: var(--glow-soft);
}
.t-soft .stars { color: #ffcc33; margin-bottom: 0.75rem; font-size: 0.85rem; }
.t-soft .quote {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  min-height: 88px;
  position: relative;
}
.t-soft .quote::before {
  content: "“";
  font-size: 3rem;
  color: rgba(255, 77, 46, 0.35);
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: -18px; left: -6px;
}
.t-soft .person {
  display: flex; align-items: center; gap: 0.75rem;
}
.t-soft .person img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 77, 46, 0.5);
  box-shadow: 0 0 16px rgba(255, 77, 46, 0.4);
}
.t-soft .person strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.t-soft .person small { color: var(--text-muted); }
.owl-theme .owl-dots .owl-dot span {
  width: 8px; height: 8px; margin: 4px; background: rgba(255,255,255,0.25);
}
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--accent); width: 22px;
}

/* Stats */
.stats-soft {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats-soft .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-soft .label { color: var(--text-muted); margin-top: 0.3rem; }

/* Brands */
.brand-logo {
  max-height: 52px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: .3s var(--ease);
}
.brand-logo:hover { opacity: 1; filter: none; }

/* CTA */
.cta-soft {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 77, 46, 0.28), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255, 45, 120, 0.22), transparent 40%),
    rgba(255,255,255,0.03);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-soft h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.75rem;
}
.cta-soft p { color: var(--text-muted); margin: 0 0 1.5rem; }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 46, 0.25), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(120, 40, 180, 0.3), transparent 45%),
    var(--bg-mid);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
}
.page-hero h1 span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p { color: var(--text-muted); margin: 0; font-size: 1.05rem; }
.page-hero .breadcrumb {
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 0;
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.3);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-hero .breadcrumb-item.active { color: #fff; }

/* Footer */
.site-footer {
  background: #090116;
  color: var(--text-muted);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.site-footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.15rem;
}
.site-footer a:hover { color: var(--accent); }
.site-footer .social-icons a {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}
.site-footer .social-icons a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(255, 77, 46, 0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Cards / forms on dark pages */
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: #fff;
}
.info-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255, 77, 46, 0.15);
  color: var(--accent);
  border-radius: 12px;
  flex-shrink: 0;
}
.bg-light, .bg-white, .bg-surface {
  background: transparent !important;
}
.text-muted { color: var(--text-muted) !important; }
.text-dark, .text-black { color: #fff !important; }
.card {
  background: rgba(255,255,255,0.04) !important;
  color: #fff;
  border-color: var(--line-soft) !important;
}
.form-control, .input-field, select.form-control, textarea.form-control {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid var(--line-soft) !important;
  color: #fff !important;
}
.form-control:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.2) !important;
}
.form-control::placeholder { color: rgba(255,255,255,0.4); }

/* Legacy aliases */
.btn-custom {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; min-height: 44px; padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill); font-weight: 600;
  background: var(--accent-grad); color: #fff !important; border: none;
  transition: .25s var(--ease);
}
.btn-custom:hover {
  filter: brightness(1.08); color: #fff !important;
  box-shadow: var(--glow);
}
.text-primary { color: var(--accent) !important; }
.btn-primary {
  background: var(--accent-grad) !important;
  border: none !important;
}
.btn-outline-primary {
  color: #fff !important;
  border-color: var(--line) !important;
  background: transparent !important;
}
.btn-outline-primary:hover {
  background: rgba(255, 77, 46, 0.15) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Google translate hide */
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.skiptranslate,
#google_translate_element {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}
body { top: 0 !important; position: static !important; }

/* Responsive */
@media (max-width: 1199px) {
  .service-soft-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .service-soft-grid { grid-template-columns: repeat(2, 1fr); }
  .price-soft-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .about-soft, .why-soft { grid-template-columns: 1fr; }
  .team-soft-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-soft { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none; background: transparent;
  }
  .has-submenu.open .submenu { display: block; }
  .hero-soft { text-align: center; }
  .hero-soft .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
}
@media (max-width: 575px) {
  .service-soft-grid,
  .team-soft-grid { grid-template-columns: 1fr; }
}
