/* ============================================================
DIGITAL STARTUP INDIA — Design System
Brand: #25245e (dark blue) · #006fae (medium) · #38b6ff (light)
Glassmorphism · Soft UI · Gradient sections · Dark mode ready
============================================================ */

:root {
  --dsi-dark-bg: #040339;
  --dsi-primary: #25245e;
  --dsi-secondary: #006fae;
  --dsi-accent: #38b6ff;
  --dsi-bg: #f4f7fb;
  --dsi-surface: #ffffff;
  --dsi-surface-glass: rgba(255, 255, 255, 0.72);
  --dsi-text: #1c2333;
  --dsi-muted: #5b6478;
  --dsi-border: rgba(37, 36, 94, 0.1);
  --dsi-shadow: 0 10px 30px rgba(37, 36, 94, 0.08);
  --dsi-shadow-lg: 0 24px 60px rgba(37, 36, 94, 0.14);
  --dsi-radius: 1.25rem;
  --dsi-blue:#25245e;
  --dsi-gradient: linear-gradient(
    120deg,
    var(--dsi-primary) 0%,
    var(--dsi-secondary) 55%,
    var(--dsi-accent) 120%
    );
}

[data-theme="dark"] {
  --dsi-bg: #101226;
  --dsi-surface: #191b34;
  --dsi-surface-glass: rgba(25, 27, 52, 0.72);
  --dsi-text: #eef1fa;
  --dsi-muted: #a3abc4;
  --dsi-border: rgba(56, 182, 255, 0.14);
  --dsi-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --dsi-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--dsi-bg);
  color: var(--dsi-text);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
.display-3,
.display-4,
.display-5 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
}
.text-accent {
  color: var(--dsi-accent) !important;
}
.text-brand {
  color: var(--dsi-primary) !important;
}
.text-muted,
.text-secondary {
  color: var(--dsi-muted) !important;
}
.small-caps {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2;}

tr:hover {background-color: #ddd;}

th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--dsi-primary);
  color: white;
}

body::-webkit-scrollbar {
  width:5px;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: var(--dsi-dark-bg);
  outline: 1px solid var(--dsi-dark-bg);
}
/* ---------- Buttons ---------- */
.btn-gradient {
  background: var(--dsi-gradient);
  color: #fff;
  border: 0;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 111, 174, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-gradient:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 111, 174, 0.45);
}
.btn-outline-brand {
  border: 1.5px solid var(--dsi-primary);
  color: var(--dsi-primary);
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-outline-brand:hover {
  background: var(--dsi-primary);
  color: #fff;
}
[data-theme="dark"] .btn-outline-brand {
  border-color: var(--dsi-accent);
  color: var(--dsi-accent);
}
[data-theme="dark"] .btn-outline-brand:hover {
  background: var(--dsi-accent);
  color: var(--dsi-primary);
}

/* ---------- Cards ---------- */
.glass-card {
  background: var(--dsi-surface-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--dsi-border);
  border-radius: var(--dsi-radius);
  box-shadow: var(--dsi-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.glass-card.hoverable:hover {
  transform: translateY(-6px);
  box-shadow: var(--dsi-shadow-lg);
}
.soft-card {
  background: var(--dsi-surface);
  border-radius: var(--dsi-radius);
  border: 1px solid var(--dsi-border);
  box-shadow: var(--dsi-shadow);
}
.card-img-round {
  border-radius: var(--dsi-radius) var(--dsi-radius) 0 0;
  object-fit: cover;
}

/* ---------- Sections ---------- */
.section {
  padding:4rem 0;
}
.section-gradient {
  background: var(--dsi-gradient);
  color: #fff;
}
.section-gradient .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}
.section-tint {
  background: linear-gradient(
    180deg,
    rgba(56, 182, 255, 0.07),
    transparent 60%
    );
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  /*background: rgba(56, 182, 255, 0.14);*/
  background: var(--dsi-dark-bg);
  color: var(--bs-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.navbar a.navbar-brand img
{
  height:3.5rem;
}
/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding:1rem 0 1rem 0;
  background: radial-gradient(
    60% 80% at 15% 10%,
    rgba(56, 182, 255, 0.18),
    transparent 60%
    ),
  radial-gradient(
    50% 70% at 88% 15%,
    rgba(0, 111, 174, 0.16),
    transparent 60%
    ),
  var(--dsi-bg);
  overflow: hidden;
}
.hero .floating-card {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}
.hero .floating-card.delay {
  animation-delay: 3s;
}
.hero a strong.d-block{
  color: var(--dsi-primary)
}
.hero a h6{
  color: var(--dsi-primary)
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.hero-avatar-stack img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--dsi-surface);
  margin-left: -12px;
  object-fit: cover;
}
.hero-avatar-stack img:first-child {
  margin-left: 0;
}

/* ---------- Stats ticker ---------- */
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--dsi-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mt-5 {
  margin-top: 2rem !important;
}
.mb-5 {
  margin-bottom:2rem !important;
}

/* ---------- Job / listing cards ---------- */
.job-card .company-logo,
.biz-logo {
  width: 58px;
  height: 58px;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid var(--dsi-border);
  background: var(--dsi-surface);
}
.badge-soft {
  background: rgb(83 192 255);
  color: var(--dsi-primary);
  font-weight:900;
  border-radius: 999px;
  padding: 0.35em 0.85em;
}
[data-theme="dark"] .eyebrow {
  color: var(--dsi-accent);
}

[data-theme="dark"] .badge-soft {
  color: var(--dsi-accent);
}
.badge-verified {
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  border-radius: 999px;
  padding: 0.35em 0.85em;
  font-weight: 600;
}
.badge-premium {
  background: linear-gradient(120deg, #f7b733, #fc4a1a);
  color: #fff;
  border-radius: 999px;
  padding: 0.35em 0.85em;
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.8;
}
.testimonial-img {
  border-radius: var(--dsi-radius);
  object-fit: cover;
  width: 100%;
  height: 320px;
}

/* ---------- Timeline (founder stories) ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--dsi-accent), var(--dsi-primary));
}
.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dsi-accent);
  border: 3px solid var(--dsi-surface);
  box-shadow: 0 0 0 2px var(--dsi-accent);
}

/* ---------- Magazine ---------- */
.magazine-cover {
  /*aspect-ratio: 3/4;*/
  border-radius: var(--dsi-radius);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--dsi-shadow-lg);
  transition: transform 0.3s ease;
}
.magazine-cover:hover {
  transform: rotate(-1.5deg) scale(1.02);
}
.magazine-cover-placeholder {
  aspect-ratio: 3/4;
  border-radius: 1rem;
  width: 100%;
  background: var(--dsi-gradient);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  box-shadow: var(--dsi-shadow-lg);
}

/* ---------- Nav ---------- */
.navbar-dsi {
  background: var(--dsi-surface-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--dsi-border);
  padding: 0!important;
}
.navbar-dsi .nav-link {
  font-weight: 600;
  color: var(--dsi-text);
  border-radius: 0.6rem;
  padding: 0.45rem 0.85rem;
}
.navbar-dsi .nav-link:hover,
.navbar-dsi .nav-link.active {
  color: var(--dsi-secondary);
  background: rgba(56, 182, 255, 0.1);
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  display: none;
}
.sticky-cta.show {
  display: block;
  animation: slideUp 0.4s ease;

}
.sticky-cta.show .btn-gradient
{
  background: #FF5722;
}
@keyframes slideUp {
  from {
    transform: translate(-50%, 30px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* ---------- Skeletons / lazy ---------- */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(120, 130, 160, 0.12) 25%,
    rgba(120, 130, 160, 0.24) 50%,
    rgba(120, 130, 160, 0.12) 75%
    );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 0.75rem;
}
@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s;
}
img[loading="lazy"].loaded,
img[loading="lazy"][data-loaded] {
  opacity: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dsi-dark-bg);
  color: rgba(255, 255, 255, 0.82);
}
.footer a {
  color: rgba(255, 255, 255, 0.72);
}
.footer a:hover {
  color: var(--dsi-accent);
}

/* ---------- Blog prose ---------- */
.prose {
  font-size: 1.06rem;
  line-height: 1.85;
}
.prose h2 {
  margin-top: 2.25rem;
  font-size: 1.5rem;
}
.prose img {
  border-radius: var(--dsi-radius);
}
.prose h3 {
  font-size: 1.2rem;
}
/* ---------- Forms ---------- */
.form-control,
.form-select {
  border-radius: 0.85rem;
  border: 1.5px solid var(--dsi-border);
  background: var(--dsi-surface);
  color: var(--dsi-text);
  padding: 0.65rem 1rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--dsi-accent);
  box-shadow: 0 0 0 0.2rem rgba(56, 182, 255, 0.18);
  background: var(--dsi-surface);
  color: var(--dsi-text);
}
.search-pill {
  border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
form.glass-card.search-pill
{
  background:#fff!important;
}
/* ---------- Admin ---------- */
.admin-body {
  background: var(--dsi-bg);
}
.admin-sidebar {
  width: 264px;
  min-height: 100vh;
  position: fixed;
  inset: 0 auto 0 0;
  background: var(--dsi-primary);
  color: #fff;
  overflow-y: auto;
  z-index: 1030;
  transition: margin-left 0.25s ease;
}
.admin-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.72);
  border-radius: 0.7rem;
  margin: 0.1rem 0.75rem;
  padding: 0.55rem 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: rgba(56, 182, 255, 0.18);
  color: #fff;
}
.admin-sidebar .sidebar-label {
  padding: 1rem 1.6rem 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
.admin-main {
  margin-left: 264px;
  padding: 1.75rem;
  min-height: 100vh;
}
@media (max-width: 991.98px) {
  .admin-sidebar {
    margin-left: -264px;
  }
  .admin-sidebar.open {
    margin-left: 0;
  }
  .admin-main {
    margin-left: 0;
  }
  table{
    font-size: 12px!important;
  }
}
.stat-tile {
  border-left: 4px solid var(--dsi-accent);
}
.table-dsi {
  --bs-table-bg: transparent;
}
.table-dsi th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dsi-muted);
}
.table-dsi td {
  vertical-align: middle;
}

/* ---------- AOS-lite reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
.text-center.mb-5.revealed
{
  margin-bottom: 2rem!important;
}
/* ---------- Accessibility & motion ---------- */
:focus-visible {
  outline: 3px solid var(--dsi-accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
V2 COMPONENTS — ads, categories, listings, galleries, CTA
============================================================ */

/* --- Ad banners --- */
.ad-swiper {
  box-shadow: var(--dsi-shadow);
}
.ad-banner {
  position: relative;
  display: block;
}
.ad-banner img {
  width: 100%;
  height: clamp(200px, 26vw, 380px);
  object-fit: cover;
  display: block;
}
.ad-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(37, 36, 94, 0.88) 0%,
    rgba(37, 36, 94, 0.55) 55%,
    rgba(37, 36, 94, 0.15) 100%
    );
}
.ad-banner-overlay h3 {
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  max-width: 620px;
}
.ad-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.ad-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--dsi-accent);
}

/* --- Category tiles --- */
.category-tile {
  min-height: 150px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-tile:hover {
  transform: translateY(-6px);
}
.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: var(--dsi-gradient);
  box-shadow: 0 8px 20px rgba(0, 111, 174, 0.25);
}

/* --- Listing cards (directory) --- */
.listing-card .listing-cover {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.listing-card .listing-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.listing-card:hover .listing-cover img {
  transform: scale(1.06);
}
.listing-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.listing-logo {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  object-fit: cover;
  /* border: 3px solid var(--dsi-blue); */
  margin-top: -34px;
  position: relative;
  z-index: 2;
  background: var(--dsi-blue);
  box-shadow: var(--dsi-shadow);
}
.social-mini a {
  color: var(--dsi-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.social-mini a:hover {
  color: var(--dsi-accent);
}

/* --- Trusted logos --- */
.logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.trusted-logo {
  height: 84px;
  padding: 12px 18px;
  border-radius: 16px;
  background: var(--dsi-surface-glass);
  border: 1px solid var(--dsi-border);
  overflow: hidden;
}
.trusted-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}
.trusted-logo:hover img {
  transform: scale(1.3);

}

/* --- Newsletter --- */
.newsletter-cta::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -110px;
  top: -140px;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.25),
    transparent 68%
    );
  border-radius: 50%;
}

