/* ============================================
   PREFERRED DENTAL IMPLANT CENTER - Main Styles
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #60b8ff;
  --blue-hover: #3aa0f0;
  --navy: #153869;
  --dark: #1e293b;
  --white: #ffffff;
  --light-gray: #f3f3f3;
  --footer-dark: #141a26;
  --font: "Mulish", sans-serif;
  --container: min(1690px, 100%);
  --section-px: 186px;
  --section-py: 80px;
  --nav-height: 98px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.section-tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.38px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag.center {
  text-align: center;
}

.section-title {
  font-size: 41.6px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.center {
  text-align: center;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  color: #475569;
}

.section-desc.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  border-radius: 100px;
  padding: 14px 32px;
  transition: background 0.25s;
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--white);
  border-radius: 100px;
  padding: 13px 32px;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-quote {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  border-radius: 100px;
  padding: 16px 40px;
  transition: background 0.25s;
}

.btn-quote:hover {
  background: var(--blue-hover);
}

/* ============================================
   HEADER / NAV
   ============================================ */
#mainNav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: box-shadow 0.3s;
}

#mainNav.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img {
  height: auto;
  width: 100%;
  max-width: 250px;
}

#navLinks {
  display: flex;
  align-items: center;
  gap: 0;
  margin: auto;
}

#navLinks li {
  position: relative;
}

#navLinks>li>a {
  display: block;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
  transition: color 0.2s;
}

#navLinks>li>a:hover {
  color: var(--blue);
}

/* Dropdown arrow */
.nav-has-dropdown>a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--dark);
  border-bottom: 1.5px solid var(--dark);
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  transition: transform 0.2s;
}

/* Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  padding: 8px 0;
  z-index: 100;
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14.5px;
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background: #f1f5f9;
  color: var(--blue);
}

/* Nav right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 24px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.nav-cta {
  display: inline-block;
  background: var(--blue);
  color: #edf5ff;
  font-weight: 800;
  font-size: 16px;
  border-radius: 100px;
  padding: 13px 32px;
  white-space: nowrap;
  transition: background 0.25s;
}

.nav-cta:hover {
  background: var(--blue-hover);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

@media only screen and (min-width: 1301px) and (max-width: 1600px) {
  .nav-phone {
    display: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg iframe,
.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.57);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--section-px);
  max-width: var(--container);
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: normal;
  margin-bottom: 20px;
}

.hero-title .gradient {
  background: linear-gradient(90deg, #60b8ff 0%, #56b6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.hero-stat-number sub {
  font-size: 18px;
  vertical-align: baseline;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ============================================
   MARQUEE / TICKER
   ============================================ */
.marquee {
  background: var(--navy);
  height: 52px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.marquee-item::before {
  content: "\2022";
  color: var(--blue);
  font-size: 18px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   DIFFERENCE SECTION
   ============================================ */
.difference {
  background: var(--white);
  padding: var(--section-py) var(--section-px);
}

.diff-header {
  text-align: center;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.diff-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.diff-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.diff-card-body {
  padding: 28px 24px;
}

.diff-card-body h3 {
  font-size: 17.9px;
  font-weight: 800;
  margin-bottom: 10px;
}

.diff-card-body p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 16px;
}

.diff-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.diff-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions {
  background: var(--light-gray);
  padding: var(--section-py) var(--section-px);
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.solutions-header .section-title {
  max-width: 500px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--white);
  border-radius: 10px;
  padding: 27px 29px;
  transition: box-shadow 0.25s;
}

.solution-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.solution-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.solution-card h3 {
  font-size: 17.9px;
  font-weight: 800;
  margin-bottom: 8px;
}

.solution-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.solution-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.solution-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   DOCTOR SECTION
   ============================================ */
.doctor-section {
  background: var(--navy);
  padding: var(--section-py) var(--section-px);
  color: var(--white);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.doctor-img-wrap {
  position: relative;
}

.doctor-img-wrap img {
  width: auto;
  border-radius: 12px;
}

.doctor-info .section-tag {
  color: var(--blue);
}

.doctor-info .section-title {
  color: var(--white);
}

.doctor-info .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.doctor-credentials {
  margin-top: 24px;
  margin-bottom: 32px;
}

.doctor-credentials li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  line-height: 1.5;
}

.doctor-credentials li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
  padding: var(--section-py) var(--section-px);
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 800;
  font-size: 14px;
  border-bottom: 2px solid #e2e8f0;
}

.comparison-table thead th:first-child {
  width: 20%;
}

.comparison-table thead th:nth-child(2) {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px 8px 0 0;
}

.comparison-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.comparison-table tbody td:nth-child(2) {
  background: #f0f7ff;
}

.table-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
}

