/* =========================
   Ezsetup – Modern UI CSS
   ========================= */

/* RESET / BASE */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  line-height: 1.6;
}

/* LINKS */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* ================= HEADER ================= */

.tviro-header,
.tts-header {
  position: sticky;
  top: 15px;
  z-index: 999;
}

.tviro-header .navbar,
.tts-header .navbar {
  background: linear-gradient(135deg, #020617, #0f172a);
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: 0 12px 40px rgba(2,6,23,0.4);
}

/* Logo */
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
}

.logo-text {
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* Menu */
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: #cbd5f5;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #facc15;
    
}

/* CTA Buttons */
.btn-primary {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border: none;
  color: #020617;
  font-weight: 700;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline-light {
  border-color: #475569;
  color: #e5e7eb;
}

.btn-outline-light:hover {
  background: #facc15;
  color: #020617;
}

/* Mobile Header */
@media (max-width: 991px) {
  .tviro-header,
  .tts-header {
    top: 0;
  }
  .tviro-header .navbar,
  .tts-header .navbar {
    border-radius: 0;
  }
}

/* ================= HERO SECTION ================= */
 

.hero-banner {
  background: url("../images/hero-bg.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2,6,23,0.85),
    rgba(2,6,23,0.4)
  );
}

.hero-banner .hero-title span {
  color: #facc15;
}

.hero-instavo {
  padding: 80px 0 130px;
  background: radial-gradient(circle at top, #ffffff 0%, #eef2ff 100%);
}

/* Badge */
.hero-badge {
  background: linear-gradient(135deg,#2563eb,#0ea5e9);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

/* Title */
.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 20px;
  color: #020617;
}

.hero-title span {
  background: linear-gradient(135deg,#0ea5e9,#2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 18px;
  color: #475569;
}

/* Floating Cards */
.hero-card {
  position: absolute;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 18px;
  width: 210px;
  box-shadow: 0 15px 40px rgba(2,6,23,0.1);
}

.hero-card i {
  font-size: 22px;
  color: #2563eb;
}

.hero-card h6 {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 2px;
}

.hero-card p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.hero-card-left {
  left: 5%;
  top: 55%;
}
.hero-card-right {
  right: 5%;
  top: 45%;
}

@media (max-width: 992px) {
  .hero-card {
    display: none;
  }
  .hero-title {
    font-size: 2.3rem;
  }
}

/* ================= SECTIONS ================= */

.bg-light {
  background-color: #f8fafc !important;
}

.shadow-sm {
  box-shadow: 0 10px 30px rgba(2,6,23,0.06) !important;
}

.card,
.bg-white {
  border-radius: 18px;
}

/* Cards */
.card {
  border: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(2,6,23,0.12);
}

/* Section Headings */
section h2 {
  color: #020617;
}

section p.text-muted {
  color: #64748b !important;
}

/* ================= PROCESS SECTION ================= */

.bg-primary {
  background: linear-gradient(135deg, #020617, #1e293b) !important;
}

.bg-primary h2,
.bg-primary h6,
.bg-primary p {
  color: #ffffff;
}

/* ================= IMAGES ================= */

section img {
  transition: transform .35s ease;
}

section img:hover {
  transform: scale(1.05);
}

/* ================= BUTTONS ================= */

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

/* ================= FOOTER ================= */

.tviro-footer,
.tts-footer {
  background: #020617;
  color: #cbd5f5;
}

/* Footer Logo */
.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 16px;
}

.footer-logo-text {
  font-weight: 800;
  font-size: 20px;
}

/* Footer Titles */
.footer-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
  color: #f8fafc;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
}

.footer-links a:hover {
  color: #facc15;
}

/* Social */
.footer-social a {
  width: 38px;
  height: 38px;
  background: #0f172a;
  color: #cbd5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: .3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #020617;
}

/* Newsletter */
.footer-form {
  display: flex;
  gap: 8px;
}

.footer-form input {
  flex: 1;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.footer-form button {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #020617;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-form {
    flex-direction: column;
  }
}