/* --- Final CTA panel --- */
.cta-panel {
  background: var(--dsi-gradient);
  box-shadow: 0 24px 48px rgba(37, 36, 94, 0.28);
}

/* --- Horizontal story card --- */
.story-h-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  overflow: hidden;
}
.story-h-card .story-media {
  position: relative;
  min-height: 230px;
}
.story-h-card .story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 36, 94, 0.35);
  color: #fff;
  font-size: 2.4rem;
}
@media (max-width: 767.98px) {
  .story-h-card {
    grid-template-columns: 1fr;
  }
}

/* --- Magazine list row --- */
.mag-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}
.mag-row img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--dsi-shadow);
}
@media (max-width: 767.98px) {
  .mag-row {
    grid-template-columns: 1fr;
  }
}
.mag-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.mag-meta div {
  background: rgba(56, 182, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
}

/* --- Gallery lightbox --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(37, 36, 94, 0.85));
  color: #fff;
  font-size: 0.82rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 24, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1080;
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: 0;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}
.lightbox-nav.prev {
  left: 20px;
}
.lightbox-nav.next {
  right: 20px;
}

/* --- Sticky business card (detail sidebar) --- */
.agent-card {
  position: sticky;
  top: 92px;
}
.agent-avatar {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  object-fit: cover;
}

/* --- Workflow / how it works steps --- */
.step-item {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  margin: 0 auto 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  background: var(--dsi-gradient);
  box-shadow: 0 10px 24px rgba(0, 111, 174, 0.28);
}
.step-connector {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--dsi-accent), transparent);
  z-index: -1;
}
.bread-crumb {
  padding: 18px 0;
  height: 60px;
}
@media (max-width: 991.98px) {
  .bread-crumb {
    padding: 10px 0;
    height:30px;
  }
  .step-connector {
    display: none;
  }
  .step-item h6
  {
    font-size: 12px;
    margin:  0 0 4px 0;
  }
  .step-item p
  {
    font-size: 11px;
    text-align: justify;
  }
  .step-num
  {
    display: none;
  }
  .category-tile
  {
    box-shadow:none!important;
  }
  main {
    padding-bottom:20px !important;
  }
}

/* --- Filter sidebar --- */
.filter-sidebar {
  position: sticky;
  top: 92px;
}
.filter-group + .filter-group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--dsi-border);
}

/* --- Feature / amenity grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.feature-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(56, 182, 255, 0.07);
  font-size: 0.9rem;
}
.feature-grid i {
  color: var(--dsi-accent);
}

/* Category ribbon on listing cards */
.listing-cat {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dsi-primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
[data-theme="dark"] .listing-cat {
  background: rgba(20, 20, 42, 0.9);
  color: var(--dsi-accent);
}

/* Detail page section heading with small description */
.sec-head {
  margin-bottom: 1.25rem;
}
.sec-head h5 {
  margin-bottom: 0.25rem;
}
.sec-head p {
  font-size: 0.875rem;
  color: var(--dsi-muted);
  margin-bottom: 0;
}

/* Homepage highlights */
.ticker-wrapper-h {
  display: flex;
  position: relative;
  overflow: hidden;
  background: var(--dsi-gradient);
}

/* .ticker-wrapper-h .heading{
background-color: #1c6547;
color: #fff;
padding: 5px 10px;
flex: 0 0 auto;
z-index: 1000;
}
.ticker-wrapper-h .heading:after{
content: "";
position: absolute;
top: 0;
border-left: 20px solid #1c6547;
border-top: 17px solid transparent;
border-bottom: 15px solid transparent;
} */
.news-ticker-h {
  display: flex;
  margin: 0;
  padding: 0;
  /* padding-left: 90%; */
  z-index: 999;

/* animation-iteration-count: infinite;
animation-timing-function: linear;
animation-name: tic-h;
animation-duration: 70s; */
}
/* .news-ticker-h:hover { 
animation-play-state: paused; 
} */
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 70s linear infinite;
}

.ticker-wrapper-h:hover .ticker-track {
  animation-play-state: paused;
}
.news-ticker-h li {
  display: flex;
  width: 100%;
  align-items: center;
  white-space: nowrap;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 40px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.news-ticker-h li a {
  /* color: #212529; */
  font-weight: 600;
  color: #fff;
}
.news-ticker-h li a:before {
  content: "";
  height: 11px;
  width: 11px;
  display: inline-block;
  background-color: var(--dsi-accent);
  border-radius: 100%;
  position: relative;
  margin-right: 15px;
}

@keyframes tic-h {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* homepage hero sec add slider */
/* Slider */

/*==========================
IMAGE SLIDER
===========================*/

.slideshow-container {
  /*max-width: 270px;*/
  height: 420px;
  border-radius: 20px;
  margin: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  box-sizing: border-box;
}
.slideshow-container.slider-left {
  /*max-width: 300px;*/
  /* height: 455px; */
}
/* .mySlides {
display: none;
width: 100%;
height: 100%;
} */
.mySlides a {
  display: block;
  width: 100%;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mySlides .text {
  color: #449;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
}

.mySlides .numbertext {
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.myslideh.dots {
  position: absolute;
  left: 50%;
  bottom: 15px;
  z-index: 9;
  transform: translateX(-50%);
  text-align: center;
}

.myslideh .dot {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.myslideh .dot.active {
  background: #2e2e64;
}

/* .mySlides.fade{
animation:fade 2.5s ease-in-out;
}

@keyframes fade{

0%{
opacity:0;
}

100%{
opacity:1;
}

} */
.mySlides {
  position: absolute;

  inset: 0;

  opacity: 0;

  visibility: hidden;

  z-index: 1;

  transition: opacity 1.4s ease, transform 1.4s ease;

  transform: translateY(20px);
}

.mySlides.active {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);

  z-index: 2;
}
.slider-right .mySlides {
  transition: opacity 2s ease-in-out;
}
.slider-left .mySlides {
  transition: opacity 1.5s ease-in-out;
}

.slideshow-container .prev,
.slideshow-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  user-select: none;
}

.slideshow-container .prev {
  left: 10px;
}

.slideshow-container .next {
  right: 10px;
}

@media (max-width: 600px) {
  .slideshow-container {
    height: auto;
  }
}
/* stats hero sec */
.hero-stat-item {
  min-width: 120px;
}
.hero-stat-item .stat-number {
  line-height: 1;
  margin-bottom: 4px;
}
/* ===== COUNTER SECTION ===== */
.hero-counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.hero-counters .counter-item {
  text-align: center;
}
.hero-counters .counter-number {
  font-size: 34px;
  font-weight: 700;
  background: var(--dsi-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: block;
}
.hero-counters .counter-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dsi-muted);
  margin-top: 6px;
  display: block;
}
/* ===== END COUNTER SECTION ===== */

/* resources */
.resource {
  color: var(--dsi-text);
  background: var(--dsi-surface);
  border-radius: var(--dsi-radius);
  border: 1px solid var(--dsi-border);
}
.resource .text-muted {
  color: var(--dsi-muted) !important;
}

/*TOPBAR */
.topbar {
  background: var(--dsi-dark-bg);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
}

.topbar .container {
  margin: auto;
  padding-right:3%;
  padding-left:3%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .container {
  padding-right:3%;
  padding-left:3%;
  max-width: 100%;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 14px;
}

.topbar-left a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  transition: 0.3s;
}

.topbar-left a:hover {
  opacity: 0.85;
}

.topbar-left i {
  font-size: 15px;
}

.divider {
  opacity: 0.6;
}

.topbar-right {
  gap: 18px;
}

.topbar-right a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.topbar-right a:hover {
  transform: translateY(-3px);
  color: #f4f4f4;
}
@media (max-width: 768px) {
  .topbar {
    padding: 10px 0;
  }
  .topbar-left {
    gap: 2px;
  }
  .topbar .container{
    padding-right: 2%;
    padding-left: 2%;
  }
  .topbar-right
  {
    gap:7px!important;
  }
  .topbar-right a
  {
    font-size:12px!important;
  }
  .topbar-left a
  {
    font-size: 9px;
  }
  .topbar-left a i
  {
    display: none;
  }
  .topbar-right {
    justify-content: center;
    gap: 15px;
  }
  .navbar a.navbar-brand img {
    height: 40px !important;
  }
  .display-4 {
    font-size: 1.5rem!important;
  }
  .mt-3 {
    margin-top: 0.5rem !important;
  }
  .ad-banner img {
    /*height:clamp(107px, 26vw, 150px)!important;*/
    height: auto;
  }
  .subscribe-sec .col-lg-7
  {
    text-align: center!important;
  }
  .basic-ctg
  {
    font-size: 12px!important
  }
  .section h2
  {
    font-size: 20px!important
  }
}
/* event style */
.event-st {
  display: flex;
  align-items: center;
}
.event-st p.small {
  margin-bottom: 0 !important;
}
.info-evt .listing-badges {
  position: static;
}
.info-evt,
.seat-evt {
  display: flex;
  flex-direction: column;
}
.event-st.listing-card .listing-cover {
  width: 192px;
}
.betr.date-evt {
  flex: 0%;
  text-align: center;
  border-right: 2px solid #ddd;
}
.betr.date-evt .h4 {
  font-size: 2.4rem;
}
.info-evt {
  flex: 45%;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 30px;
}
.info-evt .spl-tags .small {
  font-size: 13px;
}
.info-evt h6 {
  font-size: 24px;
  margin: 16px 0 12px !important;
  font-weight: 600;
}
.seat-evt {
  flex: 4%;
  margin-right: 44px;
}

/* founder */
.found .text-muted {
  color: var(--dsi-muted) !important;
}
.found-img-box {
  width: 100%;
  max-width: 100%;
  border-radius: var(--dsi-radius);
  overflow: hidden;
  margin-bottom: 20px;
  height: 150px;
}
.found-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* jobs card */
.job-crd .listing-cover img {
  border-radius: var(--dsi-radius);
}
.job-crd.listing-card:hover .listing-cover img {
  transform: none;
}
.job-crd .listing-badges {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 82%;
  align-items: center;
}
.job-crd .badge-soft,
.job-crd .badge-verified {
  padding: 4px 7px;
  font-size: 13px;
}
.job-crd .comp-name .listing-logo {
  margin-top: 0 !important;
}
.job-crd .comp-det {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.job-crd .job-tile {
  font-size: 1.2rem;
  font-weight: 600;
  margin:1rem 0;
}
/* job detail */
.job-det nav {
  max-width: fit-content;
}
.job-det .breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  width: auto;
  padding: 4px 15px;
}
/* testimonial slider */
.testimonial-img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
}
.quote-icn {
  font-size: 60px;
  line-height: 0;
  color: rgba(56, 182, 255, 0.14);
}
.main-tile {
  margin: 0px 0 30px;
  color: var(--dsi-accent);
}
.img-box {
  max-width: 100%;
  overflow: hidden;
  /* height: 400px; */
  border-radius: 20px;
  margin-top: -22px;
}
.img-part {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg {
  background-color: var(--dsi-surface);
}
/* categories */
.category-tile {
  min-height: auto;
  display: flex !important;
  flex-direction: row !important;
  gap: 20px;
  box-shadow: none;
  border: 1px solid var(--dsi-border);
  padding:0.5rem 1rem!important;
  box-shadow: var(--dsi-shadow);
}
.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: none;
  background: rgba(56, 182, 255, 0.14);
  color: var(--dsi-secondary);
}
.basic-ctg {
  text-align: left;
  flex: 1;
}

/* courses */
.course-pr {
  border-top: 1px solid #ddd;
  padding-top: 12px;
}

/* blogs */
.blog-crd {
  position: relative;
  overflow: hidden;
}
.blog-contet {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}
.blog-crd::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.85) 35%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
    );
  z-index: 1;
}
.blog-contet .text-muted {
  color: rgb(221 215 215 / 75%) !important;
}
.blog-contet .badge-soft {
  background: var(--dsi-secondary);
  color: #fff;
}
@media (max-width: 767px) {
  .blog-crd .listing-cover.betr-style {
    height: 160px !important;
  }
  .cat-blogs .blog-contet p{
    display: none !important;
  }
  .cat-blogs .blog-contet h6{
    font-size: 14px;
  }
  .cat-blogs .blog-contet{
    bottom: 8px;
  }
  .cat-blogs h2{
    font-size: 18px !important;
  }
  .evt-pg h5, .gallery-evt h2{
    font-size: 16px !important;
    margin: 0 !important;
  }
  .evt-det-card h5{
    font-size: 1rem;
  }
  .evt-det-card p{
    font-size: 13px !important;
  }
  .evt-det-card .col-lg-8{
    margin-top: 0;
  }
  .footer{
    margin-top: 0 !important;
  }
  .evt-card-info{
    margin-top: -10px;
    padding: 0 !important;
  }
  .evt-card-info .h2{
    font-size: 17px;
    line-height: 1.4;
  }
  .evt-card-info .h3{
    font-size: 15px;
  }
  .evt-card-info .d-flex.flex-wrap.gap-4{
    font-size: 13px !important;
    gap: 5px !important;
    margin: 5px 0 10px;
  }
}
/* accordion */
.accordion-button,
.accordion-button:not(.collapsed) {
  color: var(--bs-heading-color);
}
.navbar-dsi {
  z-index: 1024;
}
/* business detail */
.btn-found {
  background-color: var(--dsi-accent);
  color: var(--dsi-surface);
}
.btn-cor {
  background-color: var(--dsi-primary);
  color: #fff;
}
.btn-grp .btn {
  flex: 47%;
}
.text-muted .btn-outline-brand {
  color: var(--dsi-muted) !important;
  border: 1px solid var(--dsi-muted);
}
.text-muted .btn-outline-brand:hover {
  color: #fff !important;
}
.btn-found:hover {
  background-color: var(--bs-btn-bg);
  color: var(--dsi-accent);
  border-color: var(--dsi-accent);
}
.btn-cor:hover {
  background-color: var(--bs-btn-bg);
  color: var(--dsi-primary);
  border-color: var(--dsi-primary);
}
.business-tax-card {
  background: var(--dsi-bg);
  border-radius: 18px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 5px solid var(--dsi-secondary);
  margin-top: 30px;
  gap: 20px;
}
.event-st.listing-card .listing-cover {
  width: 285px;
}
.course-img {
  height:450px;
  background-position: center;
  background-size: cover;
}
.business-tax-card .tax-left {
  display: flex;
  flex-direction: column;
}