.table-cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 18px;
}

.table-detail {
  font-size: 13.5px;
  color: #64748b;
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--light-gray);
  padding: var(--section-py) var(--section-px);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.review-slider {
  position: relative;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.review-card {
  flex-shrink: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #facc15;
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-quote {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-quote.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.read-more-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  margin-top: 8px;
  padding: 0;
      max-width: fit-content;
    margin-left: auto;
}

.review-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: none ;
}

.review-author {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.review-prev,
.review-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--dark);
  transition: border-color 0.2s;
}

.review-prev:hover,
.review-next:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.review-prev:disabled,
.review-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: background 0.2s;
}

.review-dot.active {
  background: var(--blue);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-py) var(--section-px);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  background: #f3f3f3;
  border: none;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: #94a3b8;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: "\2212";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 20px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  background: #fbfbfb;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  background: var(--navy);
  padding: var(--section-py) var(--section-px);
  color: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header .section-title {
  color: var(--white);
}

.pricing-header .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  color: var(--dark);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-head {
  padding: 28px 28px 16px;
}

.pricing-card-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--blue);
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-card-price span {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
}

.pricing-card-subtitle {
  font-size: 13.5px;
  color: #64748b;
  margin-top: 4px;
}

.pricing-card-body {
  padding: 0 28px 28px;
  flex: 1;
}

.pricing-card-body ul {
  list-style: none;
}

.pricing-card-body li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.5;
}

.pricing-card-body li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.pricing-card-footer {
  padding: 0 28px 28px;
}

.pricing-card-footer .btn-quote {
  display: block;
  text-align: center;
  width: 100%;
}

.pricing-card.featured .pricing-card-footer .btn-quote {
  background: var(--navy);
  color: var(--white);
}

.pricing-note {
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 32px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--section-py) var(--section-px);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-content .section-title {
  color: var(--white);
}

.cta-content .section-desc {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--footer-dark);
  color: var(--white);
  padding: 45px 40px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1508px;
  width: 100%;
  margin: auto;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-address {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 16px;
  color: #fff;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--blue);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1508px;
  width: 100%;
  margin: auto;
}

.footer-copy {
  font-size: 15px;
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-brand img {
  /*filter: invert(1);*/
  width: 100%;
  max-width: 300px;
  margin-bottom: 30px;
}

footer a:hover {
  color: var(--blue);
}

/* ============================================
   RESPONSIVE - TABLET (<=1300px)
   ============================================ */
@media (max-width: 1300px) {
  :root {
    --section-px: 60px;
  }

  #navLinks {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    margin-left: 0;
  }

  .nav-right {
    margin-left: auto;
    margin-right: 16px;
  }

  #navLinks li {
    width: 100%;
  }

  /* Mobile nav open */
  #mainNav.menu-open #navLinks {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /*min-height: calc(100vh - var(--nav-height));*/
    z-index: 999;
    background: var(--white);
    padding: 20px 24px 150px;
    overflow-y: auto;
    gap: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    height: 100vh;
  }

  #mainNav.menu-open #navLinks>li>a {
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Mobile dropdown */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    background: transparent !important;
    min-width: unset !important;
  }

  .nav-has-dropdown.dropdown-open .nav-dropdown {
    max-height: 800px;
    padding: 4px 0 8px;
  }

  .nav-dropdown li a {
    padding: 10px 0 10px 16px !important;
    font-size: 15px !important;
    border-bottom: 1px solid #f1f5f9;
    display: block;
  }

  .nav-has-dropdown>a::after {
    margin-left: auto;
    flex-shrink: 0;
  }

  /* Hamburger animation */
  #mainNav.menu-open .nav-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #mainNav.menu-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  #mainNav.menu-open .nav-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 34px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE - MOBILE (<=991px)
   ============================================ */

