@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Jost:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --dentist-primary: #1e3a8a;
  --dentist-primary-light: #2563eb;
  --dentist-accent: #2563eb;
  --dentist-accent-hover: #1d4ed8;
  --dentist-teal: #0ea5e9;
  --dentist-dark: #0f172a;
  --dentist-gray-bg: #f8fafc;
  --dentist-soft-blue: #f0f7ff;
  --dentist-card-border: rgba(226, 232, 240, 0.9);
  --dentist-radius: 20px;
  --dentist-shadow: 0 10px 30px -5px rgba(0, 31, 63, 0.07);
  --dentist-shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
  --dentist-transition: all 0.25s ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  color: #334155;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-jost {
  font-family: 'Jost', 'Inter', sans-serif !important;
  font-weight: 700;
  color: var(--dentist-dark);
  letter-spacing: -0.02em;
}

.header-top {
  background: #0b1528 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  font-size: 13.5px;
}

.header-top a {
  color: #e2e8f0 !important;
  transition: var(--dentist-transition);
}

.header-top a:hover {
  color: #38bdf8 !important;
}

.header-top .contact-info li {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.header-top .contact-info li i {
  color: #38bdf8;
}

.styled-icons.icon-dark a {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 50%;
  transition: var(--dentist-transition);
}

.styled-icons.icon-dark a:hover {
  background-color: var(--dentist-accent) !important;
  transform: translateY(-2px);
}

.header-nav,
.header-nav-wrapper {
  background: #ffffff !important;
  box-shadow: none !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.header-nav .header-nav-col-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
}

@media (min-width: 1200px) {
}

.nav-btn-appointment {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: var(--dentist-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  white-space: nowrap;
}

.nav-btn-appointment:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (max-width: 1199px) {

  .tm-container-1300px #wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }

  .header-nav .header-nav-col-row>.col-auto:last-child {
    display: none !important;
  }

  .header-nav-clone-col-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
}

.hero-slide-item {
  position: relative;
  width: 100%;
  height: 900px;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-slide-item {
    height: 700px;
  }
}

@media (max-width: 768px) {
  .hero-slide-item {
    height: 640px;
  }
}

@media (max-width: 480px) {
  .hero-slide-item {
    height: 600px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 10, 22, 0.17);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.hero-subtitle {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  color: #fff;
  font-size: 75px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title .text-theme-colored2 {
  color: #38bdf8 !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 50px;
  }



  .hero-subtitle {
    font-size: 18px;
    text-align: center;
  }

  .hero-content {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 40px;
  }
}

.hero-btn {
  font-size: 16px;
  padding: 12px 30px;
  font-weight: 600;
}

.header-nav .header-nav-col-row {
  flex-wrap: wrap !important;
}
}

@media (max-width: 991px) {
  .dentist4-features-row {
    margin-top: 20px;
  }

  .dentist4-feature-card {
    margin-bottom: 16px;
  }

  .section-title-main {
    font-size: 26px;
  }

  .dentist4-cta-phone {
    font-size: 24px;
  }

  .before-after-img-container {
    height: 280px;
  }

  .before-after-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title-main {
    font-size: 22px;
  }

  .dentist4-stat-number {
    font-size: 32px;
  }

  .before-after-img-container {
    height: 240px;
  }

  .dentist4-cta-phone {
    font-size: 20px;
  }
}

.section-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dentist-accent);
  display: inline-block;
  margin-bottom: 8px;
  background: #eff6ff;
  padding: 4px 14px;
  border-radius: 30px;
}

.section-subtitle.light {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
}

.section-title-main {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dentist-dark);
  margin-bottom: 15px;
}

.section-title-main.light {
  color: #ffffff;
}

.dentist4-features-row {
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.dentist4-feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--dentist-card-border);
  transition: var(--dentist-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dentist4-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -8px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.dentist4-feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
  transition: var(--dentist-transition);
}

.dentist4-feature-card:hover .dentist4-feature-icon {
  transform: scale(1.1);
}

.dentist4-feature-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dentist-dark);
}

.dentist4-feature-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.dentist4-stats-section {
  background-color: #1e3a8a;
  background-image: url('../../dentist4/images/dentist4-section-bg1.webp');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  padding: 90px 0;
  color: #ffffff;
  position: relative;
}

.dentist4-stat-box {
  padding: 16px 0;
}

.dentist4-stat-number {
  font-family: 'Jost', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  margin-bottom: 4px;
}

.dentist4-stat-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.dentist4-stat-desc {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 0;
}

.before-after-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.4);
  max-width: 520px;
  margin: 0 auto;
  user-select: none;
  background: #0f172a;
  touch-action: none;
}