.business-tax-card .tax-label {
  font-size: 11px;
  letter-spacing: 1px;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.business-tax-card .tax-left h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--dsi-secondary);
}

.business-tax-card .tax-left h3 span {
  font-weight: 700;
}

.business-tax-card .tax-left p {
  margin: 10px 0 0;
  color: #5b6475;
  font-size: 16px;
}

.business-tax-card .tax-right {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #12b981;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.business-tax-card .tax-right i {
  font-size: 20px;
}

@media (max-width: 767px) {
  .business-tax-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .business-profile-crd .btn-grp .btn {
    flex: 1 1 calc(50% - 4px);
    height: auto;
    padding: 5px 10px;
    font-size: 0.82rem;
    border-radius: var(--dsi-radius);
  }
  .profile-nav {
    margin: 0px;
    top: 52px;
    padding: 8px 6px !important;
    border-radius: var(--dsi-radius) !important;
    justify-content: start !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll;
    gap: 5px !important;
  }
  .profile-nav::-webkit-scrollbar{
    display: none;
  }
  .business-tax-card .tax-left h3 {
    font-size: 18px;
  }
  .business-tax-card .tax-label {
    font-size: 9px;
  }
  .contct-person {
    font-size: 12px !important;
    margin-top: 0px !important;
  }
  section.section.cta-sec {
    padding-top: 0 !important;
  }
  .agent-card .soft-card a.gap-2{
    font-size: 14px;
  }
  .business-tax-card {
    padding: 10px 23px;
    margin-top: 20px;
    gap: 11px;
  }
  .job-det .small{
    font-size: 13px;
  }
  .section.blog-sli{
    padding-bottom: 0 !important;
  }
  .strt {
    margin-left: 8px !important;
  }
  .business-tax-card .tax-right {
    display: none;
  }
  .directory-cat .row.g-3 {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .directory-cat .row.g-3 [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .directory-cat .row.g-3 > * {
    flex: 0 0 auto;
    width: auto !important;
    margin: 0;
  }
  .directory-cat .row.g-3::-webkit-scrollbar {
    display: none;
  }
  .navbar-dsi .navbar-collapse
  {
    padding: 20px 0;
  }
  .navbar-dsi .navbar-collapse .nav-link
  {
    font-size: 12px;
  }
  .trusted-logo{
    height: 75px;
  }

  .featured_cat {
    flex-direction: row;
    flex-wrap: nowrap !important;
    overflow-x: scroll;
    overflow-y: hidden;
    justify-content: start !important;
    align-items: center;
  }
  .featured_cat button {
    opacity: 1;
    transform: none;
    white-space: nowrap;
  }
  .featured_cat button > * {
    flex: 0 0 auto;
    width: auto !important;
    margin: 0;
  }
  .featured_cat::-webkit-scrollbar {
    display: none;
  }
}
.profile-nav {
  justify-content: center;
  position: sticky;
  top: 68px;
  z-index: 1000;
  width: 100%;
  background: var(--dsi-primary);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--dsi-border);
  border-radius: 20px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 22px;
  border: 1px solid var(--dsi-primary);
  border-radius: 50px;
  color: var(--dsi-primary);
  background: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-pill i {
  font-size: 18px;
}

.nav-pill:hover {
  background: var(--dsi-accent);
  color: var(--dsi-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 59, 138, 0.18);
}

.nav-pill.active {
  background: var(--dsi-accent);
  color: var(--dsi-primary);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 111, 174, 0.35);
}
[data-theme="dark"] .nav-pill {
  border-color: var(--dsi-accent);
  color: var(--dsi-accent);
  background-color: var(--bs-btn-bg);
}
[data-theme="dark"] .nav-pill.active {
  color: #fff;
  border-color: transparent;
}
[data-theme="dark"] .accordion-button {
  color: #fff !important;
}
html {
  scroll-behavior: smooth;
}
#about,
#features,
#amenities,
#services,
#products,
#video,
#reviews,
#jobs {
  scroll-margin-top: 120px; /* Adjust according to your header height */
}
#bizFaq {
  scroll-margin-top: 220px;
}
/* member card css */
.mem-crd {
/* display: flex;
flex-direction: row !important;
gap: 20px; */
}
.mem-basic {
  display: flex;
  flex-direction: row !important;
  gap: 20px;
}
.mem-img {
  margin-top: 0;
}
.mem-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  text-align: left;
}
.social-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}
.last-mem {
  padding-top: 16px;
  border-top: 1px solid var(--dsi-border);
  align-items: center;
}
.img-mem .listing-badges {
  position: absolute;
  top: 15px;
  left: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 4;
}
.img-mem .badge-verified {
  background: none;
  color: #198754;
  border-radius: 999px;
  padding: 0;
  font-weight: 600;
  font-size: 22px;
}
.contct-person {
  font-size: 14px;
  margin-top: 10px;
  margin-left: auto;
  text-align: right;
}
.form-select {
  color: var(--dsi-muted) !important;
}
[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] .form-select {
  color: var(--dsi-muted) !important;
}
/* about page */
.vision .soft-card,
.vision .glass-card,
.steps .soft-card {
  color: var(--dsi-text);
  background: var(--dsi-surface);
}
.vision .text-muted,
.steps .text-muted {
  color: var(--dsi-muted) !important;
}
.login-bg {
  background: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
    ),
  url("/uploads/banners/business (2).webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.register-bg {
  background: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
    ),
  url("/uploads/banners/business (3).webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.ad-banner-overlay .container {
  padding-left: 50px;
}
/* blog detail */
.blog-det .prose h2 {
  margin-top: 1.5rem;
}
#sec-1 {
  margin-top: 0;
}
.blog-image-box {
  width: 100%;
  overflow: hidden;
  border-radius: var(--dsi-radius);
  box-shadow: var(--dsi-shadow);
}
.blog-ig {
  width: 100%;
  object-fit: cover;
}
.sidebar-search {
  padding: 10px;
  border-radius: 50px;
}

.sidebar-search .search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-search i {
  font-size: 18px;
  flex-shrink: 0;
  padding-left: 12px;
}

.sidebar-search .form-control {
  min-width: 0;
  padding: 0;
  color: var(--dsi-text);
}

.sidebar-search .form-control::placeholder {
  color: #8a8a8a;
}

.sidebar-search .btn {
  padding: 8px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.recent-name {
  color: var(--dsi-text);
  font-size: .875em;
  line-height: 1.3;
  transition: all 0.3s;
}
.recent-name:hover{
  color: var(--dsi-accent);
}
.ft-sm{
  font-size: 0.8em;
}
.blog-categories li a {
  color: var(--dsi-muted);
  /* font-weight: 500; */
  transition: 0.3s ease;
}

.blog-categories li:hover a {
  color: var(--dsi-accent);
  /* padding-left: 6px; */
}

.blog-categories .badge {
  background: rgba(56, 182, 255, 0.14);
  color: var(--dsi-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px;
  flex-shrink: 0;
  border-radius: 7px !important;
  min-width: 34px;
}
.recent-blog-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--dsi-border);
  color: var(--dsi-text);
  transition: 0.3s ease;
}

.recent-blog-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-blog-card:hover {
  color: var(--dsi-accent);
}

.recent-blog-img {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--dsi-shadow);
  transition: 0.3s ease;
}

.recent-blog-card:hover .recent-blog-img {
  transform: scale(1.05);
}

.recent-blog-title {
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--dsi-muted);
}
.advert {
  width: 100%;
  overflow: hidden;
  height: auto;
  border-radius: var(--dsi-radius);
  box-shadow: var(--dsi-shadow);
}
.advert img {
  width: 100%;
}

@media (max-width: 576px) {
  .sidebar-search .form-control {
    width: 100%;
    order: 2;
  }

  .sidebar-search .btn {
    width: 52%;
    order: 3;
  }
}

/* about us sec */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

/* soft background blob, mirrors the abstract shape behind the images on the site */
.about-section::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 20%;
  width:550px;
  height:550px;
  background: #d9ebf759;
  /* border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%; */
  border-radius:50%;
  z-index: 0;
}

.about-wrap {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---------- LEFT: copy ---------- */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
/*background: rgba(56, 182, 255, 0.14);
color: var(--dsi-secondary);*/
background: var(--dsi-dark-bg);
color: var(--bs-white);
padding: 7px 16px 7px 14px;
border-radius: 999px;
margin-bottom: 18px;
}
/* .about-eyebrow::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--dsi-accent);
display: inline-block;
} */

.about-title {
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.15;
  /* color:var(--dsi-navy); */
  margin: 0 0 22px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dsi-muted);
  margin: 0 0 30px;
}

.about-features {
  display: flex;
  gap: 36px;
  padding-top: 26px;
  margin-bottom: 34px;
  border-top: 1px solid var(--dsi-border);
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.about-feature .icon {
  flex: none;
  width: 45px;
  height: 45px;
  background: rgba(56, 182, 255, 0.14);
  color: var(--dsi-secondary);
  border-radius: 9px;
  line-height: 20px;
  padding: 5px;
}
.about-feature .icon svg {
  width: 100%;
  height: 100%;
}

.about-feature p {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--dsi-muted);
  line-height: 1.35;
}

.about-actions {
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* max-width:480px; */
}

.about-actions-row {
  display: flex;
  gap: 25px;
}

.dsi-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 18px;
  color: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.dsi-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.dsi-btn .btn-icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dsi-btn .btn-icon svg {
  width: 22px;
  height: 22px;
}

