/* ══════════════════════════════════════════════════════
   GLOBAL
   ══════════════════════════════════════════════════════ */
:root {
  --primary: #0d6efd;
  --primary-dark: #084298;
  --accent: #0dcaf0;
  --dark: #111827;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --white: #ffffff;
  --radius: 1rem;
  --radius-sm: .5rem;
  --shadow: 0 8px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
  --transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
  background: var(--white);
}


/* ===== FIX: Push Navbar to Right ===== */

.header .navbar .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

#mainNavigation {
  flex-grow: 0 !important;
}

#mainNavigation .navbar-nav {
  margin-left: auto !important;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}


/* ══════════════════════════════════════════════════════
   BREADCRUMB HERO BANNER
   ══════════════════════════════════════════════════════ */
.page-title-modern {
  background: var(--white);
  padding: 1.5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.page-title-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* breadcrumb – top right */
.breadcrumb-nav {
  display: flex;
  justify-content: flex-end;
  padding-top: .25rem;
}

.page-title-modern .breadcrumb {
  background: transparent;
}

.page-title-modern .breadcrumb-item a {
  color: var(--gray-500);
  font-size: .8rem;
  font-weight: 500;
  transition: var(--transition);
}

.page-title-modern .breadcrumb-item a:hover {
  color: var(--primary);
}

.page-title-modern .breadcrumb-item.active {
  color: var(--gray-400);
  font-size: .8rem;
}

.page-title-modern .breadcrumb-item+.breadcrumb-item::before {
  color: var(--gray-200);
  content: "›";
  font-weight: 700;
}

/* sub-label */
.breadcrumb-text {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: .75rem;
  margin-bottom: .25rem;
}

/* main heading */
.page-title-modern .page-heading {
  color: var(--dark);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin: 0;
}


/* ══════════════════════════════════════════════════════
   HERO PARALLAX BANNER
   ══════════════════════════════════════════════════════ */
.hero-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(56, 56, 56, 0.5) 0%,
      rgba(60, 60, 60, 0.7) 100%);
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner .hero-heading {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 15px rgba(0, 0, 0, .35);
}

.hero-banner .hero-lead {
  color: var(--white);
  max-width: 600px;
  margin: 1rem auto 0;
  opacity: .85;
}


/* ══════════════════════════════════════════════════════
   SHARED BADGE (used across all sections)
   ══════════════════════════════════════════════════════ */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg,
      rgba(13, 110, 253, .08),
      rgba(13, 202, 240, .08));
  color: var(--primary);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}


/* ══════════════════════════════════════════════════════
   DESCRIPTION SECTION
   ══════════════════════════════════════════════════════ */
.desc-section {
  background: var(--white);
}

.desc-section .desc-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.85;
}


/* ══════════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--gray-50);
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      rgba(13, 110, 253, .1),
      rgba(13, 202, 240, .1));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: .75rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-card p {
  color: var(--gray-500);
  margin-top: .6rem;
  font-size: .9rem;
  margin-bottom: 0;
}


/* ══════════════════════════════════════════════════════
   CTA – RELATED PRODUCTS
   ══════════════════════════════════════════════════════ */
.cta-products {
  background: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.cta-products::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg,
      rgba(13, 110, 253, .03),
      rgba(13, 202, 240, .03));
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.cta-products .cta-heading {
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 800;
}

.cta-products .cta-desc {
  color: var(--gray-500);
  max-width: 520px;
  font-size: .95rem;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 700;
  padding: .75rem 2.2rem;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, .3);
  color: var(--white);
}


/* ══════════════════════════════════════════════════════
   FEATURE SECTIONS
   ══════════════════════════════════════════════════════ */
.feature-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.feature-section.bg-alt {
  background: var(--gray-50);
}

.feature-section .feature-heading {
  color: var(--dark);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: .75rem;
  line-height: 1.3;
}