.before-after-img-container {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.before-after-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after-img-container .img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.before-after-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #ffffff;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.before-after-slider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--dentist-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  pointer-events: none;
}

.before-after-badge {
  position: absolute;
  bottom: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 5;
}

.before-after-badge.before {
  left: 14px;
}

.before-after-badge.after {
  right: 14px;
}

.doctor-card-modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--dentist-shadow);
  border: 1px solid var(--dentist-card-border);
  transition: var(--dentist-transition);
  margin-bottom: 24px;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
}

.doctor-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--dentist-shadow-hover);
  border-color: rgba(37, 99, 235, 0.3);
}

.doctor-thumb-modern {
  position: relative;
  overflow: hidden;
  height: 270px;
  background: #f1f5f9;
}

.doctor-thumb-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.doctor-card-modern:hover .doctor-thumb-modern img {
  transform: scale(1.04);
}

.doctor-details-modern {
  padding: 20px 18px 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doctor-details-modern h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dentist-dark);
}

.doctor-details-modern .doctor-spec {
  color: var(--dentist-accent);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.doctor-details-modern .doctor-reg {
  font-size: 12px;
  color: #64748b;
  background: #f8fafc;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

.service-card-modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--dentist-shadow);
  border: 1px solid var(--dentist-card-border);
  transition: var(--dentist-transition);
  margin-bottom: 24px;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--dentist-shadow-hover);
  border-color: rgba(37, 99, 235, 0.3);
}

.service-thumb-modern {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.service-thumb-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-modern:hover .service-thumb-modern img {
  transform: scale(1.05);
}

.service-body-modern {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body-modern h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dentist-dark);
}

.service-body-modern p {
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-link-btn {
  color: var(--dentist-accent);
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--dentist-transition);
}

.service-link-btn:hover {
  color: var(--dentist-accent-hover);
  gap: 10px;
}

.tech-card-modern {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--dentist-shadow);
  border: 1px solid var(--dentist-card-border);
  transition: var(--dentist-transition);
  margin-bottom: 20px;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--dentist-shadow-hover);
  border-color: rgba(37, 99, 235, 0.3);
}

.tech-thumb-modern {
  width: 100%;
  height: 130px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-thumb-modern img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.tech-card-modern:hover .tech-thumb-modern img {
  transform: scale(1.06);
}

.tech-card-modern h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--dentist-dark);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.dentist4-advice-section {
  background-color: #f8fafc;
  background-image: url('../../dentist4/images/dentist4-section-bg9.webp');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding: 90px 0;
}

.advice-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.advice-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}

.advice-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: #e0f2fe;
  color: var(--dentist-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.cat-filter-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.cat-filter-modern a {
  padding: 7px 16px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--dentist-transition);
  cursor: pointer;
}

.cat-filter-modern a:hover,
.cat-filter-modern a.active {
  background: var(--dentist-accent);
  color: #ffffff;
  border-color: var(--dentist-accent);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.testimonial-card-modern {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--dentist-shadow);
  border: 1px solid var(--dentist-card-border);
  margin-bottom: 24px;
  height: calc(100% - 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--dentist-transition);
}

.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--dentist-shadow-hover);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-quote {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dentist-dark);
  margin-bottom: 1px;
}

.testimonial-author-status {
  font-size: 12px;
  color: #94a3b8;
}

.dentist4-cta-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
  padding: 60px 20px;
  color: #ffffff;
  border-radius: 24px;
  margin: 30px 0;
  box-shadow: 0 15px 35px -5px rgba(30, 58, 138, 0.35);
}

.dentist4-cta-phone {
  font-family: 'Jost', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--dentist-transition);
}

.dentist4-cta-phone:hover {
  color: #e0f2fe;
  transform: scale(1.02);
}

.footer-modern {
  background-color: #0b1528 !important;
  color: #94a3b8;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-badge {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.footer-logo-badge img {
  max-height: 42px;
  width: auto;
  display: block;
}

.footer-modern h4.widget-title {
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-modern h4.widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: #38bdf8;
  border-radius: 2px;
}

.footer-modern ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern ul.menu li {
  margin-bottom: 9px;
}