.dsi-btn .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.dsi-btn .btn-text .small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
  text-transform: uppercase;
}
.dsi-btn .btn-text .big {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-youtube {
  background: linear-gradient(90deg, #e8491d, #c4161c);
}
.btn-whatsapp {
  background: linear-gradient(90deg, #25d366, #128c3e);
}

.btn-pdf {
  justify-content: space-between;
  background: var(--dsi-gradient);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 24px rgba(0, 111, 174, 0.35);
}
.btn-pdf .btn-text .big {
  font-size: 15.5px;
}
.btn-pdf .download-circle {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dsi-accent);
}
.btn-pdf .download-circle svg {
  width: 16px;
  height: 16px;
}

/* ---------- RIGHT: media collage ---------- */
.about-media {
  position: relative;
  min-height: 560px;
}

.media-photo-main {
  position: absolute;
  width: 50%;
  top: -5%;
  overflow: hidden;
  border-radius: var(--dsi-radius);
  box-shadow: var(--dsi-shadow);
}
.media-photo-main img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.media-photo-secondary {
  position: absolute;
  top: 14%;
  right: 0;
  width: 42%;
  overflow: hidden;
  z-index: 2;
  border-radius: var(--dsi-radius);
  box-shadow: var(--dsi-shadow);
}
.media-photo-secondary img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dsi-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.play-button svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.media-quote-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  background: var(--dsi-secondary);
  color: #fff;
  border-radius: var(--dsi-radius);
  padding: 18px 28px;
  z-index: 3;
  box-shadow: var(--dsi-shadow);
}
.media-quote-card .quote-mark {
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 56px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}
.media-quote-card h3 {
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  max-width: 80%;
}
.media-quote-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
/* text overlay */
.effect-marley {
  position: relative;
  overflow: hidden;
}

.effect-marley img {
  width: 100%;
  display: block;
  transition: none; /* No zoom */
}

.effect-marley figcaption {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  align-items: flex-end;
/* background: linear-gradient(
to top,
rgba(0,0,0,.45),
rgba(0,0,0,.1),
transparent
); */
background: linear-gradient(
  to top,
  rgba(0, 0, 0, 0.75) 0%,
  rgba(0, 0, 0, 0.65) 35%,
  rgba(0, 0, 0, 0.1) 70%,
  transparent 100%
  );
}

.overlay-content {
  width: 100%;
}

.effect-marley h2 {
  position: relative;
  margin: 0;
  color: #fff;

  /* Visible by default */
  transform: translateY(0);
  transition: 0.35s ease;
}

.effect-marley p {
  margin-top: 18px;
  color: #fff;
  opacity: 1;

  /* Visible by default */
  transform: translateY(0);
  transition: 0.35s ease;
}

.effect-marley h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: #fff;

  /* Line visible by default */
  transform: translateX(0);
  transition: 0.35s ease;
}
.effect-marley:hover h2 {
  transform: translateY(20px);
}

.effect-marley:hover p {
  opacity: 0;
  transform: translateY(20px);
}

.effect-marley:hover h2::after {
  transform: translateX(-115%);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-wrap {
    gap: 44px;
  }
  .about-media {
    min-height: 500px;
  }
  .effect-marley figcaption {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
  }
  .about-media {
    order: -1;
    min-height: 480px;
    margin-bottom: 10px;
  }
  .about-section::before {
    width: 90%;
    right: -20%;
    top: -6%;
  }
}

@media (max-width: 560px) {
  .about-features {
    gap: 10px;
    padding-top: 20px;
    margin-bottom: 25px;
  }
  .about-actions-row {
    flex-direction: column;
  }
  .media-photo-main img {
    height: 250px;
  }
  .media-photo-secondary {
    top: 8%;
  }
  .media-photo-secondary img {
    height: 170px;
  }
  .media-quote-card {
    width: 75%;
    padding: 15px 20px;
  }
  .media-quote-card h3 {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 4px;
  }
  .media-quote-card span {
    font-size: 11px;
  }
  .about-media {
    min-height: auto;
    padding-bottom: 120px;
  }
}
[data-theme="dark"] .about-section::before {
  background: #1d31514d;
}
/* whychoose us sec */
.why-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---------- LEFT: copy ---------- */
.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  background: var(--dsi-dark-bg);
  color: var(--bs-white);
  margin-bottom: 16px;
  padding: 7px 16px 7px 14px;
  border-radius: 999px;
}
.why-title {
  font-weight: 600;
  line-height: 1.25;
  font-size: 2.3rem;
  margin: 0 0 20px;
}

.why-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dsi-muted);
  margin: 0 0 30px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 26px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why-feature .icon-circle {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dsi-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 109, 184, 0.28);
}
.why-feature .icon-circle svg {
  width: 24px;
  height: 24px;
}

.why-feature-text h3 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  position: relative;
}
.why-feature-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dsi-muted);
}

.why-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 300px;
  text-decoration: none;
  background: var(--dsi-gradient);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 24px rgba(0, 111, 174, 0.35);
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.why-pdf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 109, 184, 0.35);
}
.why-pdf-btn .circle {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-pdf-btn .circle svg {
  width: 16px;
  height: 16px;
}

/* ---------- RIGHT: visual ---------- */
.why-media {
  position: relative;
  min-height: 560px;
}

.why-media-photo {
  position: absolute;
  top: 8%;
  right: 0;
  width: 78%;
  height: 78%;
  border-radius: var(--dsi-radius);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(37, 36, 94, 0.16);
}
.why-media-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card {
  position: absolute;
  width: 280px;
  background: var(--dsi-surface-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--dsi-border);
  border-radius: var(--dsi-radius);
  box-shadow: var(--dsi-shadow);
  padding: 26px 26px 24px;
  z-index: 2;
}

.why-card-1 {
  top: 0;
  left: 0%;
}

.why-card-2 {
  bottom: -12%;
  right: 0;
}

.why-card .sketch {
  width: 100%;
  height: 96px;
  margin-bottom: 14px;
  color: var(--dsi-navy);
}
.why-card .sketch svg {
  width: 100%;
  height: 100%;
}

.why-card h4 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 19px;
  color: var(--dsi-navy);
  line-height: 1.3;
}

.why-card p {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dsi-text-light);
}

