/* =========================================================================
   ROOT VARIABLES
   ========================================================================= */
:root {
  --bg: #fafbfc;
  --surface: #ffffff;
  --alt: #f4f7fa;
  --blue: #174a7c;
  --blue-2: #2a6f97;
  --gold: #c59d3d;
  --green: #2e8b57;
  --text: #111827;
  --secondary: #4b5563;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 14px 40px rgba(23, 74, 124, 0.09);
  --radius: 22px;
  --bg-soft: #eef1f6;
}

/* =========================================================================
   GLOBAL STYLES
   ========================================================================= */
* { 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Justified body copy, tighter paragraph rhythm */
p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  margin: 0 0 0.85rem;
}

p:last-child { margin-bottom: 0; }

.text-center p,
.center-heading p {
  text-align: center;
  text-align-last: auto;
}

body.is-loading { 
  overflow: hidden; 
}

a { 
  color: inherit; 
  text-decoration: none; 
}

img { 
  max-width: 100%; 
  display: block; 
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5, h6, .display-font {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em; 
  line-height: 1.25;
  color: var(--text);
}

.display-name {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem); 
  margin: 1rem 0 1.25rem; 
  font-weight: 800;
  color: var(--text);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0.85rem 0 1rem;
}

.contact-title {
  max-width: 800px;
  line-height: 1.35;
}

.lead-text {
  color: var(--secondary);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px; 
  background: var(--gold);
}

/* =========================================================================
   LAYOUT & SECTIONS
   ========================================================================= */
.section { 
  padding: 120px 0; 
}

.section-alt { 
  background: var(--alt); 
}

.hero {
  min-height: 95vh;
  padding: 180px 0 100px; 
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center; 
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 82% 18%, rgba(197,157,61,0.16), transparent 29%),
    linear-gradient(135deg, rgba(23,74,124,0.08), transparent 38%);
  pointer-events: none;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 2%) scale(1.06); }
}

.hero-statement {
  max-width: 650px; 
  color: var(--secondary);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  margin: 1.8rem 0 2.5rem; 
  line-height: 1.6;
}

.page-hero {
  padding: 160px 0 90px;
  background: linear-gradient(135deg, rgba(23,74,124,.08), rgba(197,157,61,.09));
}

.container-wide {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */
/* Role Tags */
.role-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem; 
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.role-line span {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

/* Buttons */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.9rem 1.4rem; 
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  font-size: 0.95rem;
  overflow: hidden;
  isolation: isolate;
}

.btn-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-premium:hover::before {
  transform: translateX(120%);
}

.btn-primary-premium { 
  background: var(--blue); 
  color: #fff; 
  border-color: var(--blue); 
}

.btn-gold { 
  background: var(--gold); 
  color: #fff; 
  border-color: var(--gold); 
}

.btn-soft { 
  background: rgba(255, 255, 255, 0.85); 
  color: var(--blue); 
}

.btn-premium:hover { 
  transform: translateY(-3px); 
  box-shadow: var(--shadow-soft); 
  color: inherit; 
}

.btn-primary-premium:hover, 
.btn-gold:hover { 
  color: #fff; 
}

/* Cards */
.card-premium {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.055);
  padding: clamp(1.6rem, 3vw, 2.8rem); 
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-premium:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow); 
}

/* Image Frames with Fallback Backgrounds */
.portrait-frame, 
.feature-image,
.book-cover {
  background-color: #ebedf0;
  position: relative;
  overflow: hidden;
}

.portrait-frame {
  border-radius: 34px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature-image {
  border-radius: var(--radius);
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-soft);
}

.book-card .book-cover { 
  aspect-ratio: 3 / 4.35; 
  border-radius: 16px; 
}

.portrait-frame img,
.feature-image img,
.book-card .book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portrait-frame:hover img,
.feature-image:hover img { 
  transform: scale(1.045); 
}

.book-cover img,
.book-card .book-cover img {
  transition: transform 0.5s ease;
}

.book-cover:hover img,
.book-card .book-cover:hover img {
  transform: scale(1.04) rotate(-1deg);
}

