/* ===========================================================
   DAS_NL — Digital Setu / Amended BharatNet Programme
   Custom stylesheet (prefix: das_nl_)
=========================================================== */

:root {
  --das_nl-navy: #0b1c48;
  --das_nl-navy-deep: #060f2e;
  --das_nl-blue: #1b5fe8;
  --das_nl-blue-light: #e8f1ff;
  --das_nl-orange: #FE7009;
  --das_nl-orange-dark: #d96b25;
  --das_nl-green: #1f9d6b;
  --das_nl-pink: #c23a78;
  --das_nl-bg-light: #f5fbff;
  --das_nl-text-dark: #0b1c48;
  --das_nl-text-muted: #6b7589;
  --das_nl-border: #e7ebf3;
  --das_nl-radius: 14px;
  --das_nl-font-display: 'Poppins', sans-serif;
  --das_nl-font-body: 'Hind', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--das_nl-font-body);
  color: var(--das_nl-text-dark);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

ul.das_nl_nav_list,
.das_nl_footer_col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============ TOP BAR ============ */
.das_nl_topbar {
  background: #000;
  color: #fff;
  font-size: .72rem;
}

.das_nl_topbar_inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 24px;
}

.das_nl_topbar_left {
  display: flex;
  gap: 18px;
}

.das_nl_gov_label {
  opacity: .9;
  letter-spacing: .2px;
}

.das_nl_topbar_right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.das_nl_skip_link {
  color: #fff;
  opacity: .85;
}

.das_nl_lang_select {
  display: flex;
  align-items: center;
  gap: 5px;
}

.das_nl_chev {
  font-size: .6rem;
}

.das_nl_font_size {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
  border-radius: 3px;
  font-size: .7rem;
  cursor: pointer;
}

.das_nl_font_active {
  background: #fff;
  color: #000;
  font-weight: 700;
}

.das_nl_accessibility_icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
}

/* ============ HEADER ============ */
.das_nl_header {
  background: #F8F8F8;
  border-bottom: 1px solid var(--das_nl-border);
}

.das_nl_header_inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}

.das_nl_brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

.das_nl_brand a {
  width: 70%;
  position: relative;
}

.das_nl_logo_abp {
  height: 42px;
}


.das_nl_logo_dbn {
  height: auto;
  width: 100%;
  margin-left: 8px;
}

.das_nl_brand_text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.das_nl_brand_title {
  font-family: var(--das_nl-font-display);
  font-weight: 800;
  font-size: .92rem;
  color: var(--das_nl-navy);
  letter-spacing: .2px;
}

.das_nl_brand_hindi {
  font-size: .72rem;
  color: var(--das_nl-orange-dark);
  font-weight: 600;
  margin-top: 2px;
}

.das_nl_nav_list {
  display: flex;
  gap: 28px;
  font-size: .92rem;
  font-weight: 500;
}

.das_nl_nav_list a {
  color: #333;
  position: relative;
  padding-bottom: 4px;
  padding-right: 10px;
  border-right: 1px solid #dedede;
  white-space: nowrap;
}

.das_nl_nav_list a.active,
.das_nl_nav_list a:hover {
  color: var(--das_nl-blue);
}

.das_nl_nav_list a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--das_nl-blue);
  border-radius: 2px;
}

/* ============ WHAT'S NEW TICKER ============ */
.das_nl_ticker_wrap {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #cfe0ff, #e8f1ff);
  height: 38px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  user-select: none;
}

/* Label badge */
.das_nl_ticker_label {
  flex-shrink: 0;
  background: var(--das_nl-navy);
  color: #fff;
  font-family: var(--das_nl-font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  z-index: 2;
}

.das_nl_ticker_label i {
  color: var(--das_nl-orange);
  font-size: .65rem;
}

/* Stage — the visible window */
.das_nl_ticker_stage {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 60px,
      #000 calc(100% - 60px),
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0%,
      #000 60px,
      #000 calc(100% - 60px),
      transparent 100%);
}

/* Track — the scrolling strip */
.das_nl_ticker_track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  padding-left: 20px;
  /* JS drives the transform; no CSS animation here */
}

/* Individual news items */
.das_nl_ticker_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 500;
  color: #1f2c52;
  padding: 0 50px 0 0;
  cursor: pointer;
  transition: color .2s;
}