.footer-modern ul.menu li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--dentist-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-modern ul.menu li a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-modern .contact-info li {
  color: #cbd5e1;
  font-size: 13.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-modern .contact-info li i {
  color: #38bdf8;
  margin-top: 3px;
}

.footer-bottom-modern {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 13px;
  color: #64748b;
}

.footer-bottom-modern a {
  color: #94a3b8;
}

.footer-bottom-modern a:hover {
  color: #38bdf8;
}

@media (max-width: 1199px) {
}

@media (max-width: 991px) {
  .dentist4-features-row {
    margin-top: 20px;
  }

  .dentist4-feature-card {
    margin-bottom: 16px;
  }

  .section-title-main {
    font-size: 26px;
  }

  .dentist4-cta-phone {
    font-size: 24px;
  }

  .before-after-img-container {
    height: 280px;
  }

  .before-after-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title-main {
    font-size: 22px;
  }

  .dentist4-stat-number {
    font-size: 32px;
  }

  .before-after-img-container {
    height: 240px;
  }

  .dentist4-cta-phone {
    font-size: 20px;
  }
}

#rev_slider_1_1_wrapper .tparrows,
.tparrows,
.tparrows.zeus {
  background: rgba(15, 23, 42, 0.65) !important;
  border-radius: 50% !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--dentist-transition) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

#rev_slider_1_1_wrapper .tparrows:hover,
.tparrows:hover,
.tparrows.zeus:hover {
  background: #2563eb !important;
  border-color: #ffffff !important;
  transform: scale(1.08) !important;
}

#rev_slider_1_1_wrapper .tparrows:before,
.tparrows:before,
.tparrows.zeus:before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  display: block !important;
  text-align: center !important;
}

#rev_slider_1_1_wrapper .tparrows.tp-leftarrow:before,
.tparrows.tp-leftarrow:before,
.tparrows.zeus.tp-leftarrow:before {
  content: "\f053" !important;
}

#rev_slider_1_1_wrapper .tparrows.tp-rightarrow:before,
.tparrows.tp-rightarrow:before,
.tparrows.zeus.tp-rightarrow:before {
  content: "\f054" !important;
}
/* ==========================================================================
   Bootstrap 5 Navbar Custom Styling (Annapurna Theme)
   ========================================================================== */
.annapurna-navbar {
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.annapurna-navbar .nav-link {
  font-family: 'Jost', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  color: #334155 !important;
  padding: 24px 14px !important;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap !important;
}

.annapurna-navbar .nav-link:hover,
.annapurna-navbar .nav-link.active {
  color: #2563eb !important;
}

/* Hover underline effect */
@media (min-width: 1200px) {
  .annapurna-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: #2563eb;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 3px;
  }
  
  .annapurna-navbar .nav-link:hover::after,
  .annapurna-navbar .nav-link.active::after {
    transform: scaleX(1);
  }
}

/* Custom Hamburger Toggle */
.custom-toggler {
  border: none !important;
  background: #f1f5f9 !important;
  border-radius: 6px !important;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.custom-toggler:focus {
  box-shadow: none !important;
}
.custom-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1e293b;
  margin: 3px 0;
  border-radius: 2px;
}

/* Mobile Adjustments */
@media (max-width: 1199px) {
  .annapurna-navbar .nav-link {
    padding: 12px 20px !important;
    border-bottom: 1px solid #f1f5f9;
  }
  .annapurna-navbar .nav-link:hover,
  .annapurna-navbar .nav-link.active {
    background: #f8fafc;
  }
}

/* ==========================================================================
   Fix missing LightGallery Icons by replacing with FontAwesome
   ========================================================================== */
.lg-icon,
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-toolbar .lg-close,
.lg-toolbar .lg-download,
.lg-autoplay-button,
#lg-zoom-in,
#lg-zoom-out,
#lg-actual-size,
.lg-fullscreen,
#lg-share,
.lg-toogle-thumb {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

#lg-share-facebook .lg-icon,
#lg-share-twitter .lg-icon,
#lg-share-googleplus .lg-icon,
#lg-share-pinterest .lg-icon {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

.lg-actions .lg-next:before { content: "\f054" !important; }
.lg-actions .lg-prev:after { content: "\f053" !important; }
.lg-toolbar .lg-close:after { content: "\f00d" !important; }
.lg-toolbar .lg-download:after { content: "\f019" !important; }
.lg-autoplay-button:after { content: "\f04b" !important; }
.lg-show-autoplay .lg-autoplay-button:after { content: "\f04c" !important; }
#lg-zoom-in:after { content: "\f00e" !important; }
#lg-zoom-out:after { content: "\f010" !important; }
#lg-actual-size:after { content: "\f002" !important; }
.lg-fullscreen:after { content: "\f065" !important; }
.lg-fullscreen-on .lg-fullscreen:after { content: "\f066" !important; }
#lg-share:after { content: "\f1e0" !important; }
.lg-toogle-thumb:after { content: "\f00a" !important; }
#lg-share-facebook .lg-icon:after { content: "\f09a" !important; }
#lg-share-twitter .lg-icon:after { content: "\f099" !important; }
#lg-share-googleplus .lg-icon:after { content: "\f0d5" !important; }
#lg-share-pinterest .lg-icon:after { content: "\f0d2" !important; }