.feature-section .feature-desc {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* bullet list */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .55rem;
  color: var(--gray-600);
  font-size: .95rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* image wrapper */
.feature-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.feature-img-wrapper:hover img {
  transform: scale(1.04);
}

.feature-img-wrapper .overlay-number {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(13, 110, 253, .35);
}


/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  padding: .65rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, .3);
  color: var(--white);
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .feature-section {
    padding: 3.5rem 0;
  }

  .feature-img-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {

  /* breadcrumb banner */
  .page-title-modern {
    padding: 1.25rem 0 1.5rem;
  }

  .breadcrumb-nav {
    justify-content: center;
  }

  .page-title-modern .page-heading {
    font-size: 1.4rem;
  }

  /* hero */
  .hero-banner {
    min-height: 280px;
    background-attachment: scroll;
  }

  .hero-banner .hero-heading {
    font-size: 1.3rem;
  }

  /* stats */
  .stat-card {
    margin-bottom: 1rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  /* features */
  .feature-section {
    padding: 2.5rem 0;
  }

  .feature-section .feature-heading {
    font-size: 1.35rem;
  }

  .feature-img-wrapper {
    margin-top: 1.5rem;
  }

  /* cta */
  .cta-products {
    padding: 2rem 0;
  }

  .cta-products .cta-heading {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {

  .page-title-modern {
    padding: 1rem 0 1.25rem;
  }

  .breadcrumb-text {
    letter-spacing: 2px;
    font-size: .7rem;
  }

  .section-badge {
    font-size: .7rem;
    padding: .3rem .9rem;
  }

  .hero-banner {
    min-height: 220px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .feature-section .feature-heading {
    font-size: 1.2rem;
  }
}



/* read more */

/* ══════════════════════════════════════════════════════
   APPLICATIONS GRID
   ══════════════════════════════════════════════════════ */
.applications-grid {
  background: var(--gray-50);
}

.app-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.app-card-img {
  height: 200px;
  overflow: hidden;
}

.app-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.app-card:hover .app-card-img img {
  transform: scale(1.08);
}

.app-card-body {
  padding: 1.5rem;
}

.app-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.app-card:hover .app-card-title {
  color: var(--primary);
}

.app-card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.btn-app-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(13, 202, 240, 0.08));
  transition: var(--transition);
}

.btn-app-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: translateX(4px);
}

.btn-app-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.btn-app-link:hover i {
  transform: translateX(3px);
}

/* ──────────────────────────────────────────────────────
   RESPONSIVE - APPLICATIONS GRID
   ────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .app-card-img {
    height: 160px;
  }

  .app-card-body {
    padding: 1.25rem;
  }

  .app-card-title {
    font-size: 1rem;
  }
}

































.rfid-section-alt {
  padding: 100px 0;
  background: #f4f7fb;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Left Text */
.rfid-text-area {
  padding-right: 40px;
}

.rfid-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a56db;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.rfid-lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  color: #0f172a;
  margin-bottom: 30px;
  
}

.rfid-body {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.9;
  /* color: #475569; */
  color: #0f172a;
  margin: 0;
}

.rfid-body {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  color: #0f172a;
  margin-bottom: 30px;
  
}

/* ── Request Information Button ── */
.rfid-btn-wrap {
  margin-top: 35px;
}

.rfid-request-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a56db;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.25);
}

.rfid-request-btn:hover {
  background: #1446b8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.35);
}

.rfid-request-btn:active {
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.rfid-request-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Vertical Steps */
.rfid-steps-vertical {
  position: relative;
  padding-left: 25px;
  border-left: 2px solid #dbeafe;
}

.step-row {
  position: relative;
  margin-bottom: 25px;
}

.step-box {
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.3s ease;
}

.step-box:hover {
  border-color: #1a56db;
  box-shadow: 0 6px 18px rgba(26, 86, 219, 0.08);
  transform: translateX(5px);
}

.step-line {
  position: absolute;
  left: -29px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: #1a56db;
  border-radius: 50%;
}

.last-line {
  background: #1a56db;
}

/* Responsive */
@media (max-width: 991px) {
  .rfid-text-area {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .rfid-section-alt {
    padding: 70px 20px;
  }

  .rfid-lead {
    font-size: 1.15rem;
  }

  .rfid-body {
    font-size: 1rem;
  }

  .rfid-request-btn {
    width: 100%;
    justify-content: center;
  }
}