.card-premium i.fa-2x {
  display: inline-block;
  transition: transform 0.4s ease;
}

.card-premium:hover i.fa-2x {
  transform: scale(1.15) rotate(-6deg);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 84px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.btn-text-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.btn-text-link:hover {
  gap: 0.6rem;
  color: var(--blue);
}

/* =========================================================================
   ZIGZAG SPLIT SECTIONS (About page "More Than A Profession" style rows)
   ========================================================================= */
.split-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-visual,
.split-text {
  flex: 1 1 50%;
  min-width: 0;
}

.split-text .eyebrow {
  margin-bottom: 0.75rem;
}

.split-text .section-heading,
.section-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  margin-bottom: 1.1rem;
}

.split-text p {
  color: var(--secondary);
  font-size: 1.06rem;
  line-height: 1.75;
}

.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-row:hover .img-frame {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.split-row:hover .img-frame img {
  transform: scale(1.06);
}

/* Section heading centered above a grid (e.g. Initiatives) */
.center-heading {
  text-align: center;
}

.center-heading.mb {
  margin-bottom: 3rem;
}

.center-heading .eyebrow {
  justify-content: center;
}

/* Card grid + editorial cards (Initiatives I Founded) */
.card-grid {
  display: grid;
  gap: 2rem;
}

.editorial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.055);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.editorial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(23, 74, 124, 0.25);
}

.editorial-card h4 {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 0.9rem;
}

.editorial-card p {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 0;
}

.focus-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.focus-list li {
  background: rgba(23, 74, 124, 0.08);
  color: var(--blue-2);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.editorial-card:hover .focus-list li {
  background: rgba(23, 74, 124, 0.14);
}

.focus-list li:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .split-row,
  .split-row.reverse {
    flex-direction: column;
    gap: 2.25rem;
    margin-bottom: 3rem;
  }

  .split-visual,
  .split-text {
    flex: 1 1 100%;
    width: 100%;
  }

  .split-text {
    text-align: left;
  }
}


.stat-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.25rem; 
}

.stat { 
  padding: 1.4rem; 
  border: 1px solid var(--border); 
  border-radius: 18px; 
  background: rgba(255, 255, 255, 0.68); 
}

.stat strong { 
  display: block; 
  font-family: "DM Sans", sans-serif; 
  font-size: 2.25rem; 
  font-weight: 700;
  color: var(--blue); 
}

/* Tags & Citations */
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(42, 111, 151, 0.09);
  margin: 0.14rem;
}

.tag.gold { 
  color: #7a5b13; 
  background: rgba(197, 157, 61, 0.17); 
}

.tag.green { 
  color: var(--green); 
  background: rgba(46, 139, 87, 0.1); 
}

.publication-card { 
  margin-bottom: 1rem; 
}

.citation { 
  font-size: 1.05rem; 
  color: var(--text); 
}

/* Filters */
.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--secondary);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

.filter-btn.active, 
.filter-btn:hover { 
  background: var(--blue); 
  color: #fff; 
  border-color: var(--blue); 
}

/* =========================================================================
   TIMELINE (Experience & Qualifications) — animated, works at all sizes
   ========================================================================= */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}

.timeline::before {
  content: none;
}

.timeline-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 2.75rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(23, 74, 124, 0.18);
  animation: timelinePulse 2.4s ease-in-out infinite;
  transition: background 0.3s ease, transform 0.3s ease;
}

.timeline-item:hover::before {
  background: var(--gold);
  transform: scale(1.15);
}

.timeline-item:hover .timeline-role,
.timeline-item:hover .timeline-degree {
  color: var(--blue-2);
}