.why-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dsi-navy);
}
.why-card a svg {
  width: 13px;
  height: 13px;
}
.cat-blogs.pt-0 {
  padding: 1.5rem 0 !important;
}
.top-blogs {
  padding-bottom: 0 !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-wrap {
    gap: 30px;
  }
  .why-card {
    width: 250px;
    padding: 22px;
  }
  .why-card h4 {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .why-wrap {
    grid-template-columns: 1fr;
  }
  .why-media {
    order: -1;
    min-height: 520px;
    margin-bottom: 40px;
  }
}

@media (max-width: 560px) {
  .why-section {
    padding: 2rem 0;
  }
  .why-media {
    min-height: 340px;
  }
  .why-media-photo {
    width: 100%;
    height: auto;
  }
  .why-card {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  .why-card-1 {
    top: auto;
    left: auto;
    margin-top: 180px;
  }
  .why-card-2 {
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
}
/* floating btns */
:root{
    --dsi-whatsapp: #25D366;
    --dsi-whatsapp-dark: #1DA851;
  }

  .dsi-fab-wrap{
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
  }

  .dsi-fab{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    border: 0;
    transition: all .3s ease;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .dsi-fab:hover{
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  }

  .dsi-fab i{
   font-size: 22px;
    color: #fff !important;
  }

  /* WhatsApp button */
  .dsi-fab--wa{
    background: linear-gradient(145deg, var(--dsi-whatsapp), var(--dsi-whatsapp-dark));
  }
  /* Appears after scrolling */
    .dsi-fab-wrap.is-visible .dsi-fab {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

  /* Call button, matches site navy theme */
  .dsi-fab--top{
    background: var(--dsi-dark-bg);
    /* background-color: #FF5722; */
  }

  /* Pulse ring only on the primary (WhatsApp) button */
  .dsi-fab--wa::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--dsi-whatsapp);
    opacity: 0.55;
    animation: dsi-pulse 2.2s ease-out infinite;
    z-index: -1;
  }

  @keyframes dsi-pulse{
    0%   { transform: scale(1);   opacity: 0.55; }
    70%  { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
  }

  /* Tooltip labels */
  .dsi-fab-label{
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dsi-dark-bg);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, right 0.2s ease;
  }

  .dsi-fab-label::after{
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1946;
  }

  .dsi-fab:hover .dsi-fab-label{
    opacity: 1;
    right: 70px;
  }
/* Hide tooltips on small screens to avoid overflow */
@media (max-width: 1180px){
  .dsi-fab-label{ 
    display: none;
  }
  .dsi-fab-wrap{ right: 16px;
    bottom: 80px;
    gap: 8px; 
  }
  .dsi-fab{ width: 40px;
    height: 40px;}
  .dsi-fab i {
    font-size: 18px;
    color: #fff !important;
  }
}
/* mobile responsive */
@media (max-width: 1180px) {
  .news-ticker-h li a {
    font-weight: 500;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    height: 100vh;
    z-index: 1025;
    padding: 30px 0;
  }
  .news-ticker-h li a:before {
    content: "";
    height: 8px;
    width: 8px;
  }
  .display-4 {
    font-size: 2.5rem;
  }
  .lead {
    font-size: 1.05rem;
  }
  .hero-counters {
    gap: 20px 40px;
    margin: 30px 0;
  }
  .topbar {
    padding: 6px 0;
  }
  .navbar-dsi {
    z-index: 1041;
  }
  .hero-counters .counter-item {
    flex: 1;
  }
  .hero-counters .counter-label {
    font-size: 12px;
    line-height: 1.4;
  }
  .hero-counters .counter-number {
    font-size: 20px;
  }
  .hero .d-flex .btn-lg {
    font-size:12px;
    flex: 1;
  }
  .hero .d-flex .btn-lg i {
    display: none;
  }
  .hero-avatar-stack {
    width: 65%;
  }
  .section
  {
    padding: 1.5rem 0!important
  }
}
@media (max-width: 767px) {
  :root {
    --dsi-radius: 0.5rem;
  }
  .hero {
    padding: 2rem 0;
  }
  .subscribe-sec .glass-card {
    padding: 30px !important;
  }
  .subscribe-sec p {
    font-size: 12px !important;
  }
  .subscribe-sec form {
    margin-top: 0 !important;
  }
  .hero-counters {
    margin: 20px 0;
  }
  .subscribe-sec .form-control {
    padding: 6px 15px;
    font-size: 14px;
  }
  .why-eyebrow {
    font-size: 12px;
    margin:0.5rem 0;
    padding:0.2rem 0.7rem;
  }
  .hero .row > * {
    margin: 0;
  }
  .lead {
    font-size: 0.78rem;
  }
  .hero-counters .counter-label {
    font-size: 10.9px;
    line-height: 1.4;
  }
  .row {
    margin: 0;
  }
  .row > * {
    padding: 0;
  }
  .about-media {
    order: -1;
    min-height: 355px;
    margin-bottom: 10px;
  }
  .about-section::before {
    display: none;
  }
  .about-wrap {
    gap: 25px;
  }
  .media-photo-secondary {
    width: 45%;
  }
  .resource-sec .row,
  .case-sec .row,
  .direct-sec .row.g-3.mb-4,
  .learn-sec .row.g-4,
  .event-sec .row.g-4,
  .jobs-sec .row.g-4, .cat-blogs .row.g-4 {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0 0 26px;
    margin-bottom: -26px;
  }
  .direct-sec .row.g-3.mb-4 {
    gap: 7px;
    padding: 0px 0 26px;
    margin-bottom: -20px !important;
    margin-right: calc(-0.2 * var(--bs-gutter-x));
    margin-left: calc(-0.2 * var(--bs-gutter-x));
  }
  .learn-sec .listing-card .listing-cover {
    height: 130px !important;
  }
  .job-crd .listing-cover img {
    /* border-radius: 15px !important; */
  }

  .jobs-sec .row.g-4 {
    margin-right: calc(-0.2 * var(--bs-gutter-x));
    margin-left: calc(-0.2 * var(--bs-gutter-x));
  }
  .jobs-sec .mb-4{
    margin-bottom: 1rem!important
  }
  .resource-sec .row::-webkit-scrollbar,
  .case-sec .row::-webkit-scrollbar,
  .direct-sec .row.g-3.mb-4::-webkit-scrollbar,
  .learn-sec .row.g-4::-webkit-scrollbar,
  .event-sec .row.g-4::-webkit-scrollbar,
  .jobs-sec .row.g-4::-webkit-scrollbar {
    display: none;
  }
  .direct-sec .row.g-3.mb-4 > * {
    flex: 0 0 auto;
    width: auto !important;
    margin: 0;
  }
  .resource-sec .row > *,
  .case-sec .row > *,
  .learn-sec .row.g-4 > *,
  .event-sec .row.g-4 > *,
  .jobs-sec .row.g-4 > *, .cat-blogs .row.g-4 > * {
    flex-shrink: 0;
/* width: 50%;
max-width: 50%; */
margin: 0;
padding:0 0.5rem!important;
opacity: 1;
flex: 0 0 calc((100% - 10px) / 1.2);
}
.resource-sec [data-reveal],
.case-sec [data-reveal],
.learn-sec [data-reveal],
.event-sec [data-reveal],
.jobs-sec [data-reveal],
.direct-sec .row.g-3.mb-4 [data-reveal],
.cat-blogs .row.g-4 [data-reveal], .top-blogs .row.g-4 [data-reveal] {
  opacity: 1;
  transform: none;
}
.event-sec .row.g-4 > * {
  padding-right: 5px;
  padding-left: 5px;
}
.found .badge-soft {
  font-size: 12px;
}
.case-sec .text-center.mb-5.revealed {
  margin-bottom: 1.5rem !important;
}
.direct-sec,
.found,
.case-sec,
.learn-sec,
.jobs-sec,
.govt-skill,
.event-sec,
.sub-mag,
.faqs-sec,
.reviews-sec {
  padding: 2rem 0;
}
.direct-sec .small.badge-premium {
  font-size: 10px !important;
}
.reviews-sec h2 {
  font-size: calc(1.115rem + 1.5vw);
}
.reviews-sec .text-center.mb-5 {
  margin-bottom: 1.5rem !important;
}
.reviews-sec .text-muted.flex-grow-1 {
  margin-bottom: 0 !important;
  font-size: 13px;
}
.reviews-sec strong.small {
  font-size: 12px !important;
}
.reviews-sec small.text-muted {
  font-size: 12px;
}
.faqs-sec .accordion-body {
  font-size: 10px;
  padding:0 0.5rem 0.5rem 0.5rem;
}
.resource-sec .glass-card.hoverable:hover,
.case-sec .glass-card.hoverable:hover,
.learn-sec .glass-card.hoverable:hover,
.event-sec .glass-card.hoverable:hover,
.jobs-sec .glass-card.hoverable:hover,
.category-tile.p-4:hover, .cat-blogs .glass-card.hoverable:hover, 
.top-blogs .glass-card.hoverable:hover {
  transform: none !important;
}
.blog-contet h4{
  font-size: 16px !important;
  line-height: 1.4;
}
.top-blogs .blog-contet p{
  display: none !important;
}
.blog-crd .blog-contet h4, .blog-crd .blog-contet h6, .blog-crd .blog-contet p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-contet .text-muted{
  font-size: 12px;
}
.resource-sec {
  padding: 2rem 0;
}
.course-pr {
  font-size: 13px !important;
}
.resource {
  padding: 10px !important;
}
.resource h5 {
  font-size: 16px !important;
  margin-top: 10px !important;
}
.resource .text-muted {
  font-size: 13px;
}
.resource .btn-gradient {
  font-size: 13px !important;
  line-height: 1.4;
}
.category-tile.p-4 {
  gap: 5px;
  padding: 0.3rem 0.6rem !important;
  border-radius: var(--dsi-radius) !important;
  margin: 0 0.2rem;
}
.category-icon {
  width:20px;
  height:20px;
  font-size:0.8rem;
  flex-shrink: 0;
  /*margin-bottom: 10px !important;*/
}
.display-6 {
  font-size: calc(1.115rem + 1.5vw);
}
.direct-sec .text-muted,
.case-sec .text-muted, .jobs-grid h6 {
  font-size: 12px;
}
.direct-sec .mb-5.revealed {
  margin-bottom: 1rem !important;
}
.sticky-cta.show {
  width: 80%;
  font-size: 15px !important;
  bottom:72px;
  text-align: center;
}

.direct-sec .row.g-4 > * {
  flex-shrink: 0;
  width: 50%;
  max-width: 50%;
  padding:0.5rem!important;
  margin: 0!important
}
.direct-sec .listing-card .p-4.pt-0,
.jobs-sec .listing-card .p-4.pt-0 {
  padding: 0px 8px 12px !important;
}
.learn-sec .text-muted {
  font-size: 12px;
}
.direct-sec .listing-card h5 {
  font-size: 13px !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.direct-sec .listing-card .small.text-muted,
.case-sec .glass-card h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.direct-sec .listing-card .small .text-muted {
  display: none !important;
}
.direct-sec .listing-card .social-mini a {
  font-size: 13px;
}
.direct-sec .listing-card .badge-verified {
  display: none !important;
}
.swiper-pagination-bullet-active {
  background-color: #fff;
}
.jobs-sec .small,
.found .text-muted {
  font-size: 12px !important;
}
.jobs-sec .small.badge-soft {
  padding: 2px 7px;
  font-size: 10px !important;
  border-radius: 8px !important;
}
.jobs-sec .badge-verified {
  font-size: 10px !important;
  padding: 2px 8px;
  border-radius: 12px !important;
}
.direct-sec .small,
.direct-sec .listing-card .text-muted {
  font-size: 11px !important;
}
.direct-sec .listing-card .listing-cover {
  height: 120px;
}
.direct-sec .listing-card .btn-outline-brand {
  margin-top: 0 !important;
  font-size: 0.9rem;
  display: none;
}
.learn-sec .text-center.mb-5.revealed {
  margin-bottom: 1.5rem !important;
}
.learn-sec .p-4 {
  padding: 1.1rem !important;
}
.direct-sec .listing-card .listing-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-top: -27px;
}
.about-title.display-6 {
  font-size: calc(1.125rem + 1.5vw);
  margin-bottom: 1rem;
}
.about-eyebrow {
  font-size: 13px;
  padding: 6px 10px;
}
.about-desc {
  font-size: 13px;
  margin-bottom: 20px;
}
.about-actions,
.about-actions-row {
  gap: 15px;
  flex-direction: row;
}
.about-feature .icon {
  width: 35px;
  height: 35px;
}
.about-feature p {
  font-size: 12px;
}
.dsi-btn .btn-text {
  display: none;
}
.dsi-btn {
  flex: none;
  padding: 6px;
}
.found .text-white-50 {
  font-size: 13px !important;
}
.jobs-sec .text-muted {
  font-size: 12px !important;
}
.btn,
.case-sec .text-accent,
.govt-skill .text-white-50 {
  font-size:12px !important;
}
.govt-skill .col-lg-6 {
  margin-top: 20px;
}
.govt-skill .row.g-3 {
  gap: 12px !important;
}
.govt-skill .row.g-3 > * {
  padding: 0;
  margin-top: 0;
  width: 48%;
}
.govt-skill .row.g-3 .small {
  font-size: 13px !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.8) !important;
}
.govt-skill .col-lg-6.revealed,
.sub-mag .col-lg-5.revealed {
  margin-top: 0;
}
.sub-mag .col-lg-7 {
  margin-top: 1.5rem;
}
.sub-mag .form-control {
  padding: 0.25rem 1rem;
  font-size: 14px;
}
.sub-mag .text-muted {
  font-size: 13px !important;
}
.sub-mag .row.g-4 > * {
  margin-top: 0;
  padding: 0 5px;
}
.found .soft-card h5,
.case-sec .glass-card h5 {
  font-size: 16px !important;
}
.case-sec .badge-soft {
  font-size: 12px;
}
.found-img-box {
  height: 100px;
}
.jobs-sec .listing-card .listing-cover {
  padding: 8px 8px 0 !important;
  height: 120px !important;
}
.jobs-sec .small.badge-premium {
  font-size: 10px !important;
}
.job-crd .job-tile {
  margin: 1rem 0 10px;
  font-size: 13px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-crd .comp-name .listing-logo {
  width: 25px !important;
  height: 25px !important;
  border-radius: 4px !important;
}
.job-crd .small.text-muted {
  font-size: 12px !important;
}
.job-crd .mt-4 {
  margin-top: 10px !important;
}
.simp-tags {
  margin: 0 0 10px !important;
}
.job-crd .listing-badges {
  top: 18px;
  left: 18px;
}
.comp-name {
  gap: 5px !important;
}
.govt-skill .soft-card {
  gap: 10px !important;
  padding: 5px 10px !important;
  /* border-radius: 16px !important; */
}
.hero-avatar-stack img {
  width: 38px;
  height: 38px;
}
.event-grid .badge-soft, .event-grid .badge-verified {
  font-size: 0.6rem !important;
  padding: 0.2rem 0.4rem !important;
  line-height: normal;
}
.event-grid .listing-badges {
  top: 6px;
  left: 6px;
}
.event-grid .story-play{
  font-size: 1.87rem;
}
.hero-avatar-stack {
  width: 50%;
}
.about-section {
  padding: 1.5rem 0 1rem;
}
.vision h2,
.work-sec h2,
.steps h2 {
  font-size: calc(1rem + 1.5vw);
}
.who-sec .row.g-3 > * {
  margin: 0 !important;
  padding: 5px;
}
.who-sec .row.g-3 {
  margin: 10px -5px 0;
}
.who-sec .row.g-3 .glass-card {
  padding: 15px !important;
}
.about-content {
  margin-bottom: 20px;
}
.who-sec .col-lg-6.revealed {
  margin-top: 0;
}
.dropdown-item{
  font-size: 13px;
}
.stat-number {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px !important;
}
.vision h4 {
  font-size: calc(0.99rem + 0.3vw);
}
.who-sec small.text-muted {
  font-size: 12px !important;
}
.who-sec,
.vision,
.work-sec,
.steps {
  padding: 2rem 0;
}
p.text-muted {
  font-size: 12px;
}
.container.mt-n3.mb-5.revealed .glass-card {
  padding: 1rem 0.8rem !important;
}
.eyebrow {
  letter-spacing: 0;
}
.news-ticker-h li a {
  font-size: 12px;
}
.news-ticker-h li {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 20px;
}
.navbar-dsi {
  padding: 1px 0 !important;
}
.why-wrap {
  gap: 0;
}
.hero-counters .counter-number {
  font-size: 25px;
}
.hero-counters {
  gap: 20px 10px;
  margin: 30px 0;
}
.hero .d-flex.justify-content-center.revealed {
  gap: 6px !important;
  justify-content: space-between !important;
}
.hero .d-flex.justify-content-center.revealed .text-muted,
.why-feature-text p {
  font-size: 12px !important;
}
.direct-sec .row.g-4 {
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.why-card {
  display: none;
}
.why-desc {
  font-size: 13px;
}
.why-media {
  min-height: 235px;
  margin-bottom: 5px;
  position: static;
}
.why-media-photo {
  width: 100%;
  height: auto;
  position: static;
}
.why-feature .icon-circle svg {
  width: 22px;
  height: 22px;
}
.why-feature {
  gap: 12px;
}
.why-features {
  gap: 14px;
}
.why-feature .icon-circle {
  width: 40px;
  height: 40px;
}
.why-pdf-btn {
  gap: 8px;
  max-width: 250px;
  padding: 6px 12px;
  font-size: 13px;
}
.why-title {
  font-size: calc(1rem + 1.3vw);
}
.why-feature-text h3 {
  font-size: 12px;
  margin: 0 0 2px;
}
.event-sec .text-muted {
  font-size: 12px;
}
.info-evt h6 {
  font-size: 15px;
}
.betr.date-evt .h4 {
  font-size:0.8rem;
}
.event-sec .date-evt .text-muted {
  font-size:8px;
}
/* event card */
.listing-card.event-st {
  display: flex;
  align-items: flex-start;
  gap:5px;
  padding: 10px;
  /* border-radius:18px; */
  position: relative;
}
button.accordion-button
{
  padding: 0.5rem;
  font-size: 12px;
}

/* Image */
.evt-pg .event-st.listing-card .listing-cover {
  width: 110px;
  /* min-width: 90px; */
  height: auto !important;
  border-radius: var(--dsi-radius);
  overflow: hidden;
}
.event-st.listing-card .listing-cover {
  width: 90px;
  min-width: 90px;
  height: 90px !important;
  border-radius: var(--dsi-radius);
  overflow: hidden;
}
.featured_cat a{
  white-space: nowrap;
}
.gallery-grid{
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.betr.date-evt{
  display: none;
}
.event-st.listing-card .listing-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Date */

.date-evt {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: var(--dsi-radius);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  justify-content: center;
}

.date-evt small {
  font-size: 10px;
}

.date-evt .h4 {
  font-size: 20px;
  line-height: 1;
}

/* Info */

.info-evt {
  flex: 1;
  margin: 0 0 0 10px;
}
.info-evt .spl-tags .small {
  font-size: 10px;
  padding: 2px 6px !important;
  border-radius: 4px;
}

.info-evt h6 {
  font-size: 12px;
  line-height: 1.25;
  margin:0.2rem 0 !important;
}
.seat-evt {
  display: none;
}
.hero-counters .counter-label {
  margin-top: 2px;
}

.info-evt small {
  font-size: 13px;
}

/* Badges */

.spl-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge-soft,
.badge-verified {
  font-size:0.6rem!important;
  padding:0.3rem 0.7rem!important;
}
.px-4
{
  padding-right: 0.6rem!important;
  padding-left: 0.6rem!important
}

/* Seat */

.seat-evt {
  width: 100%;
  margin-top: 12px;
}

.progress {
  height: 5px !important;
  border-radius: 20px;
}

.seat-evt small {
  font-size: 12px;
}

.seat-evt .btn {
  margin-top: 10px !important;
  height: 38px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
}
.img-box {
  margin: 0;
  border-radius: var(--dsi-radius);
}
.cta-sec .glass-card {
  padding: 30px !important;
}
.topbar {
  padding: 3px 0;
}
.news-ticker-h li a:before {
  margin-right: 8px;
  height: 6px;
  width: 6px;
}
.about-media {
  order: 1;
}
/* two divs in hero sec*/
.hero .floating-card {
  font-size: 12px;
  line-height: 1.3;
  padding: 8px !important;
  margin-top: 30px !important;
}
.hero .floating-card i {
  font-size: 17px !important;
}
.hero .d-flex.justify-content-center.revealed {
  margin-bottom: 22px;
}
.slideshow-container.slider-right {
  height: 252px;
  width: 100%;
  max-width: 100%;
  border-radius: var(--dsi-radius);
}

.hero .row > * {
  padding: 0 6px;
}
.hero .row {
  margin: 0 -6px;
}
.slideshow-container.slider-left {
  max-width: 100%;
  height: 220px;
  border-radius: var(--dsi-radius);
  /* margin-top: 20px; */
}
.hero {
  padding: 2rem 0 20px;
}
/* mam given style of adds */
.slideshow-container.slider-right {
  height: 250px;
  /* width: 70%; */
  max-width: 100%;
  border-radius: 8px;
}
.slideshow-container.slider-left {
  /* max-width: 70%; */
  height: 250px;
  border-radius: 8px;
  /* margin-top: 20px; */
}
.hero .floating-card {
  margin-top: 10px !important;
}
.hero .floating-card {
  will-change: transform;
  z-index: 12;
  position: relative;
  animation: none;
}
.myslideh.dots {
  display: none;
}
.floating-card1 {
  font-size: 12px;
  padding: 10px !important;
}
.floating-card1 i{
  display: none;
}
.floating-card1 img{
  width: 30px !important;
  height: 30px !important;
}
.floating-card1 .badge-soft{
  padding: 4px !important;
}
.container.mt-n3.mb-5.revealed {
  margin-bottom: 30px !important;
}
.container.mt-n3.mb-5.revealed .glass-card {
  padding: 0.8rem 0.8rem !important;
  gap: 2px !important;
}
.container.mt-n3.mb-5.revealed .fw-bold {
  font-size: 15px;
}
.container.mt-n3.mb-5.revealed .text-muted {
  font-size: 12px;
}
.hero {
  padding: 1rem 0 1rem;
}
h1.display-4.mt-3.revealed {
  margin-top: 0.5rem !important;
}
.hero-counters {
  margin: 1rem 0 !important;
}
.hero .d-flex.justify-content-center.revealed {
  margin: 1rem 0 !important;
}
.container.mt-n3.mb-5.revealed {
  margin: 1rem 0 !important;
}
h2 {
  margin-bottom: 0.5rem !important;
}
p {
  margin-bottom: 0.5rem !important;
}
.why-features {
  gap: 0;
  margin-bottom: 0.5rem !important;
}
.resource-sec {
  padding: 1rem 0;
}
.direct-sec,
.found,
.case-sec,
.learn-sec,
.jobs-sec,
.govt-skill,
.event-sec,
.sub-mag,
.faqs-sec,
.reviews-sec {
  padding: 1rem 0;
}
.eyebrow {
  font-size: 0.6rem;
  padding:0.3rem 0.7rem;
}
.display-6 {
  font-size: calc(0.7rem + 1.5vw);
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1rem;
}
.mt-4 {
  margin-top: 0.8rem !important;
}
.p-4 {
  padding: 1rem !important;
}

.reviews-sec h2,
.faqs-sec h2, .directory-cat h2 {
  font-size: calc(0.8rem + 0.5vw)!important;
}
.faqs-sec h2
{
  margin-bottom: 0!important
}
.faqs-sec .text-center.mb-5 {
  margin-bottom: 1.7rem !important;
}
/* business detail */
.business-cvr {
  height: 180px !important;
}
.business-profile-crd .glass-card {
  padding: 16px !important;
  /* margin-top: -50px !important; */
}
.feature-grid{
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.feature-grid span{
  padding: 6px 12px;
  font-size: 12px;
}
.feature-grid span i{
  display: none;
}
/* Compact layout */
.business-profile-crd .row {
  align-items: flex-start;
  row-gap: 12px;
}
.sec-head p{
  font-size: 0.775rem;
}
.sec-head h5 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem !important;
}
/* Small logo */
.business-profile-crd .b-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

/* Small badges */
.business-profile-crd .d-flex.flex-wrap.gap-2 {
  gap: 6px !important;
  margin-bottom: 10px !important;
}

.business-profile-crd .badge-soft,
.business-profile-crd .badge-premium,
.business-profile-crd .badge-verified {
  padding: 0.2rem 0.45rem !important;
  line-height: normal;
  font-size: 0.6rem;
}
#jobs .sec-head{
  margin: 18px 0 0;
}

/* Heading */
.business-profile-crd h1 {
  font-size: 1.15rem;
  line-height: 1.1;
  margin-bottom: 2px;
}

/* Subtitle */
.business-profile-crd p {
  font-size: 0.8rem;
  margin-bottom: 6px;
}

/* Meta */
.business-profile-crd small {
  display: block;
  font-size: 0.7rem;
  line-height: 1.5;
}

/* Social */
.business-profile-crd .d-flex.gap-2.mt-3 {
  gap: 8px !important;
  margin-top: 10px !important;
}

.business-profile-crd .btn-outline-brand.rounded-circle {
  width: 30px !important;
  height: 30px !important;
  padding: 0;
}

/* Buttons */
.business-profile-crd .btn-grp {
  gap: 8px !important;
  margin-top: 4px;
}   
/* Remove extra spacing */
.business-profile-crd .col-auto {
  padding-right: 8px;
}

.business-profile-crd .col {
  padding-left: 4px;
}
.display-4 {
  font-size: calc(0.9rem + 2.7vw);
}
.mb-4 {
  margin-bottom:0.8rem !important;
}
.mb-5 {
  margin-bottom:1rem !important;
}
.jobs-sec .col-lg-8
{
  text-align: center!important;
}
.jobs-sec .col-lg-4.text-lg-end {
  text-align: center!important;
}
.newsletter-cta h2{
  font-size: 14px!important
}
.cta-sec h2
{
  font-size: 14px!important

}
.cta-sec p
{
  font-size: 12px!important

}
.cta-sec .p-5
{
  padding: 1rem!important

}

.p-lg-5
{
  padding: 0.5rem 1rem!important
}
.form-control, .form-select
{
  font-size: 12px!important;
  padding: 0.3rem!important
}
.section h1
{
  font-size: 1rem!important
}
.ad-swiper h3
{
  font-size: 1.3rem!important
}
.ad-swiper p
{
  font-size:0.8rem!important
}
.work-sec .row.g-4>*{
  width: 50%;
}
.work-sec .row.g-4{
  align-items: start;
}
.step-num {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.direct-sec .listing-cat {
  right: 8px;
  bottom: 10px;
  padding: 3px 4px;
  border-radius: 7px;
  font-size: 10px;
  line-height: normal;
}
.direct-sec .text-center.mt-5{
  margin-top: 1rem !important;
}
.cta-sec .btn.btn-lg {
  line-height: normal;
  padding: 5px 10px !important;
}

}

@media (max-width: 360px) {
  .topbar-right a{
    font-size: 11px !important;
  }
  .hero .d-flex .btn-lg {
    padding: 5px 0 !important;
  }
  .hero-avatar-stack {
    width: 46%;
  }
  .hero-avatar-stack img {
    width: 32px;
    height: 32px;
  }
  .slideshow-container.slider-right, .slideshow-container.slider-left {
    height: 230px;
  }
  .resource .btn-gradient {
    font-size: 12px !important;
  }
  .hero-counters .counter-label {
    font-size: 10px;
    line-height: 1.4;
  }
  .hero-counters {
    gap: 10px 8px;
    margin: 25px 0;
  }
  .hero .floating-card i {
    font-size: 15px !important;
  }
  .hero .floating-card {
    padding: 6px !important;
  }
  #mainNav {
      max-width: 35% !important;
  }

}

[data-theme="dark"] .navbar-toggler i {
  color: #fff;
}
[data-theme="dark"] .border-top {
  border-color: rgb(37 36 94 / 10%);
}

/*my css */
.dark_blue {
  background: var(--dsi-gradient) !important;
}
.dark_blue .h1,.dark_blue .h2,.dark_blue .h3,.dark_blue .h4,.dark_blue .h5,.dark_blue .h6,.dark_blue h1,.dark_blue h2,.dark_blue h3,.dark_blue h4,.dark_blue h5,.dark_blue h6
{
  color: var(--bs-light);
}
.dark_blue .text-muted,.dark_blue .text-secondary
{
  color: var(--bs-primary-bg-subtle)!important;
}
.ad-banner img
{
  /*height: clamp(200px, 26vw, 300px);*/
  height: auto;
}
.listing-card .pt-3
{
  padding-top: 0.5rem!important;
}
.listing-card .mb-3
{
  margin-bottom: 0.5rem!important
}
.listing-card .mt-3
{
  margin-top:0.5rem !important;
}
section.section.cta-sec
{
  padding: 0;
}

.breadcrumb-item a
{
  color: var(--bs-light)!important;
}
.breadcrumb-item.active {
  color: var(--dsi-accent)!important;
}
.breadcrumb-item+.breadcrumb-item::before
{
  color: var(--dsi-muted)!important;
}
.business-img img
{
  border-radius: var(--dsi-radius);
}
.course-img
{
  /* height: 400px; */
  background-position:center;
  background-size: cover;
}
.course-img img
{
  border-radius: var(--dsi-radius);
}
h5 i.bi {
  margin-right: 10px !important;
}
.p-lg-5 {
  padding: 2rem !important;
}
.footer p {
  font-size:1rem!important;
  line-height: 1.8 !important;
}
.footer a, .footer .small span {
  font-size: 1rem!important;
}
.footer .list-unstyled {
  gap: 2px !important;
}
.footer .fw-bold.mb-3 {
  margin-bottom: 5px !important;
}
.footer a.rounded-circle {
  width: 32px !important;
  height: 32px !important;
  line-height: 24px !important;
  font-size: 14px !important;
}
img.footer_logo {
  height: 3.5rem;
}


/* mobile */
@media (max-width: 767px){
  .footer p {
    font-size: 0.82rem!important;
    line-height: 1.8 !important;
  }
  .event-sec .row.g-4 > * {
    padding: 0 0.3rem !important;
    flex: 0 0 calc((100% - 10px) / 1.1);
  }
  .footer a {
    font-size: 0.82rem!important;
  }
  /* add slider in home */
  .hero .ad-swiper, .dark_blue .ad-swiper{
    border-radius: 8px !important;
  }
  .mb-br{
    height: auto !important;
    padding: 20px 0 !important;
  }
  .mb-br ol{
    margin-bottom: 0;
    font-size: 14px;
  }
  .nav-pill {
    gap: 3px;
    padding: 4px 5px;
    font-size: 12px;
    white-space: nowrap;
  }
  .nav-pill i {
    font-size: 13px;
  }
  .p-lg-5 {
    padding: 1.2rem !important;
  }
  #about .prose {
    font-size: 13px;}
    .course-img {
      height: auto;
      min-height: 152px;
    }
    .corse .row{
      gap: 15px;
    }
    .corse .h2{
      font-size: 18px !important;
    }
    .blog-sli h2{
      font-size: 17px!important;
    }
    .corse .small span, .corse .text-muted{
      font-size: 12px !important;
    }
    .corse-det h5{
      font-size: 18px !important;
    }
    .corse-det .prose, .timeline-item span{
      font-size: 13px !important;
    }
    .timeline-item {
      padding-bottom: 1rem;
      font-size: 13px;
    }
    .corse-det .rounded-4{
      border-radius: 8px !important;
    }
    .story-det h5{
      font-size: 17px;
    }
    .story-det .row{
      gap: 14px;
    }
    .story-det .flex-grow-1{
      font-size: 14px;
    }
    .mag-meta{
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      font-size: 13px;
    }
    .mag-meta div{
      border-radius: var(--dsi-radius);
      padding: 6px 10px;
    }
    .mag-row img{      
      border-radius: var(--dsi-radius);
    }
    .mag-row h4{
      font-size: 16px;
    }
    .mag-det .col-lg-8, .mag-det .col-lg-8 .col-md-5{
      margin: 0 !important;
    }
    .masg-det .magazine-cover{
      aspect-ratio: unset;
    }
    .mag-det h5{
      font-size: 15px;
    }
    .mag-det .prose{
      font-size: 13px;
    }
    .found-head h1{
      font-size: 18px;
    }
    
    .jobs-grid .row.g-4, .event-grid .row.g-4{
      margin-right: calc(-0.5 * var(--bs-gutter-x));
      margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
    .jobs-grid .row.g-4>*, .event-grid .row.g-4>*{
      flex-shrink: 0;
      width: 50%;
      max-width: 50%;
      padding: 0.5rem !important;
      margin: 0 !important;
    }
    .jobs-grid .job-crd.listing-card .listing-cover{
      height: 120px !important;
      padding: 8px !important;
    }
    .jobs-grid .badge-premium{
      font-size: 9px;
    }
    .jobs-grid .listing-badges .btn{
      width: 25px !important;
      height: 25px !important;
      line-height: 25px;
      padding: 0;
      text-align: center;
    }
    .jobs-grid .job-crd .listing-badges {
      top: 15px;
      left: 14px;
      align-items: flex-start;
    }
    .jobs-grid .p-4.pt-0{
      padding: 0 8px 8px !important;
    }
    .jobs-grid .job-crd .badge-soft, .jobs-grid .job-crd .badge-verified {
      padding: 2px 5px !important;
    }
    .jobs-grid .badge-verified.small.text-capitalize, .jobs-grid .comp-name .text-muted {
      display: none !important;
    }
    .jobs-grid .job-crd .small.text-muted {
      font-size: 10px !important;
    }
    .jobs-grid .comp-det .small a{
      font-size: 12px !important;
    }
    .jobs-grid .job-crd .job-tile{
      margin: 8px 0 7px;
    }
    .jobs-grid .job-crd .mt-4 {
      margin-top: 5px !important;
    }
    .blog-sli .listing-cover{
      height: 250px !important;
    }
    .blog-sli .blog-contet .text-muted{
      font-size: 12px;
    }
    .job-det.pt-0.pb-0 {
      margin-top: -16px;
    }
    .job-det .col-auto img{
      width: 80px !important;
      height: 80px !important;
    }
    .job-det h1{
      font-size: 16px;
    }
    .job-det .badge-soft {
      padding: 2px 6px !important;
    }
    .job-det .row{
      align-items: flex-start !important;
    }
    .job-det p{
      font-size: 12px;
      line-height: 1.7 !important;
    }
    .job-det .h4{
      font-size: 13px;
      margin-top: 8px;
    }
    .job-det .h4 small{
      font-size: 12px !important;
    }
    .jobs-det{
      padding: 0 !important;
    }
    .jobs-det h5{
      font-size: 16px;
    }
    .jobs-det .prose, .jobs-det li{
      font-size: 0.82rem;
    }
    .jobs-det ul{
      margin-bottom: 0;
    }
    .border-bottom {
      font-size: 13px;
    }
    .bs-list{
      padding: 0 !important;
    }
    .bs-list .direct-sec{
      margin: 0;
    }
    .logo-prt img{
      width: 35px !important;
      height: 35px !important;
      border-radius: 6px !important;
    }
    .logo-prt .badge-soft {
      padding: 2px 6px !important;
    }
    .logo-prt{
      padding: 16px 10px !important;
      font-size: 14px;
      gap: 10px !important;
    }
    .logo-prt .gap-2 {
      gap: 8px 4px !important;
    }
    .cat-blogs.pt-0 {
      padding-bottom: 0 !important;
    }
    .cat-blogs .row.g-4, .top-blogs .row.g-4 {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;

      overflow-x: auto;
      overflow-y: hidden;

      margin: 0;
      padding: 0;

      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .cat-blogs .row.g-4::-webkit-scrollbar, 
    .top-blogs .row.g-4::-webkit-scrollbar {
      display: none;
    }
    .event-grid .listing-card h6{
      font-size: 13px !important;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .event-grid .listing-card small.text-muted{
      font-size: 10px !important;
    }
    .event-grid .listing-card small.text-muted i{
      display: none;
    }
    .event-grid .listing-card .d-flex.justify-content-between{
      font-size: 13px;
    }
    .event-grid .listing-card .listing-cover{
      height: 110px !important;
    }
    .event-grid .listing-card .p-4 {
      padding: 12px 10px !important;
    }
    .blog-det{
      padding-top: 0 !important;
    }
    .cat-blogs .row.g-4 > [data-reveal], .top-blogs .row.g-4 > [data-reveal] {
      flex: 0 0 calc((100% - 10px) / 1.2);
      width: calc((100% - 10px) / 1.2);

      flex-shrink: 0;

      margin: 0;
      padding: 0 !important;

      opacity: 1 !important;
      transform: none !important;
    }
    .top-blogs .listing-cover{
      height: 220px !important;
    }
    .blog-det .col-lg-8.order-1{
      margin: 0;
    }
    .blog-det-pg{
      padding: 20px 0 !important;
    }
    .blog-det-pg .d-flex.flex-wrap{
      font-size: 12px;
      gap: 10px !important;
    }
    .blog-det-pg .rounded-circle{
      width: 30px !important;
      height: 30px !important;
      line-height: 21px !important;
    }
    .blog-det .prose h2{
      font-size: 17px !important;
    }
    .blog-det .prose h3{
      font-size: 15px !important;
    }
    .blog-det .prose p, .blog-det .prose li{
      font-size: 13px;
    }
    .blog-page-fq .faqs-sec .container{
      padding: 0;
    }
    .heading-blg{
      font-size: 16px;
      margin: 20px 0 0 !important;
    }
    .recent-blg{
      padding: 12px !important;
    }
    .blog-categories{
      gap: 0 !important;
    }
    .recent-blg .small{
      font-size: 13px !important;
    }
    .recent-blg small{
      font-size: 12px !important;
    }
    /* member in mob */
     .mem-grid {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
        gap: 0 12px;
    }
    .mem-basic{
      gap: 12px;
    }
    .mem-grid > [class*="col-"] {
        width: 48%;
        flex: 0 0 48%;
        max-width: 48%;
    }

    .mem-grid .glass-card {
        border-radius: var(--dsi-radius);
    }

    .mem-grid .mem-crd {
        padding: 14px 8px !important;
    }

    .mem-grid .mem-img {
        width: 62px !important;
        height: 62px !important;
        border-radius: var(--dsi-radius) !important;
    }

    .mem-grid .mem-info h6 {
        font-size: 12px;
        line-height: 1.25;
        margin: 3px 0 5px !important;
    }
    .mem-grid .img-mem .badge-verified{
      font-size: 12px !important;
    }
    .mem-grid .mem-info small, .mem-grid .social-mini {
        display: none !important;
    }
    .mem-grid .img-mem .listing-badges {
      top: 3px;
      left: -7px;
    }
    .mem-grid .social-box >*{
      margin: 0 !important;
    }
    .mem-grid .badge-soft{
      background-color: #e2e2e2 !important;
    }
    .mem-grid .badge-soft {
        font-size: 9px;
        padding: 3px 7px;
    }

    .mem-grid .last-mem {
        margin-top: 10px !important;
        /* flex-direction: column; */
        align-items: center !important;
        gap: 4px !important;
    }

    .mem-grid .last-mem small {
        font-size: 10px;
        text-align: center;
    }

    .mem-grid .last-mem .btn {
        padding: 4px 9px !important;
        font-size: 10px !important;
        line-height: normal;
    }
     .mem-info-det {
        padding: 18px !important;
    }

    .mem-info-det .row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 14px;
    }

    /* Profile image */
    .mem-info-det img {
        width: 72px !important;
        height: 72px !important;
        border-radius: 14px !important;
    }

    /* Founder badge */
    .mem-info-det .badge-soft {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 6px !important;
    }

    /* Name */
    .mem-info-det h1 {
        font-size: 20px !important;
        line-height: 1.25;
        margin-bottom: 4px !important;
    }

    /* Designation */
    .mem-info-det p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 5px !important;
    }

    /* Location */
    .mem-info-det small {
        font-size: 11px;
        line-height: 1.4;
    }

    /* Connected badge/button */
    .mem-info-det .badge-verified {
        display: inline-block;
        font-size: 11px;
        padding: 7px 12px;
        margin-top: 6px;
        margin-bottom: 4px;
        border-radius: 999px;
    }

    /* Give the last column some space */
    .mem-info-det .col-lg-auto {
        margin-top: 4px;
        padding-top: 4px;
    }
    .mem-det {
      padding: 13px 0 !important;
    }
    .mem-det .row > *{
      margin: 0;
    }
    .mem-det .soft-card h5, .mem-det .soft-card h6, .more-mem h2{
      font-size: 16px !important;
    }
    .mem-det .soft-card li{
      font-size: 12px;
    }

  }
  /* Mobile filter button - hidden on desktop */
  .mobile-filter-btn {
    display: none;
  }


  /* Close button */
  .filter-close {
    display: none;
    border: 0;
    background: transparent;
    font-size: 16px;
    padding: 4px;
    cursor: pointer;
  }


  /* Overlay */
  .filter-overlay {
    display: none;
  }


/* =========================
MOBILE
========================= */

@media (max-width: 1180px) {

  /* Show filter button */
  .mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 9px 16px;
    border-radius: 50px;
    background: var(--dsi-gradient);
    color: #fff;
    border: 0;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 111, 174, 0.35);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
  }


  /* Sidebar becomes off-canvas */
  aside.col-lg-3 {
    width: auto;
  }

  .filter-sidebar {
    position: fixed;

    top: 0;
    left: 0;

    width: min(320px, 88vw);
    height: 100vh;

    margin: 0 !important;
    border-radius: 0 !important;

    z-index: 1055;

    overflow-y: auto;

    transform: translateX(-105%);
    transition: transform 0.3s ease;

    padding: 20px !important;
  }


  /* Sidebar open */
  .filter-sidebar.active {
    transform: translateX(0);
  }


  /* Close button */
  .filter-close {
    display: block;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-left: auto;

    border-radius: 50%;
  }


  /* Make heading flex */
  .filter-sidebar > h6 {
    display: flex;
    align-items: center;
    gap: 5px;
  }


  /* Overlay */
  .filter-overlay {
    display: block;

    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1050;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease,
    visibility 0.3s ease;
  }


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


  /* Prevent background scrolling */
  body.filter-open {
    overflow: hidden;
  }
 /* mobile navbar */
  /* Hide hamburger */
  .navbar-toggler {
      display: none !important;
  }

  /* Don't use Bootstrap collapse on mobile */
  #mainNav {
      display: flex !important;
      visibility: visible !important;
      height: auto !important;
      overflow: visible !important;
      padding: 0;
      flex-direction: row;
      max-width: 40%;
  }
  /* Hide navigation links */
  #mainNav .navbar-nav, #mainNav .btn-gradient {
      display: none !important;
  }

  /* Keep login/register/user visible */
  #mainNav > .d-flex {
      display: flex !important;
      margin-left: auto;
  }
  .login-bg{
    height: 90vh;
    padding: 18% 0 !important;
    /* display: flex;
    padding: 0 !important;
    align-items: center; */
  }
  .register-bg{
    padding-bottom: 80px !important;
  }
}