@media (max-width: 991px) {
  .nav-right a.nav-phone {
    display: none;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (<=768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-px: 20px;
    --section-py: 56px;
    --nav-height: 72px;
  }

  .nav-right {
    display: none;
  }

  .nav-inner {
    gap: 10px;
    justify-content: space-between;
  }

  #mainNav {
    padding: 0 25px;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 0;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .card-grid,
  .solution-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .solutions-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-divider {
    flex-direction: column;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
  }

  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    text-align: center;
  }

  footer {
    padding: 45px 25px 30px;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (<=480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    text-align: center;
    width: 100%;
  }

  .section-title {
    font-size: 24px;
  }

  .pricing-card-price {
    font-size: 28px;
  }
}

/* Body lock for mobile nav */
body.nav-open {
  overflow: hidden;
}

/* ============================================
   Privacy Policy / Terms of Service Pages
   ============================================ */

.page-hero {
  background: #3f7aaa;
  padding: 80px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

.page-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-breadcrumb {
  font-size: .74rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: .04em;
}

.page-breadcrumb a {
  color: #fff;
}

.page-breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.2rem);
  color: #fff;
  line-height: normal;
  margin-bottom: .85rem;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  margin-bottom: 10px;
}

section.legal-section {
  padding: 80px 40px;
}

.legal-content {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

.legal-content p {
  width: 100%;
  max-width: 100%;
}

.legal-content h2.section-title {
  margin: 40px 0 20px;
}

.legal-content p a {
  color: #3f7aaa;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  section.legal-section {
    padding: 50px 25px;
  }

}

/* ============================================
   Privacy Policy / Terms of Service Pages
   ============================================ */
/* ============================================
   Subpage — Full Redesign
   ============================================ */

/* --- Hero --- */
.sp-hero {
  position: relative;
  background: var(--navy);
  padding: 110px 40px 90px;
  text-align: center;
  overflow: hidden;
}

.sp-hero-bg {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.sp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.sp-breadcrumb {
  font-size: 14px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
}

.sp-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.sp-breadcrumb a:hover {
  color: #fff;
}

.sp-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 30px;
}

.sp-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 36px;
  line-height: 1.6;
}

.sp-hero .btn-primary {
  font-size: 15px;
  padding: 15px 38px;
}

/* --- Section wrapper --- */
.sp-section {
  padding: 90px 40px;
}

.sp-section.sp-gray {
  background: #f3f3f3;
}

.sp-container {
  max-width: 1550px;
  margin: 0 auto;
}

.sp-container.narrow {
  max-width: 820px;
}

/* --- Labels & headings --- */
.sp-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.sp-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.sp-title.center {
  text-align: center;
}

.sp-text {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

.sp-text:last-child {
  margin-bottom: 0;
}

/* --- Split image + text --- */
.sp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sp-split.reverse .sp-split-img {
  order: 2;
}

.sp-split.reverse .sp-split-text {
  order: 1;
}

.sp-split-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .13);
}

.sp-split-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* --- Checklist --- */
.sp-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 8px;
}

.sp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 12px;
}

.sp-checklist li::before {
  content: '';
  display: inline-flex;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/13px no-repeat;
  margin-top: 2px;
}

/* --- Feature cards --- */
.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.sp-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .07);
  border-top: 4px solid var(--blue);
}

.sp-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.sp-card p {
  font-size: 15px;
  line-height: 1.72;
  color: #475569;
}

/* --- Two-col text --- */
.sp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.sp-two-col-item h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

/* --- Numbered steps --- */
.sp-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.sp-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.sp-gray .sp-step {
  background: #fff;
}

.sp-step-num {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-step-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.sp-step-body p {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}

/* --- Highlight strip --- */
.sp-highlight-strip {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}

.sp-highlight-strip h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.sp-highlight-strip p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
  max-width: 540px;
}

.sp-highlight-strip .btn-primary {
  white-space: nowrap;
}

/* --- CTA section --- */
.sp-cta {
  position: relative;
  background: var(--navy);
  padding: 110px 40px;
  text-align: center;
  overflow: hidden;
}

.sp-cta-bg {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sp-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}

.sp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.sp-cta h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.sp-cta p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
}

.sp-cta .btn-primary {
  font-size: 15px;
  padding: 16px 42px;
}

.simple_full_text_details.para_txt.htag_h3_font.page-section-inner p:not(:last-child) {
  margin-bottom: 16px;
}