.das_nl_ticker_item:hover {
  color: var(--das_nl-blue);
}

.das_nl_tick_dot {
  color: var(--das_nl-orange);
  font-size: .45rem;
  flex-shrink: 0;
}

/* Controls */
.das_nl_ticker_controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 10px;
  height: 100%;
  border-left: 1px solid rgba(100, 130, 200, .25);
}

.das_nl_tc_btn {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: rgba(11, 28, 72, .1);
  color: var(--das_nl-navy);
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.das_nl_tc_btn:hover {
  background: var(--das_nl-navy);
  color: #fff;
}

.das_nl_tc_pause {
  background: var(--das_nl-orange);
  color: #fff;
}

.das_nl_tc_pause:hover {
  background: var(--das_nl-orange-dark);
  color: #fff;
}

/* ============ HERO ============ */
.das_nl_hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--das_nl-navy-deep);
}

.das_nl_hero_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.das_nl_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 35, .55) 0%, rgba(5, 10, 35, .35) 45%, rgba(5, 10, 35, .75) 100%);
  z-index: 1;
}

.das_nl_hero_content {
  position: absolute;
  z-index: 2;
  top: 50%;
  padding: 90px 20px 60px;
  transform: translate(-50%, -50%);
  left: 50%;
}

.das_nl_hero_title {
  font-family: var(--das_nl-font-display);
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 14px;
}

.das_nl_hero_subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.das_nl_hero_hindi_orange {
  color: var(--das_nl-orange);
}

.das_nl_hero_hindi_green {
  color: #4ee08a;
  margin-left: 8px;
}

/* ============ HERO CAROUSEL OVERRIDES ============ */

/* Carousel sits behind everything */
.das_nl_hero_carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Each slide fills full hero */
.das_nl_hero_slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.das_nl_hero_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Owl internal wrappers must be full height */
.das_nl_hero_carousel .owl-stage-outer,
.das_nl_hero_carousel .owl-stage,
.das_nl_hero_carousel .owl-item {
  height: 100%;
}

/* Overlay and content always on top */
.das_nl_hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(5, 10, 35, 0.55) 0%,
      rgba(5, 10, 35, 0.35) 45%,
      rgba(5, 10, 35, 0.75) 100%);
  pointer-events: none;
}


.das_nl_scroll_down {
  z-index: 2;
}

/* Custom dots — sits above overlay */
.das_nl_hero_carousel .owl-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.das_nl_hero_carousel .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  display: block;
  transition: all 0.3s ease;
  margin: 0;
}

.das_nl_hero_carousel .owl-dot.active span {
  background: var(--das_nl-orange);
  width: 28px;
  border-radius: 5px;
}


.das_nl_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 30px;
  transition: all .2s ease;
  border: none;
}

.das_nl_btn_orange {
  background: linear-gradient(90deg, var(--das_nl-orange), var(--das_nl-orange-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(238, 129, 54, .35);
}

.das_nl_btn_orange:hover {
  transform: translateY(-2px);
  color: #fff;
}

.das_nl_scroll_down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: .75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .9;
}

.das_nl_scroll_arrow {
  animation: das_nl_bounce 1.6s infinite;
}

@keyframes das_nl_bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ============ SECTION COMMON ============ */
section {
  padding: 50px 0;
}

.das_nl_eyebrow {
  display: inline-block;
  background: var(--das_nl-blue-light);
  color: var(--das_nl-blue);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.das_nl_eyebrow_orange {
  background: #fdeee0;
  color: var(--das_nl-orange-dark);
}

.das_nl_section_title {
  font-family: var(--das_nl-font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--das_nl-navy);
  margin-bottom: 14px;
}

.das_nl_orange_text {
  color: var(--das_nl-orange-dark);
}

.das_nl_blue_text {
  color: var(--das_nl-blue);
}

.das_nl_section_subtitle {
  color: var(--das_nl-text-muted);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 50px;
}

/* ============ SERVICES ============ */
.das_nl_services {
  background: var(--das_nl-bg-light);
}

.das_nl_service_cards {
  row-gap: 28px;
}

.das_nl_card {
  overflow: hidden;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border-radius: 20px;
  border: 1px solid #C1C1C1;
  background: #FAFAFA;
  box-shadow: 3px 14px 24px 0 rgba(0, 0, 0, 0.13);
  padding: 8px;
}

.das_nl_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 28, 72, .14);
}