.prose img{
  width: 100%;
  height: auto;
  max-width: fit-content;
  display: block;
  margin: 0 auto;
}
#ads-index-php-directory .ad-banner, #ads-index-php-blog .ad-banner, #ads-index-php-magazine .ad-banner, #ads-index-php-members .ad-banner, #ads-index-php-members-type-service-provider .ad-banner
{
  height: 350px;
}
#ads-index-php-directory .ad-banner img, #ads-index-php-blog .ad-banner img, #ads-index-php-magazine .ad-banner img, #ads-index-php-members .ad-banner img,#ads-index-php-members-type-service-provider img{
  background-size: cover;
  height: 100%;
}
.story-h-card
{
  grid-template-columns: 500px 1fr;
}

.blog-page-fq .faqs-sec .col-lg-4 {
  display: none;
}

.blog-page-fq .faqs-sec .col-lg-8 {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}
.blog-page-fq .faqs-sec{
  padding: 2rem 0 0 !important;
}
/* ==========================================
WAYTOACME — PREMIUM COMPACT TABLE OF CONTENTS
========================================== */

.soft-card:has(.bi-list-nested) {
  position: relative;
  padding: 16px 18px !important;
  margin-bottom: 22px !important;
  border-radius: 14px;
  overflow: hidden;
}