.simple_full_text_details.para_txt.htag_h3_font.page-section-inner h2 {
  margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sp-split {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .sp-section {
    padding: 60px 24px;
  }

  .sp-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sp-split.reverse .sp-split-img {
    order: 0;
  }

  .sp-split.reverse .sp-split-text {
    order: 0;
  }

  .sp-split-img img {
    height: auto;
  }

  .sp-card-grid {
    grid-template-columns: 1fr;
  }

  .sp-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sp-steps {
    grid-template-columns: 1fr;
  }

  .sp-highlight-strip {
    flex-direction: column;
    padding: 36px 28px;
  }

  .sp-cta {
    padding: 70px 24px;
  }

  .sp-hero {
    padding: 80px 23px 70px;
  }
}

section.sp-section.about-intro {
  text-align: center;
}

.hover_txt_flip {
  color: #fff;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.hover_txt_flip:hover {
  color: #60b8ff !important;
}

.hover_txt_flip:hover:before {
  width: 100%;
  -webkit-transition: all .15s cubic-bezier(.4, 0, 1, 1);
  transition: all .15s cubic-bezier(.4, 0, 1, 1);
}

.hover_txt_flip:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  background: #60b8ff;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

ul.sp-checklist strong {
  max-width: max-content;
  width: 100%;
}

.faq.sp-section.sp-gray .faq-answer-inner {
  padding: 20px 20px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  background: #e3e3e3;
}

.faq.sp-section.sp-gray .faq-question {
  padding: 20px 20px;
  background: #fff;
}

/* ---------------------------------two-side-------------------------------- */
.simple_full_content_inner_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 15px
}

.simple_full_content_inner_row .simple_full_text_col {
  padding: 80px 30px;
  width: 100%;
}

.simple_full_text_module {
  max-width: 650px;
  width: 100%;
  margin: auto;
}


.simple_full_content_inner_row .simple_full_text_col:first-child,
.comparison.alt {
  background-color: #f3f3f3;
}

.simple_full_content_inner_row .simple_full_text_col:last-child {
  background-color: #d6e6f5;
}

.simple_full_content_inner_row .simple_full_text_col .simple_full_text_details h3 {
  margin-bottom: 20px;
  font-size: 25px;
}

.alt .simple_full_content_inner_row .simple_full_text_col:first-child {
  background-color: #fff !important;
}

.alt {
  background-color: #ffff;
}

@media only screen and (max-width: 991px) {
  .hero {
    flex-wrap: wrap;
    height: auto;
  }

  .simple_full_content_inner_row {
    grid-template-columns: 1fr;
  }

  .simple_full_text_module {
    max-width: 100%;
  }

  .hero-bg {
    position: unset;
  }

  .hero-content {
    background-color: #000000;
    padding: 40px;
    max-width: 100% !important;
    width: 100%;
  }

  .simple_full_content_inner_row .simple_full_text_col {
    padding: 50px 30px;
  }

  .split-sec {
    padding: 50px 20px;
  }

}

@media only screen and (max-width: 575px) {

  .hero-content {

    padding: 40px 20px;

  }
}

/* ------------------------------------------------------------------- */

/* Section Styling */

.sp-gray {
  background-color: #f7f7f7;
}

.sp_table_sec_container {
  max-width: 1000px;
  margin: 0 auto;
}

.sp_table_sec_container  .sp-title.center {
  text-align: center;
}

/* Table Wrapper (Responsive Scroll) */
.sp-table-responsive {
  width: 100%;
  overflow-x: auto;
  /* enables horizontal scrolling */
  -webkit-overflow-scrolling: touch;
}

/* Table Styling */
.sp-comparison-table {
  width: 100%;
  min-width: 700px;
  /* ensures scroll appears on small screens */
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* Table Header */
.sp-comparison-table th {
  background-color: #153869;
  color: #fff;
  text-align: left;
  padding: 14px;
  font-size: 15px;
}

/* Table Cells */
.sp-comparison-table td {
  padding: 14px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
  vertical-align: top;
}

/* Row Striping */
.sp-comparison-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* Hover Effect */
.sp-comparison-table tr:hover {
  background-color: #f1f7ff;
}

/* Strong text emphasis */
.sp-comparison-table strong {
  font-weight: 700;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
 
  .sp-comparison-table th,
  .sp-comparison-table td {
    padding: 12px;
    font-size: 13px;
  }
}

/* =========================================================
   CONTACT MAIN SECTION (two-column: info cards + form)
   ========================================================= */
.contact-main-sec {
  padding: 80px 20px;
  background: #f8fafc;
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

/* --- Left: stacked info cards --- */
.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 28px 24px;
  border-top: 4px solid #153869;
  box-shadow: 0 2px 12px rgba(21, 56, 105, 0.07);
  transition: box-shadow 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: 0 6px 24px rgba(21, 56, 105, 0.12);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: #153869;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-info-icon i {
  font-size: 22px;
  color: #fff;
}

.contact-info-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 900;
  color: #153869;
  margin: 0 0 10px;
}

.contact-info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #1e293b;
  margin: 0 0 6px;
}

.contact-info-card p:last-child {
  margin-bottom: 0;
}