.das_nl_card_img {
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
}

.das_nl_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.das_nl_card_body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.das_nl_card_icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
  margin-top: -44px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
  border: 3px solid #fff;
}

.das_nl_icon_blue {
  background: #1b8ef0;
}

.das_nl_icon_green {
  background: #1f9d6b;
}

.das_nl_icon_pink {
  background: var(--das_nl-pink);
}

.das_nl_card_title {
  font-family: var(--das_nl-font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--das_nl-navy);
}

.das_nl_card_text {
  color: var(--das_nl-text-muted);
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.das_nl_btn_card {
  align-self: flex-start;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: .85rem;
  font-weight: 600;
}

.das_nl_btn_card_solid {
  background: linear-gradient(90deg, var(--das_nl-blue), #3a3fb0);
  color: #fff;
}

.das_nl_btn_card_outline {
  background: #fdf3f2;
  border: 1px solid #f1d8d2;
  color: var(--das_nl-navy);
}

.das_nl_btn_card_outline:hover {
  background: #f6e3df;
  color: var(--das_nl-navy);
}

.das_nl_btn_card_solid:hover {
  color: #fff;
  opacity: .92;
}

/* ============ HOW IT WORKS ============ */
.das_nl_howitworks {
  background: #fff;
}

.das_nl_steps_row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 30px;
  flex-wrap: wrap;
}

.das_nl_step {
  width: 200px;
  text-align: center;
  padding: 0 14px;
}

.das_nl_step h4 {
  font-family: var(--das_nl-font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--das_nl-navy);
  margin: 16px 0 8px;
}

.das_nl_step p {
  color: var(--das_nl-text-muted);
  font-size: .85rem;
  line-height: 1.5;
}

.das_nl_step_icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto;
}