/* Designations — bold at every breakpoint */
.timeline-role {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.timeline-org {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline-degree {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.timeline-uni {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.timeline-date {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(23, 74, 124, 0.06);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

@keyframes timelinePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(23, 74, 124, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(23, 74, 124, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-item::before { animation: none; }
}

/* Forms */
.story-block p {
  color: var(--secondary);
  font-size: 1.08rem;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.form-control, 
.form-select {
  border-radius: 14px;
  border-color: var(--border);
  padding: 0.88rem 1rem;
}

.form-control:focus, 
.form-select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 0.22rem rgba(42, 111, 151, 0.12);
}
/* =========================================================================
   ARTICLE / BOOK ROWS (For Writeups Page)
   ========================================================================= */
.article-list {
  margin-top: 3rem;
}

.article-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
  background: transparent !important; /* Force transparent background */
  box-shadow: none !important;        /* Remove white box shadow */
  border: none !important;            /* Remove border */
  padding: 0 !important;              /* Remove padding */
}

.article-row.reverse {
  flex-direction: row-reverse;
}

.article-cover {
  flex: 0 0 35%;
  max-width: 35%;
  background: transparent !important; /* Force transparent */
  box-shadow: none !important;        /* Remove shadow */
}

.article-cover img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow); /* Keep shadow on the IMAGE only */
}

.article-body {
  flex: 1;
  background: transparent !important; /* Force transparent */
  border: none !important;            /* Remove border */
  padding: 0 !important;              /* Remove padding */
}

.article-body h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  color: var(--blue-2);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.article-body p {
  color: var(--secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}


/* =========================================================================
   NAVIGATION & UI ELEMENTS (INJECTED)
   ========================================================================= */
.navbar {
  background: rgba(250, 251, 252, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.72);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.scrolled { 
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07); 
  background: rgba(255, 255, 255, 0.95); 
}

.navbar-brand {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0;
}

.nav-link {
  position: relative;
  color: var(--secondary);
  font-family: "DM Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  margin: 0 0.2rem;
  border-radius: 999px;
  padding: 0.55rem 0.9rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover, 
.nav-link.active {
  color: var(--blue);
  background: rgba(23, 74, 124, 0.07);
}

.navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 0.45rem;
  margin-top: 0.5rem;
  min-width: 200px;
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: 0.58rem 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--secondary);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
  background: rgba(23, 74, 124, 0.08);
  color: var(--blue);
}

.nav-link.dropdown-toggle::after {
  vertical-align: 0.15em;
  margin-left: 0.4rem;
}

/* Loaders & Progress */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.hidden { 
  opacity: 0; 
  visibility: hidden; 
}

.loader-mark {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { 
  to { transform: rotate(360deg); } 
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2100;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--blue-2));
}

/* Footer & Utilities */
footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

footer a { 
  color: var(--secondary); 
  display: block; 
  margin: 0.45rem 0; 
  font-weight: 600;
}

footer a:hover { 
  color: var(--blue); 
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible { 
  opacity: 1; 
  transform: translateY(0); 
  animation: btPulse 2.6s ease-in-out infinite;
}

@keyframes btPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23, 74, 124, 0.35); }
  50% { box-shadow: 0 0 0 9px rgba(23, 74, 124, 0); }
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 991px) {
  .section { 
    padding: 78px 0; 
  }
  
  .hero { 
    padding-top: 130px; 
    align-items: flex-start;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 0.75rem;
    margin-top: 0.75rem;
    box-shadow: var(--shadow-soft);
  }
  
  .navbar .dropdown-menu {
    box-shadow: none;
    border-color: transparent;
    background: rgba(23, 74, 124, 0.04);
    margin-top: 0.25rem;
  }
  
  .stat-grid { 
    grid-template-columns: 1fr; 
  }
  
  /* Mobile stack for alternating book rows */
  .article-row, 
  .article-row.reverse {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .article-cover {
    flex: 0 0 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   MOBILE & NAVBAR FIXES
   ========================================================================== */

@media (max-width: 991px) {

  /* Hero */
  .hero {
    min-height: auto;
    padding: 105px 0 60px;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  /* Typography */
  .display-name {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-statement,
  .story-block p,
  .lead-text {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* Buttons */
  .btn-premium {
    width: 100%;
    justify-content: center;
  }

  /* Portrait */
  .portrait-frame {
    margin-top: 2rem;
  }

  /* Mobile Navbar */
  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    margin-top: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none !important;
    box-shadow: none !important;
    background: #f7f8fa !important;
  }

}