/* Subtle top accent */
.soft-card:has(.bi-list-nested)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  width: 42px;
  height: 2px;
  border-radius: 0 0 5px 5px;
  background: currentColor;
  opacity: .35;
}

/* ==========================================
HEADER
========================================== */

.soft-card:has(.bi-list-nested) h6 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px !important;
  padding: 0 0 11px;
  border-bottom: 1px solid rgba(0, 0, 0, .055);
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.soft-card:has(.bi-list-nested) h6 i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin: 0 !important;
  border-radius: 8px;
  background: rgba(0, 0, 0, .045);
  font-size: 13px;
}

/* ==========================================
NAVIGATION
========================================== */

.soft-card:has(.bi-list-nested) nav {
  gap: 0 !important;
}

/* Each link */
.soft-card:has(.bi-list-nested) nav a {
  position: relative;
  display: block;
  padding: 6px 8px 6px 18px;
  border-radius: 7px;
  /* color: var(--bs-secondary-color, #6c757d) !important; */
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition:
  color .18s ease,
  background-color .18s ease,
  padding-left .18s ease;
}

/* Small navigation dot */
.soft-card:has(.bi-list-nested) nav a::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .3;
  transform: translateY(-50%);
  transition:
  height .18s ease,
  opacity .18s ease,
  border-radius .18s ease;
}

