
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black-color: #000000;
  --light-color: #ffffff;
  --blue-color: #c73436;
  --bg-gray: rgba(217, 217, 217, 0.207);
  --gray-color: #d8d0d0;
  --figtree-font-family: "Figtree", sans-serif;
  --poppins-font-family: "Poppins", sans-serif;
}

/* ── Base ── */
body {
  font-family: var(--figtree-font-family);
  background-color: var(--black-color);
}

.container {
  width: 80%;
  margin: auto;
}

.section {
  padding: 50px 0;
}

p {
  font-size: 20px;
  color: var(--gray-color);
  font-family: var(--figtree-font-family);
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  background-color: var(--black-color);
  padding: 15px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo1 img,
.logo2 img {
  width: 180px;
  height: auto;
}

.menu-bar {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu-list a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--light-color);
}

.menu-list a:hover,
.menu-list a.active-nav {
  color: var(--blue-color);
}

.hand-burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-color);
  z-index: 1100;
  background: none;
  border: none;
  padding: 8px;
}

.close-btn {
  font-size: 28px;
  color: var(--light-color);
  text-align: right;
  cursor: pointer;
  margin-bottom: 20px;
  display: none;
  background: none;
  border: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════════════
   HERO TOP
══════════════════════════════════════ */
.hero-top {
  background-color: var(--black-color);
  width: 100%;
  height: 80vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.dec-video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* FIX #6: Video poster + play button */
.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  height: 100%;
  /* FIX #10: preserve aspect ratio, no stretching */
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.vid-sec2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-top h1 {
  font-size: 72px;
  font-family: var(--figtree-font-family);
  color: var(--light-color);
  font-weight: 400;
  margin-bottom: 10px;
}

/* FIX #14: hero h2 used as sub-heading (only one H1 allowed) */
.hero-sub {
  font-size: 36px;
  font-family: var(--figtree-font-family);
  color: var(--blue-color);
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-top p {
  padding-bottom: 40px;
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-color);
}

.hero-top .container {
  display: flex;
}

.left {
  width: 100%;
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  width: 100%;
  font-family: var(--figtree-font-family);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px 0;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  margin: 60px auto;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 50px;
}

.hero h2 {
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--light-color);
}

.hero p {
  width: 70%;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.outer-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.outline-box {
  color: var(--light-color);
  font-weight: 700;
  padding: 10px 20px;
  border: 2px dotted var(--blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ══════════════════════════════════════
   FIX #4: LITE YOUTUBE EMBED
══════════════════════════════════════ */
.yt-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.yt-lite {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}

.yt-lite img {
  width: 100%;
  height: 100%;
  /* FIX #10: correct aspect ratio */
  object-fit: cover;
  transition: opacity 0.3s;
}

.yt-lite:hover img {
  opacity: 0.8;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.yt-lite-sm {
  max-width: 560px;
}

.yt-wrapper-sm {
  margin-bottom: 30px;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
h2 {
  margin-bottom: 1rem;
}

h2 span {
  color: var(--blue-color);
}

h3 {
  color: var(--light-color);
}

.section h2 {
  font-size: 36px;
  color: var(--blue-color);
  margin-bottom: 20px;
}

/* ── Section New1 (Why Choose / Innovation) ── */
.section-new1 {
  width: 100%;
}

.section-new1 h4,
.section-new1 h2 {
  text-align: center;
  color: var(--blue-color);
  font-size: 48px;
  padding-bottom: 20px;
  margin: 0;
}

.sec2-boxis .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px auto;
}

.sec2-box {
  width: 300px;
  padding: 20px;
  color: var(--light-color);
  border-radius: 10px;
  background-color: var(--bg-gray);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.sec2-box-d {
  min-height: 220px;
}

.sec2-box h3 {
  color: var(--blue-color);
  margin-bottom: 15px;
}

.sec2-box p {
  width: 100%;
  text-align: start;
  color: var(--light-color);
  font-size: 17px;
}

/* ── Section 5 (two-col image + text) ── */
.section5 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  place-items: center;
}

.section5 h2 {
  font-size: 42px;
  color: var(--blue-color);
}

.section5-img {
  width: 100%;
}

/* FIX #10: images keep natural aspect ratio */
.section5-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hidden-img {
  display: none;
}

.hidden-img img {
  width: 100%;
  height: auto;
}

.section5 ul {
  padding-top: 30px;
  margin-left: 30px;
  padding-bottom: 40px;
}

.section5 ul li {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--light-color);
}

/* ── Section 7 (stats) ── */
.section7 .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  place-items: center;
}

.section7 h2 {
  color: var(--light-color);
  font-size: 40px;
}

.section7-img p {
  color: var(--gray-color);
}

.section7-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sec7-box {
  border-left: 2px solid var(--light-color);
  margin-bottom: 15px;
  padding-left: 15px;
}

/* FIX #13: high-contrast text for stats */
.sec7-box h4 {
  font-size: 48px;
  color: var(--blue-color);
  font-weight: 800;
}

.sec7-box h5 {
  font-size: 18px;
  color: var(--light-color);
  font-weight: 500;
}

/* ── Workflow images ── */
.workflow-img2 {
  width: 80%;
  margin: auto;
}

.workflow-img2 img {
  width: 100%;
  height: auto;
}

/* ── Section 9 (GPS) ── */
.section9 {
  background: var(--black-color);
  text-align: center;
}

.section9 h2 {
  color: var(--blue-color);
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: var(--poppins-font-family);
  font-weight: 700;
  padding: 20px 0;
}

.gps-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--light-color);
  padding-bottom: 30px;
}

.gps-img img {
  width: 60%;
  height: auto;
  margin: auto;
}

.workflow-imgs {
  background-color: var(--light-color);
}

.workflow-imgs img {
  width: 60%;
  height: auto;
}

.white-bg,
.white-bg img {
  background-color: var(--light-color);
}

/* FIX #12: Reduced animation (lighter on main thread) */
.fade-in {
  animation: navidentToggle 3s infinite;
}

@keyframes navidentToggle {
  0%, 40%  { opacity: 1; visibility: visible; }
  50%, 90% { opacity: 0; visibility: hidden; }
  100%     { opacity: 1; visibility: visible; }
}

/* ══════════════════════════════════════
   CENTER TITLE (NaVoice)
══════════════════════════════════════ */
.center-title {
  background: radial-gradient(circle, #1e1e1e 0%, #000 100%);
  color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: start;
  margin-bottom: 30px;
  padding: 40px 20px;
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-direction: column;
  width: 80%;
  margin: auto;
  padding: 40px;
}

.content h2 {
  font-style: italic;
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--light-color);
}

.content h3 {
  font-size: 1.4em;
  color: var(--blue-color);
}

.outer-con {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.fet-box {
  width: 320px;
  padding: 20px 30px;
  border-radius: 15px;
  /* FIX #13: visible border for contrast */
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.content p,
.content ul li {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: start;
  color: var(--light-color);
}

/* ══════════════════════════════════════
   HOW NAVIDENT WORKS
══════════════════════════════════════ */
.navipremium-section {
  background: var(--black-color);
  padding: 80px 20px;
  color: var(--light-color);
  font-family: var(--poppins-font-family);
}

.navipremium-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.navipremium-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue-color);
}

.navipremium-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.navipremium-step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  /* FIX #12: use will-change only on hover to save GPU */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navipremium-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.navipremium-number {
  display: inline-block;
  background: var(--blue-color);
  color: var(--light-color);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-bottom: 15px;
}

.navipremium-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--light-color);
}