.contact-info-card a {
  color: #153869;
  font-weight: 700;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-hours-note {
  font-size: 13px !important;
  color: #64748b !important;
  font-style: italic;
  margin-top: 8px !important;
}

/* --- Right: form card --- */
.label_group {
  display: flex;
  gap: 16px;
}

.contact-form-col {}

.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 40px 36px;
  box-shadow: 0 2px 16px rgba(21, 56, 105, 0.08);
}

.contact-form-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 900;
  color: #153869;
  margin: 0 0 28px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.contact-form input,
.contact-form textarea {
  background: #f1f1ee;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;
  color: #1e293b;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #153869;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn-hero-solid {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  display: block;
}

.label_group .form-group {
  width: 50%;
}

@media (max-width: 960px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .label_group {
    flex-wrap: wrap;
  }

  .label_group .form-group {
    width: 100%;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

.contact-form {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 40px;
}

.contact-form .disclaimer-msg.form-checkbox label {
  color: #777;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;

}

.contact-form .disclaimer-msg:not(:last-child) {
  margin-bottom: 10px;
}

.contact-form .disclaimer-msg p {
  font-size: 14px;
}

.contact-form .disclaimer-msg.form-checkbox {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.contact-form .disclaimer-msg.form-checkbox input {
  position: relative;
  top: 3px;
  width: auto;
}

.contact-info-group .contact-info-card {
  background-color: #fff;
}

.contact-form {
  background: #ffffff;

}

h2.revealed {
  margin-bottom: 20px;
  color: #153869;
}

/* ====================================================
   404 PAGE
   ==================================================== */
.error-404-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(160deg, #f0fbfa 0%, #fff 60%);
}
.error-404-inner {
    text-align: center;
    max-width: 580px;
}
.error-404-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 8px;
    animation: floatTooth 3s ease-in-out infinite;
}
@keyframes floatTooth {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.error-404-code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--dark-teal), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #1e293b;
    background-clip: text;
    margin: 0 0 8px;
}
.error-404-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    color: var(--dark-teal);
    margin-bottom: 16px;
}
.error-404-msg {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.error-404-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-outline-teal {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.btn-outline-teal:hover {
    background: var(--teal);
    color: #fff;
}
.error-404-links {
    border-top: 1px solid #e5f5f4;
    padding-top: 24px;
}
.error-404-links p {
    color: #777;
    font-size: .9rem;
    margin-bottom: 12px;
}
.error-404-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}
.error-404-links ul li a {
    color: var(--teal);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: color .2s;
}
.error-404-links ul li a:hover {
    color: var(--dark-teal);
}
 
.page-hero-inner h1 {
    color: #fff;
}

h1.hero-tag {
       color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
        font-weight: 400;
}


/* ====================================================
   Site-Map PAGE
==================================================== */

.site-map-menu-blk {
    padding: 80px 24px;
}

.site-map-menu {
    margin: 0;
    padding: 0;
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
}

.site_map_menu_blk_container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

.site-map-menu li a {
    text-align: left;
    color: #1e3a5f;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    width: 100%;
    max-width: 100%;
}

.site-map-menu li a:hover {
    color: var(--teal);
}

.site-map-menu li {
    list-style: none;
    padding-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    max-width: fit-content;
}

.site-map-menu ul.sitemap-sub-menu {
    padding-top: 0;
    padding-left: 30px;
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
}

.site-map-menu li>ul.sitemap-sub-menu {
    padding-top: 15px!important;
}

.site-map-menu li a:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(/assets/images/list_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 5px;
}

a.service-btn {
    color: #1e3a5f;
    font-size: 17px;
    display: block;
    margin-top: 10px;
}

a.service-btn:hover {
    color: #60b8ff;
}
   .site-map-menu li a:hover {
    color: #60b8ff;
}


.check-icon path {
    stroke: #fff !important;
    stroke-width: 1 !important;
}

.check-icon svg {
    stroke: #fff !important;
    stroke-width: 1 !important;
}


@media (max-width: 991px) {
    .site-map-menu-blk {
        padding: 50px 24px !important;
    }
    
    .footer-divider {
        justify-content: center;
    }
}


/*----------------------*/

@media (min-width: 1881px) {
    .diff-card-body p {
         height: 72px; 
    }
}

/*----------Map Section--------------*/

.map_sec_module {
  line-height: 0;
}

@media only screen and (max-width: 991px) {
  .map_sec_module iframe {
    height: 350px;
  }
}

/*----------Map Section--------------*/