/* Very subtle divider */
.soft-card:has(.bi-list-nested) nav a:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, .025);
}

/* Hover */
.soft-card:has(.bi-list-nested) nav a:hover {
  padding-left: 21px;
  background: rgb(238 239 242);
  color: var(--bs-dark, #222) !important;
}

.soft-card:has(.bi-list-nested) nav a:hover::before {
  height: 13px;
  border-radius: 4px;
  opacity: .8;
}

/* ==========================================
DESKTOP — KEEP IT COMPACT
========================================== */

@media (min-width: 992px) {

  .soft-card:has(.bi-list-nested) {
    max-height: 470px;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .soft-card:has(.bi-list-nested)::-webkit-scrollbar {
    width: 3px;
  }

  .soft-card:has(.bi-list-nested)::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, .12);
  }
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 767.98px) {

  .soft-card:has(.bi-list-nested) {
    padding: 14px !important;
    margin-bottom: 18px !important;
    border-radius: 12px;
  }
  .py-3
  {
    padding-top: 0.2rem !important;
    padding-bottom:0.2rem !important;
  }
  #ads-index-php-directory .ad-banner, #ads-index-php-blog .ad-banner, #ads-index-php-magazine .ad-banner, #ads-index-php-members .ad-banner
  {
    height:100px;
  }

  .soft-card:has(.bi-list-nested)::after {
    left: 14px;
    width: 35px;
  }

  .soft-card:has(.bi-list-nested) h6 {
    margin-bottom: 8px !important;
    padding-bottom: 9px;
    font-size: 13px;
  }

  .soft-card:has(.bi-list-nested) h6 i {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 12px;
  }

  .soft-card:has(.bi-list-nested) nav a {
    padding: 6px 6px 6px 17px;
    font-size: 12px;
  }

  .soft-card:has(.bi-list-nested) nav a:hover {
    padding-left: 19px;
  }
  .found-grid .story-h-card {
    grid-template-columns: unset;
    width: 50%;
    max-width: 48%;
    padding: 0.5rem !important;
    margin: 0 !important;
    display: inline-block;
  }
  .found-grid .story-h-card .story-media{
    min-height: auto;
    overflow: hidden;
    border-radius: var(--dsi-radius);
  }
  .found-grid .story-h-card .badge-soft, .found-grid .story-h-card .badge-verified {
    padding: 0.1rem 0.3rem !important;
    display: none;
  }
  .found-vis{
    margin-bottom: 5px !important;
    display: block !important;
  }
  .found-info {
    padding: 12px 2px 0 !important;
  }
  .found-info .btn-outline-brand{
    display: none !important;
  }
  .found-grid .story-h-card h4{
    font-size: 13px !important;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .auth-grp{
    font-size: 13px;
  }
  .story-det{
    padding-top: 0 !important;
  }
  .auth-grp img{
    width: 40px !important;
    height: 40px !important;
  }
  .prose p{
    font-size: 13px;
  }
  .prose h2{
    font-size: 17px !important;
    margin-top: 0.9rem;
  }
  .prose h3{
    font-size: 15px;
  }
  .found-grid .story-play{
    font-size: 1.3rem;
  }
  .found-grid .story-h-card p.text-muted {
    font-size: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .found-grid .story-h-card .flex-grow-1{
    font-size: 11px;
  }
  .found-info .gap-3 img{
    width: 30px !important;
    height: 30px !important;
  }
  .found-info .gap-3{
    gap: 0 7px !important;
  }
  .found-grid.gap-4 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 15px 15px !important;
  }

}
/* =====================================================
MOBILE BOTTOM NAVIGATION
===================================================== */

.mobile-bottom-nav {
  display: none;
}

.mobile-side-menu,
.mobile-menu-overlay {
  display: none;
}


/* =====================================================
MOBILE ONLY
===================================================== */

@media (max-width: 767.98px) {

  body {
    padding-bottom: 72px;
  }
  .footer
  {
    display: none;
  }

/* -------------------------------------------------
Bottom Bar
------------------------------------------------- */

.mobile-bottom-nav {
  display: block;
  position: fixed;

  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 0;
  /* background:var(--dsi-surface-glass); */
  padding:4px;

}

.mobile-bottom-nav__inner {
  position: relative;

  display: flex;
  align-items: center;

  height: 62px;

  padding: 5px;

  border-radius: 20px;

  background:var(--dsi-dark-bg);

  border: 1px solid rgba(255, 255, 255, .75);

  box-shadow:
  0 10px 35px rgba(0, 0, 0, .12),
  0 2px 8px rgba(0, 0, 0, .06);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


/* -------------------------------------------------
Nav Items
------------------------------------------------- */

.mobile-nav-item {
  position: relative;

  flex: 1;

  height: 52px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 2px;

  border: 0;
  background: transparent;

  color: var(--dsi-surface-glass);

  text-decoration: none;

  border-radius: 15px;

  cursor: pointer;

  transition:
  color .25s ease,
  transform .25s ease,
  background .25s ease;
}


.mobile-nav-icon {
  width: 32px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  font-size: 18px;

  transition:
  transform .3s ease,
  background .25s ease;
}


.mobile-nav-label {
  font-size: 9.5px;
  font-weight: 600;

  line-height: 1;

  transition: .25s ease;
}


/* -------------------------------------------------
Active Item
------------------------------------------------- */

.mobile-nav-item.active {
  color: var(--bs-light);
}

.mobile-nav-item.active .mobile-nav-icon {
  background:var(--dsi-accent);
  transform: translateY(-2px);
  color: var(--bs-light);
}

.mobile-nav-item.active .mobile-nav-icon i {
  font-weight: 700;
}


/* -------------------------------------------------
Touch / Hover
------------------------------------------------- */

.mobile-nav-item:active {
  transform: scale(.94);
}

.mobile-nav-item:hover .mobile-nav-icon {
  background:var(--dsi-accent);
  transform: translateY(-2px);
  color: var(--bs-light);
}


/* =================================================
SIDE MENU
================================================= */

.mobile-side-menu {
  display: flex;

  position: fixed;

  top: 0;
  left: 0;

  width: min(84vw, 360px);
  height: 100dvh;

  z-index: 10001;

  flex-direction: column;

  background:
  rgba(255, 255, 255, .96);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
  10px 0 40px rgba(0, 0, 0, .14);

  transform: translateX(-105%);

  transition:
  transform .38s cubic-bezier(.77,0,.18,1);

  visibility: hidden;
}


.mobile-side-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}


/* -------------------------------------------------
Overlay
------------------------------------------------- */

.mobile-menu-overlay {
  position: fixed;

  inset: 0;

  z-index: 10000;

  background: rgba(10, 10, 10, .38);

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  opacity: 0;
  visibility: hidden;

  transition:
  opacity .3s ease,
  visibility .3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}


/* -------------------------------------------------
Menu Header
------------------------------------------------- */

.mobile-side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 25px 20px 18px;

  border-bottom: 1px solid rgba(0, 0, 0, .07);
}


.mobile-menu-eyebrow {
  display: block;

  margin-bottom: 3px;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .12em;

  opacity: .5;
}


.mobile-side-menu__header h5 {
  margin: 0;

  font-size: 22px;
  font-weight: 700;

  letter-spacing: -.03em;
}


.mobile-menu-close {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;

  border-radius: 12px;

  background: rgba(0, 0, 0, .055);

  color: #222;

  font-size: 15px;

  cursor: pointer;

  transition: .2s ease;
}

.mobile-menu-close:active {
  transform: scale(.9);
}


/* -------------------------------------------------
Menu Body
------------------------------------------------- */

.mobile-side-menu__body {
  flex: 1;

  overflow-y: auto;

  padding: 20px 15px 30px;
}


.mobile-menu-section-title {
  display: block;

  margin: 0 8px 9px;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .1em;

  text-transform: uppercase;

  opacity: .45;
}


/* -------------------------------------------------
Menu Links
------------------------------------------------- */

.mobile-side-link {
  display: flex;
  align-items: center;

  gap: 11px;

  min-height: 52px;

  padding: 7px 9px;

  margin-bottom: 3px;

  border-radius: 12px;

  color: #333;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition:
  background .2s ease,
  transform .2s ease;
}


.mobile-side-link:hover,
.mobile-side-link:active {
  background: rgba(0, 0, 0, .045);
  transform: translateX(3px);
}


.mobile-side-link__icon {
  width: 36px;
  height: 36px;

  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(0, 0, 0, .045);

  font-size: 15px;
}


.mobile-side-link > span:not(.mobile-side-link__icon) {
  flex: 1;
}


.mobile-side-link > .bi-chevron-right {
  font-size: 10px;
  opacity: .35;
}


/* -------------------------------------------------
Divider
------------------------------------------------- */

.mobile-menu-divider {
  height: 1px;

  margin: 13px 8px 17px;

  background: rgba(0, 0, 0, .07);
}

}


/* =====================================================
SMALL PHONES
===================================================== */

@media (max-width: 380px) {

  .mobile-bottom-nav__inner {
    height: 59px;
    border-radius: 18px;
  }

  .mobile-nav-item {
    height: 50px;
  }

  .mobile-nav-icon {
    font-size: 17px;
  }

  .mobile-nav-label {
    font-size: 9px;
  }
  .found-grid .story-h-card {
    max-width: 47%;
  }
}
.soft-card .magazine-item:last-child, .soft-card .ls-bd:last-child{
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
[id^="sec-"] {
    scroll-margin-top: 80px;
}
.top-blogs .listing-cover img, .cat-blogs .listing-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 992px) {
    .blog-det .row {
        /* align-items: flex-start; */
    }
    .blog-det .sidebar {
        position: sticky;
        top: 100px;
        /* align-self: flex-start; */
    }

}
.prose svg {
    width: 12px;
}