.navipremium-text {
  font-size: 1rem;
  color: var(--gray-color);
}

.navipremium-result {
  margin-top: 50px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(144, 144, 144, 0.2);
  display: inline-block;
}

.navipremium-result-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
}

.navipremium-result-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 8px;
  /* FIX #13: white for high contrast */
  color: var(--light-color);
}

/* ══════════════════════════════════════
   WHY CLINICS LOVE
══════════════════════════════════════ */
.cliniclove-section {
  background: var(--black-color);
  padding: 80px 20px;
  font-family: var(--poppins-font-family);
}

.cliniclove-container {
  max-width: 1100px;
  margin: auto;
}

.cliniclove-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--blue-color);
}

.cliniclove-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cliniclove-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cliniclove-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.cliniclove-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cliniclove-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  /* FIX #13: dark on white — high contrast */
  color: #111111;
}

.cliniclove-text {
  font-size: 1rem;
  /* FIX #13: dark enough on white bg */
  color: #333333;
  line-height: 1.5;
}

/* ── CTA ── */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 20px;
}

.cta-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: var(--light-color);
}

.btn-con {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 28px;
  width: fit-content;
  text-decoration: none;
  font-family: var(--figtree-font-family);
  font-weight: 600;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.85;
}

.white-btn {
  background-color: var(--light-color);
  color: var(--blue-color);
}

.color-btn {
  background-color: var(--blue-color);
  color: var(--light-color);
}

/* ══════════════════════════════════════
   INDICATIONS
══════════════════════════════════════ */
.naviindications-section {
  background: var(--black-color);
  padding: 80px 25px;
  font-family: var(--poppins-font-family);
}

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

.naviindications-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--blue-color);
}

.naviindications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.naviindications-col {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.naviindications-col:hover {
  transform: translateY(-8px);
}

.naviindications-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--blue-color);
  border-left: 4px solid #f83842;
  padding-left: 10px;
}

.naviindications-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.naviindications-list li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  color: var(--light-color);
}

.naviindications-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-size: 0.9rem;
}

/* ══════════════════════════════════════
   NAVIDENT REVOLUTION
══════════════════════════════════════ */
.navident-revolution {
  color: var(--light-color);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.navident-revolution-container {
  display: flex;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.navident-revolution-img {
  flex: 1;
  min-width: 280px;
}

/* FIX #10: image natural ratio */
.navident-revolution-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

.navident-revolution-content {
  flex: 1;
  min-width: 300px;
}

.navident-revolution-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--blue-color);
}

.navident-revolution-content ul {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.7;
}