.das_nl_step_icon_blue {
  background: linear-gradient(135deg, #3a59d6, #1b2c80);
  color: #fff;
  box-shadow: 0 8px 20px rgba(27, 44, 128, .3);
}

.das_nl_step_icon_outline {
  background: #fff;
  border: 1.5px solid var(--das_nl-border);
  color: var(--das_nl-blue);
  box-shadow: 0 4px 14px rgba(11, 28, 72, .06);
}

.das_nl_step_connector {
  width: 60px;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, #cfd6e6 0 6px, transparent 6px 12px);
  margin-top: 28px;
}

@media (max-width:991px) {
  .das_nl_step_connector {
    display: none;
  }
}

/* ============ ABOUT ============ */
.das_nl_about {
  background: #fff;
}

.das_nl_about_img_wrap {
  position: relative;
  max-width: 460px;
}

.das_nl_about_img_main {
  width: 100%;
  border-radius: var(--das_nl-radius);
  display: block;
  box-shadow: 0 16px 40px rgba(11, 28, 72, .15);
}

.das_nl_about_badge {
  position: absolute;
  top: 18px;
  right: -18px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 26px rgba(11, 28, 72, .18);
  text-align: left;
}

.das_nl_badge_num {
  display: block;
  font-family: var(--das_nl-font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--das_nl-orange-dark);
}

.das_nl_badge_label {
  font-size: .72rem;
  color: var(--das_nl-text-muted);
  display: block;
  max-width: 120px;
}

.das_nl_about_thumb {
  position: absolute;
  bottom: -26px;
  left: -26px;
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(11, 28, 72, .2);
}

.das_nl_about_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.das_nl_about_text_col {
  padding-left: 50px;
}

.das_nl_about_title {
  line-height: 1.25;
}

.das_nl_about_p {
  color: var(--das_nl-text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.das_nl_check_list {
  margin-top: 22px;
}

.das_nl_check_list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--das_nl-text-dark);
  margin-bottom: 12px;
  line-height: 1.5;
}

.das_nl_check_list i {
  color: var(--das_nl-green);
  margin-top: 3px;
}

@media (max-width:991px) {
  .das_nl_about_text_col {
    padding-left: 30px;
    margin-top: 70px;
  }
}

/* ============ MISSION (DARK) ============ */
.das_nl_mission {
  position: relative;
  background: linear-gradient(135deg, var(--das_nl-navy) 0%, #142769 100%);
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.das_nl_mission_title {
  font-family: var(--das_nl-font-display);
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.das_nl_mission_subtitle {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #c4cce6;
  font-size: .95rem;
  line-height: 1.6;
}

.das_nl_mission_decor {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .5);
  font-size: 1.2rem;
}

.das_nl_decor1 {
  top: 20%;
  left: 8%;
}

.das_nl_decor2 {
  top: 14%;
  right: 10%;
  background: rgba(194, 58, 120, .18);
  color: #e695bd;
}

.das_nl_decor3 {
  bottom: 16%;
  right: 14%;
  background: rgba(102, 80, 200, .2);
  color: #b6a4f0;
}

.das_nl_decor4 {
  bottom: 18%;
  left: 10%;
  background: rgba(27, 142, 240, .18);
  color: #7ec2f8;
}

/* ============ FAQ ============ */
.das_nl_faq {
  background: var(--das_nl-bg-light);
}

.das_nl_accordion_wrap {
  max-width: 820px;
  margin: 0 auto;
}

.das_nl_faq_item {
  margin-bottom: 14px;
}

.das_nl_faq_btn {
  background: #fff;
  border: 1px solid var(--das_nl-border);
  border-radius: 12px !important;
  font-family: var(--das_nl-font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--das_nl-navy);
  padding: 18px 22px;
  box-shadow: none !important;
}

.das_nl_faq_btn:not(.collapsed) {
  background: #fff;
  color: var(--das_nl-blue);
}

.das_nl_faq_btn::after {
  filter: invert(20%) sepia(70%) saturate(900%) hue-rotate(200deg);
}

.das_nl_faq_body {
  background: #fff;
  border: 1px solid var(--das_nl-border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  color: var(--das_nl-text-muted);
  font-size: .9rem;
  line-height: 1.65;
  padding: 0 22px 20px;
  margin-top: -2px;
}

/* ============ FOOTER ============ */
.das_nl_footer {
  background: var(--das_nl-navy-deep);
  color: #aab4d4;
  padding-top: 20px;
  padding-bottom: 20px;
}

.das_nl_footer_logo {
  height: 42px;
  margin-bottom: 14px;
}

.das_nl_footer_tagline {
  color: #fff;
  font-style: italic;
  font-size: .88rem;
  margin-bottom: 10px;
}

.das_nl_footer_sub {
  font-size: .82rem;
  line-height: 1.6;
}

.das_nl_footer_col h5 {
  color: #fff;
  font-family: var(--das_nl-font-display);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 16px;
}

.das_nl_footer_col ul li {
  margin-bottom: 10px;
}

.das_nl_footer_col ul li a {
  color: #aab4d4;
  font-size: .85rem;
}

.das_nl_footer_col ul li a:hover {
  color: #fff;
}

.das_nl_footer_contact_row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-size: .85rem;
  color: #c7cfe8;
  margin-top: 36px;
}

.das_nl_footer_contact_row i {
  color: var(--das_nl-orange);
  margin-right: 8px;
}

.das_nl_footer_hr {
  border-color: rgba(255, 255, 255, .1);
  margin: 26px 0 18px;
}

.das_nl_footer_bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  padding-bottom: 24px;
  gap: 14px;
}

.das_nl_footer_social {
  display: flex;
  gap: 14px;
}

.das_nl_footer_social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.das_nl_footer_social a:hover {
  background: var(--das_nl-orange);
}

.das_nl_footer_credit {
  color: #8a93b5;
}

.badge-beta {
  position: absolute;
  background-color: #ff4757;
  top: -5px;
  right: -40px;
  color: #ffffff;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  font-family: sans-serif;
  animation: blinker 1.5s linear infinite;
}

.ftth-hero {
  background: linear-gradient(135deg, #19337d, #2d61ff);
  color: #fff;
  padding: 20px 0;
  position: relative;
  overflow: hidden
}

.ftth-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('{{asset(' assets/images/container-bg.png') }}') center/cover no-repeat;
  opacity: .35
}

.text-op {
  color: #BEDBFF;
}

.text-s {
  color: #45556C;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 21.328px;
}

.page-breadcrumb-bar {
  padding: 10px;
  padding-left: 0 !important;
}

.bharatnet-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-family: sans-serif;
}

/* Home Link styling */
.bharatnet-page-breadcrumb .breadcrumb-item a {
  color: #a5c2f4;
  /* Light faded blue color */
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Optional: Add home icon via CSS if not using an icon library */
.bharatnet-page-breadcrumb .breadcrumb-item a::before {
  content: "⌂";
  font-size: 20px;
  line-height: 1;
}

/* Separator styling (the > arrow) */
.bharatnet-page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  color: #a5c2f4;
  padding-right: 8px;
}

/* Active page styling */
.bharatnet-page-breadcrumb .breadcrumb-item.active {
  color: #ffffff;
  /* Bright white color */
  font-size: 14px;
  font-weight: 600;
  /* Bold text */
}


@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.das_nl_app_section {
  position: relative;
  width: 100%;
  min-height: 334px;
  overflow: hidden;
  background-image: url("../images/app-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.das_nl_app_container {
  position: relative;
  z-index: 2;
  min-height: 334px;
}

.das_nl_app_content {
  padding: 48px 0 45px 0;
}

.das_nl_app_title {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.das_nl_app_title span {
  display: block;
  color: #ff7b0b;
  margin-top: 2px;
}

.das_nl_app_description {
  max-width: 600px;
  margin: 27px 0 23px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.das_nl_app_store {
  display: flex;
  align-items: center;
  gap: 14px;
}

.das_nl_app_store a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.das_nl_app_store a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.das_nl_google_play {
  width: auto;
  height: 30px;
  border: 1px solid #777;
  border-radius: 5px;
  background: #050505;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
}

.das_nl_google_play_icon {
  font-size: 16px;
  margin-right: 5px;
  color: #34a853;
}

.das_nl_google_play_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.das_nl_google_play_text small {
  font-size: 5px;
  line-height: 1;
  color: #fff;
}

.das_nl_google_play_text strong {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}

.das_nl_app_store_btn {
  width: auto;
  height: 30px;
  border: 1px solid #777;
  border-radius: 5px;
  background: #050505;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
}

.das_nl_app_store_icon {
  font-size: 17px;
  margin-right: 6px;
  color: #fff;
}

.das_nl_app_store_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.das_nl_app_store_text small {
  font-size: 5px;
  line-height: 1;
  color: #fff;
}

.das_nl_app_store_text strong {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}

.das_nl_umang_row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 7px 20px;
  background: #fff;
}

.das_nl_umang_title {
  color: #111;
  font-size: 18px;
  line-height: 1.1;
  text-align: right;
}

.das_nl_umang_stores {
  display: flex;
  gap: 14px;
}

.das_nl_umang_store img {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .das_nl_umang_row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .das_nl_umang_stores {
    gap: 8px;
  }

  .das_nl_umang_store img {
    height: 44px;
  }
}

@media (min-width: 1200px) {
  .das_nl_app_content {
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .das_nl_app_section {
    min-height: 320px;
    background-position: center;
  }

  .das_nl_app_content {
    padding: 42px 25px;
  }

  .das_nl_app_title {
    font-size: 30px;
  }

  .das_nl_app_description {
    font-size: 18px;
    max-width: 500px;
  }
}

@media (max-width: 767.98px) {
  .das_nl_app_section {
    min-height: 400px;
    background-position: 62% center;
    background-image: url("../images/app-banner-mob.png");

  }

  .das_nl_app_content {
    padding: 35px 20px;
  }

  .das_nl_app_title {
    font-size: 28px;
  }

  .das_nl_app_description {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.45;
  }

  .das_nl_app_store {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .das_nl_app_section {
    min-height: 420px;
    background-position: 67% center;
  }

  .das_nl_app_title {
    font-size: 25px;
  }

  .das_nl_app_description {
    font-size: 15px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width:767px) {
  .das_nl_header_inner {
    flex-direction: column;
    gap: 14px;
  }

  .das_nl_mission_decor {
    display: none;
  }

  .das_nl_nav_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: .82rem;
  }

  .das_nl_hero_title {
    font-size: 1.9rem;
  }

  .das_nl_hero_subtitle {
    font-size: 1.25rem;
  }

  .das_nl_section_title {
    font-size: 1.6rem;
  }

  section {
    padding: 56px 0;
  }

  .das_nl_about_thumb {
    display: none;
  }

  .das_nl_topbar_left {
    display: none;
  }
}