.navident-revolution-content ul li {
  margin-bottom: 12px;
  color: var(--gray-color);
  font-size: 16px;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.fqa {
  margin-bottom: 40px;
  padding-top: 20px;
}

.fqa h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--poppins-font-family);
  font-size: 2rem;
  color: var(--blue-color);
}

.faq-item {
  color: var(--light-color);
  border-bottom: 1px solid #555;
  padding: 15px 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* FIX #13: white text on black — high contrast */
  color: var(--light-color);
}

.faq-question:hover {
  color: var(--blue-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 10px;
  line-height: 1.7;
  color: var(--gray-color);
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.icon {
  transition: transform 0.3s ease;
  font-size: 1.4rem;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* ══════════════════════════════════════
   SLIDER
══════════════════════════════════════ */
.slider-container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0 auto 40px;
  /* ensure children measure correctly */
  display: block;
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  will-change: transform;
  /* prevent collapse when CSS loads late */
  min-height: 280px;
}

.slide {
  /* Each slide = 1/3 of container on desktop */
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--light-color);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.prev { left: 10px; }
.next { right: 10px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  color: var(--light-color);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.foot-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.foot-img img {
  width: 180px;
  height: auto;
}

.foot-text {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  flex-direction: column;
  font-style: normal;
  gap: 4px;
}

.foot-text h2 {
  color: var(--blue-color);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.phone img {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

.foot-text div {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.foot-text i {
  width: 18px;
  text-align: center;
}

footer a {
  color: var(--blue-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════
   FLOAT WHATSAPP
   FIX #15: Has aria-label on the <a> tag
══════════════════════════════════════ */
.float-con {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 20px;
  bottom: 40px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.float-con:hover {
  transform: scale(1.1);
}

.float i {
  font-size: 22px;
  color: var(--light-color);
}

/* ══════════════════════════════════════
   MISC HELPERS
══════════════════════════════════════ */
.red-text,
.red-bg {
  color: var(--blue-color);
}

.blue-text {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--blue-color);
}

/* FIX #13: big-title contrast */
.big-title {
  font-size: 30px;
  color: var(--blue-color);
  margin-bottom: 10px;
}

.strong-para {
  padding-top: 10px;
  font-size: 17px;
  color: var(--gray-color);
}

/* ══════════════════════════════════════
   BODY SCROLL LOCK
══════════════════════════════════════ */
body.no-scroll {
  overflow: hidden;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .hand-burger {
    display: block;
  }

  .menu-bar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 1000;
  }

  .menu-bar.active {
    left: 0;
  }

  .close-btn {
    display: block;
  }

  footer .container {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 575px)
══════════════════════════════════════ */
@media screen and (max-width: 575px) {
  .container {
    width: 92%;
  }

  /* Hero */
  .hero-top {
    grid-template-columns: 1fr;
    padding-top: 30px;
    text-align: center;
    height: auto;
    gap: 0;
  }

  .hero-top h1 {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 20px;
  }

  .hero-top p {
    font-size: 16px;
    padding-bottom: 20px;
  }

  .logo1 img,
  .logo2 img {
    width: 110px;
  }

  /* Sections */
  .section5 .container,
  .section7 .container {
    grid-template-columns: 1fr;
  }

  .section5 h2,
  .section h2 {
    font-size: 26px;
  }

  .s-5img {
    display: none;
  }

  .hidden-img {
    display: block;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero p {
    width: 100%;
  }

  /* General text */
  p {
    font-size: 15px;
  }

  /* Stats */
  .sec7-box h4 {
    font-size: 32px;
  }

  .sec7-box h5 {
    font-size: 15px;
  }

  /* Sec2 boxes */
  .sec2-box-d {
    min-height: auto;
  }

  .section-new1 h4,
  .section-new1 h2,
  .cliniclove-title {
    font-size: 28px;
  }

  .big-title {
    font-size: 22px;
  }

  /* Slider */
  .slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

  /* YouTube */
  .yt-lite,
  .yt-lite-sm {
    max-width: 100%;
  }

  /* Footer */
  .foot-text {
    font-size: 15px;
  }

  /* Workflow */
  .workflow-img2 {
    width: 100%;
    margin: 20px auto;
  }

  .workflow-imgs img {
    width: 90%;
  }

  .gps-img img {
    width: 90%;
  }

  /* Outline boxes */
  .outer-box {
    flex-direction: column;
  }

  .outline-box {
    width: 100%;
    text-align: center;
  }

  /* Navident revolution */
  .navident-revolution-content {
    min-width: unset;
  }

  .navident-revolution-img {
    min-width: unset;
  }

  .navident-revolution-content h2 {
    font-size: 20px;
  }

  /* How Navident Works */
  .navipremium-title {
    font-size: 1.8rem;
  }

  .naviindications-title {
    font-size: 1.8rem;
  }

  /* Content area */
  .content {
    width: 100%;
    padding: 20px;
  }

  .fet-box {
    width: 100%;
    padding: 16px 20px;
  }

  .strong-para {
    font-size: 15px;
  }

  /* Btn */
  .btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}