/* ============================================================
   Nancy Miller Portfolio — Design System CSS
   Color Palette: Blue #4169E1 | Teal #049e9e | Dark Navy #1a1a2e
   ============================================================ */

* { padding: 0; margin: 0; box-sizing: border-box; }

:root {
  --blue: #4169E1;
  --blue-dark: #2e58ff;
  --blue-light: #678bff;
  --teal: #049e9e;
  --teal-light: #06b6b6;
  --navy: #1a1a2e;
  --text: #4a4a5a;
  --text-light: #818992;
  --bg: #f8f9fc;
  --bg-card: #ffffff;
  --border: #e8eaf0;
  --shadow-sm: 0 2px 8px rgba(65,105,225,0.08);
  --shadow-md: 0 8px 32px rgba(65,105,225,0.12);
  --shadow-lg: 0 20px 60px rgba(65,105,225,0.16);
  --gradient-blue: linear-gradient(135deg, #4169E1 0%, #678bff 100%);
  --gradient-teal: linear-gradient(135deg, #049e9e 0%, #06d6d6 100%);
  --gradient-hero: linear-gradient(141deg, #f0f3fe 0%, #f6f8ff 28%, #fcfcff 50%, #f0fafa 72%, #e4f5f5 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); cursor: pointer; transition: color .2s; }
a:hover { color: var(--blue-dark); text-decoration: none; }

h1, h2, h3 { font-weight: 700; color: var(--navy); line-height: 1.25; }
h4, h5 { font-weight: 600; color: var(--navy); }
h6 { font-weight: 500; }

p { line-height: 1.85; }

strong { font-weight: 700 !important; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  right: 0; left: 0;
  width: 100%;
  padding: 0;
  min-height: 64px;
  line-height: 64px;
  background: transparent;
  z-index: 1030;
  transition: all .35s ease;
}
.navbar .active { color: var(--teal) !important; cursor: default; }
.navbar .navbar-brand { margin-left: -10px; }
.navbar .navbar-brand img { height: 36px; transition: transform .3s; }
.navbar .nav-item { margin: 0 4px; }
.navbar .nav-item a {
  color: #5a6178;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 0 4px;
  position: relative;
}
.navbar .nav-item a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .25s ease;
}
.navbar .nav-item a:hover::after,
.navbar .nav-item a.active::after { width: 100%; }
.navbar .nav-item a:hover { color: var(--blue); }
.navbar .nav-link { position: relative; padding: 0; }
.navbar .navbar-toggler { cursor: pointer; border: none; background: none; }
.navbar .navbar-toggler span { color: var(--text); font-size: 18px; }

.nav-scroll {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-scroll .navbar-brand img { transform: scale(1.05); }
.nav-scroll .navbar-toggler span { color: var(--navy); }

@media (max-width: 992px) {
  .navbar { background: rgba(255,255,255,0.97); box-shadow: 0 1px 12px rgba(0,0,0,0.08); }
  .navbar .navbar-collapse { text-align: center; padding: 16px 0; }
}

/* ============================================================
   Banner / Hero
   ============================================================ */
.banner {
  background: var(--gradient-hero);
  background-size: 300% 300%;
  padding: 120px 0 100px;
  position: relative;
  animation: bannerShift 10s ease infinite;
}
@keyframes bannerShift {
  0%   { background-position: 0% 30%; }
  33%  { background-position: 100% 60%; }
  66%  { background-position: 50% 0%; }
  100% { background-position: 0% 30%; }
}
.banner-overlay { position: relative; z-index: 2; }
.banner-text { margin: 50px 0 0; font-size: 16px; }
.banner-text h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--navy); }
.banner-text p { margin: 30px 0; line-height: 1.9; color: var(--text); }
.banner-text ul { list-style: none; }
.banner-text ul li { display: inline-block; margin: 0 60px 10px 0; }
.banner-text ul li a { display: block; color: var(--text); font-weight: 500; }
.banner-text ul li a:hover { color: var(--blue); }

.svg-wave { position: absolute; bottom: 0; width: 100%; left: 0;}

/* About hero overrides */
.about-hero { text-align: center; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); }
.about-hero .subtitle { font-size: 18px; color: #818992; max-width: 560px; margin: 16px auto 0; line-height: 1.8; }
.svg-hero { width: 100%; }

 

/* Animated role text */
.anim {
  margin-left: 0;
  margin-top: 12px;
  width: auto;
}
.anim__container {
  font-weight: 600;
  overflow: hidden;
  height: 40px;
  font-size: 18px;
  color: var(--blue);
}
.anim__container__text { display: inline; float: left; margin: 0; }
.anim__container__list {
  margin-top: 0;
  padding-left: 48px;
  text-align: left;
  list-style: none;
  animation: change 12s infinite;
}
.anim__container__list__item { line-height: 40px; margin: 0; white-space: nowrap; }

@keyframes change {
  0%,12%,100% { transform: translate3d(0,0,0); }
  16%,29%     { transform: translate3d(0,-17%,0); }
  33%,46%     { transform: translate3d(0,-34%,0); }
  50%,63%     { transform: translate3d(0,-50%,0); }
  67%,79%     { transform: translate3d(0,-66%,0); }
  83%,96%     { transform: translate3d(0,-83%,0); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-grad {
  padding: .75rem 2rem;
  display: inline-block;
  color: #fff;
  border-radius: var(--radius-xl);
  border: 0;
  background: var(--gradient-blue);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px rgba(65,105,225,0.35);
}
.btn-grad:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(65,105,225,0.45);
}

.about-btn {
  color: var(--blue);
  padding: 12px 40px;
  border: 2px solid var(--blue);
  margin-top: 30px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .03em;
}
.about-btn:hover {
  background: var(--gradient-blue);
  border-color: transparent;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Section Utilities
   ============================================================ */
.section-padding { padding: 100px 0; }
.prelative { position: relative; }
.white { color: #fff !important; }
.black { color: #000; }

.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.sectioner-header { width: 75%; margin: 0 auto; }
.sectioner-header p { color: var(--text-light); font-size: 16px; line-height: 1.8; }
.section-content { margin-top: 80px; }

.line {
  height: 3px;
  width: 48px;
  background: var(--teal);
  display: block;
  margin: 18px auto 20px;
  border-radius: 2px;
}
.line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120px;
  height: 3px;
  border-bottom: 2px dashed rgba(4,158,158,.35);
  margin-left: -60px;
}

/* ============================================================
   Case Study Cards (Portfolio)
   ============================================================ */
.portfolio { }
.portfolio-content { padding-top: 50px; }

.isotope:after { content: ''; display: block; clear: both; }

.isotope .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 28px 28px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.isotope .item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(65,105,225,0.15);
}
.isotope .item a,
.isotope .item a:hover { color: var(--text); text-decoration: none; }
.isotope .item h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.isotope .item img {
  border-radius: var(--radius-sm);
  margin: 16px 0 20px;
  width: 100%;
  transition: transform .4s ease;
  box-shadow: var(--shadow-sm);
  border: none;
}
.isotope .item:hover img { transform: scale(1.02); }
.isotope .item span { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.isotope .item a:hover h5 { color: var(--blue); }

/* Arrow link indicator */
.case-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

/* WIP badge */
.badge-wip {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 20px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================================
   Metric / Stats Chips
   ============================================================ */
.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}
.metric-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.metric-chip .metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  display: block;
}
.metric-chip .metric-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   Design Thinking Phase Labels
   ============================================================ */
.dt-phases {
  display: flex;
  gap: 0;
  margin: 40px 0 50px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(to right, #f5f7ff 0%, #f4fbfb 100%);
}
.dt-phase {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #6b7280;
  background: transparent;
  opacity: 1;
  transition: background .2s, color .2s;
  border-right: 1px solid var(--border);
}
.dt-phase:last-child { border-right: none; }
.dt-phase.active { color: #4169E1; background: transparent; font-weight: 600; }
.dt-phase .phase-icon { display: block; font-size: 18px; margin-bottom: 4px; }
.dt-phase i { display: block; font-size: 16px; margin-bottom: 5px; }

/* Quote / insight callout */
.insight-callout {
  background: linear-gradient(135deg, rgba(65,105,225,.07) 0%, rgba(4,158,158,.05) 100%);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.7;
}

/* HMW statement */
.hmw-statement {
  background: var(--gradient-blue);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 32px 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   Specialized Work Section
   ============================================================ */
.video-section { background: var(--bg); }
.video-overlay { background: var(--bg); }

.bigtext {
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.2;
}
.bigtext-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   More Projects — Feature Cards
   ============================================================ */
.testimonial {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}
.testimonial::before {
  content: "";
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: url(images/pattern.png);
  opacity: .4;
}

.single-feature { margin: 40px 20px; }
.single-feature h5 { font-size: 16px; font-weight: 600; color: var(--navy); }
.single-feature p { font-size: 14px; color: var(--text-light); line-height: 1.7; }
.media-right-margin { margin-right: 20px; }

.icon-border span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--teal);
  font-size: 18px;
  border: 2px solid var(--teal);
  background: rgba(4,158,158,.06);
  transition: background .2s, color .2s;
}
.single-feature:hover .icon-border span {
  background: var(--teal);
  color: #fff;
}

.media.single-feature .media-body { min-height: 100px; }

/* ============================================================
   Inner Case Study Layout (right-side + left-side TOC)
   ============================================================ */
.main-section { width: 100%; margin: 0 auto; clear: both; }
.main-section::before, .main-section::after { content: ''; display: table; clear: both; }

.right-side {
  width: 75%;
  display: inline-block;
  vertical-align: top;
  float: left;
  margin-bottom: 80px;
}
.right-side > div { margin-top: 60px; }
.right-side h3 {
  padding-bottom: 14px;
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}
.right-side p span.title,
.right-side div.inside span.title {
  font-weight: 700;
  display: block;
  font-size: 1.35rem;
  margin-bottom: .5rem;
  color: var(--navy);
}
.right-side div.inside { margin-top: 10px; }
.right-side p span.sub-title,
.right-side div.inside span.sub-title {
  font-weight: 600;
  display: block;
  font-size: 1.1rem;
  margin-bottom: .4rem;
  color: var(--blue);
}
.right-side p span.sub-title-inner,
.right-side div.inside span.sub-title-inner,
.right-side span.sub-title-inner {
  font-weight: 600;
  display: inline;
  font-size: 1.05rem;
  color: var(--navy);
}
.right-side p, .right-side div.inside { margin-bottom: 1.75rem; }
.right-side li span.title-list { font-weight: 600; color: var(--navy); }

.right-side ul {
  list-style-type: none;
  margin: 12px 0 12px 16px;
}
.right-side ul li {
  padding-left: 16px;
  padding-bottom: 20px;
  position: relative;
  line-height: 1.75;
}
.right-side ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 14px;
  top: 1px;
}

.set-ul { margin-left: 0 !important; }
.set-ul li { list-style: none; }
.set-ul li::before { content: '▸'; position: absolute; left: 0; color: var(--teal); }

.right-side img.bottom-space { margin-bottom: 40px; }

.right-side img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* Left-side sticky TOC */
.left-side {
  width: 20%;
  border-left: 2px solid var(--border);
  display: inline-block;
  float: right;
  position: sticky;
  top: 80px;
  padding-left: 20px;
  margin-top: 80px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.left-side ul { list-style: none; margin: 0; }
.left-side ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.left-side ul li:last-child { border-bottom: none; }
.left-side ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  transition: color .2s;
  display: block;
}
.left-side ul li a:hover,
.left-side ul li a.active { color: var(--blue); font-weight: 600; }
.toc-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
}

/* ============================================================
   Banner Inner (Case Study pages)
   ============================================================ */
.banner-inner {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

/* ============================================================
   Experience Timeline
   ============================================================ */
.experience {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}
.experience-content { padding-top: 60px; }
.single-timeline-box { margin-bottom: 60px; }

.experience-time h2 { font-weight: 600; font-size: 1.35rem; color: var(--navy); }
.experience-time h3 { font-size: 14px; font-weight: 400; margin-top: 8px; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; }

.main-timeline { position: relative; }
.main-timeline:before {
  content: "";
  width: 2px;
  height: 84.7%;
  background: linear-gradient(to bottom, var(--blue), var(--teal));
  position: absolute;
  top: .2%;
  left: 34.7%;
  z-index: -1;
}
.main-timeline .timeline { position: relative; }

.timeline-content span > i,
.experience-time span > i {
  color: var(--teal);
  position: absolute;
  font-size: 14px;
  left: -14.7%;
  top: 5px;
  z-index: 1;
}
.timeline-content h4.title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}
.timeline-content h5 { font-size: 14px; font-weight: 400; color: var(--text-light); margin: 10px 0 16px; }

.experience-time-responsive { display: none; }

/* ============================================================
   Education
   ============================================================ */
.education {
  background: var(--gradient-hero);
  padding-top: 60px;
}
.education-horizontal-timeline { padding: 60px 0; }
.education-horizontal-timeline .col-sm-4 { padding: 0 4px; }
.single-horizontal-timeline .experience-time h3 { text-transform: capitalize; }
.single-horizontal-timeline .timeline-content h5 { margin: 10px 0; }
.single-horizontal-timeline p { max-width: 340px; }

.timeline-horizontal-border {
  display: flex;
  align-items: center;
  padding: 20px 0 24px;
}
.timeline-horizontal-border i { font-size: 14px; color: var(--teal); margin-right: 6px; }
span.single-timeline-horizontal { display: inline-block; background: var(--border); height: 2px; width: 380px; }
span.single-timeline-horizontal.spacial-horizontal-line { width: 88px; }

/* ============================================================
   About Section
   ============================================================ */
.about { padding: 0 0 10px; }
.about-content { margin: 0 auto; padding: 20px 190px; }

.single-about-txt h3 { font-size: 20px; text-transform: initial; line-height: 1.8; }
.single-about-txt p { font-size: 16px; padding: 32px 0 40px; border-bottom: 1px solid var(--border); }

.single-about-add-info { margin: 32px 0; }
.single-about-add-info h3 { font-size: 16px; text-transform: capitalize; font-weight: 600; }
.single-about-add-info p { font-weight: 300; border: 0; padding: 0; margin-top: 3px; }

.single-about-img { position: relative; box-shadow: var(--shadow-md); border-radius: var(--radius-md); }
.single-about-img img { max-width: 500px; height: 468px; border-radius: var(--radius-md); }

/* ============================================================
   Skill Tags
   ============================================================ */
.skill-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.skill-tag {
  background: rgba(65,105,225,.08);
  color: var(--blue);
  border: 1px solid rgba(65,105,225,.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   Footer
   ============================================================ */
.footer-copy {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}
.footer-copy p { margin-bottom: 0; color: rgba(255,255,255,.5); }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 16px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: #fff; }

/* ============================================================
   Scroll Top
   ============================================================ */
#scroll-Top .return-to-top {
  position: fixed;
  right: 28px; bottom: 28px;
  display: none;
  width: 44px; height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  background: var(--gradient-blue);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
  z-index: 2;
}
#scroll-Top .return-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
#scroll-Top .return-to-top i { animation: bounceUp 1.5s ease infinite alternate; }
@keyframes bounceUp { from { transform: translateY(0); } to { transform: translateY(-5px); } }

/* ============================================================
   Numbers / Stats
   ============================================================ */
.numbers, .numbers-list { color: var(--teal); font-size: 1.6rem; font-weight: 700; }
.numbers-list { top: 5px; position: relative; }

/* ============================================================
   Quote / Said
   ============================================================ */
.said {
  border-left: 4px solid var(--border);
  padding: 18px 24px;
  margin: 16px 0 16px 20px;
  font-style: italic;
  color: var(--text);
}

/* ============================================================
   AI / Inner sections
   ============================================================ */
.inner-ai { width: 68%; margin: 0 auto; color: var(--text); font-size: 16px; text-align: left; }
.inner-ai ul { list-style: none; margin: 16px; }
.inner-ai ul li { padding-left: 10px; padding-bottom: 16px; }

/* ============================================================
   Image helpers
   ============================================================ */
.img-shadow {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
}
.img-fluid { max-width: 100%; height: auto; }

/* ============================================================
   Password Gate
   ============================================================ */
.pw-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,46,.65);
  display: grid; place-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}
.pw-card {
  width: min(92vw, 520px);
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.pw-card h1 { margin: 0 0 8px; font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.pw-card p { margin: 0 0 24px; line-height: 1.7; }
.pw-card a { color: var(--blue); }
.pw-row { display: grid; gap: 12px; margin-top: 10px; }
.pw-input {
  font-size: 1rem; padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  outline: none; transition: border-color .2s;
}
.pw-input:focus { border-color: var(--blue); }
.pw-btn {
  cursor: pointer; border: 0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 700;
  background: var(--gradient-blue);
  color: #fff;
  transition: transform .1s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(65,105,225,.3);
}
.pw-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(65,105,225,.4); }
.pw-error { display: none; color: #b91c1c; padding: 10px 0; font-size: .9rem; }
.pw-error.show { display: block; }
@keyframes shake {
  10%,90% { transform: translateX(-2px); }
  20%,80% { transform: translateX(3px); }
  30%,50%,70% { transform: translateX(-5px); }
  40%,60% { transform: translateX(5px); }
}
.shake { animation: shake .35s; }
.gate-blur { filter: blur(4px); pointer-events: none; user-select: none; }

/* ============================================================
   BxSlider overrides
   ============================================================ */
.bx-prev { left: -90px !important; background: url(images/arrow-left.png) no-repeat !important; background-size: 100% !important; }
.bx-next { right: -90px !important; background: url(images/arrow-right.png) no-repeat !important; background-size: 100% !important; }
.bx-wrapper { border: none !important; background: transparent !important; box-shadow: none !important; border-radius: var(--radius-sm) !important; }
.bx-viewport { background: transparent; }

/* ============================================================
   Container breakpoints
   ============================================================ */
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 90%; } }
@media (min-width: 992px) {
  .container { max-width: 980px; }
  .about-content { margin: 0 auto; padding: 20px 140px; }
}
@media (min-width: 1200px) { .container { max-width: 1160px; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 992px) {
  .about-content { padding: 20px 40px; }
  .single-feature { margin: 20px; }
  .media.single-feature .media-body { height: auto; }
  .right-side { width: 100%; float: none; margin-bottom: 40px; }
  .left-side { width: 100%; float: none; position: static; border-left: none; border-top: 2px solid var(--border); padding: 20px 0 0; margin-top: 0; }
  .left-side ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .left-side ul li { border-bottom: none; padding: 0; }
  .left-side ul li a { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 6px 14px; font-size: 14px; }
  .main-timeline:before { left: .4%; }
  .experience-time-responsive { display: block; }
  .experience-time-main { display: none; }
  .experience-time, .timeline-content { text-align: left !important; margin-bottom: 20px; margin-left: 40px; }
  .experience-time span > i { top: 6%; }
  .timeline-content span > i { left: -.2%; top: -118%; }
}

@media (max-width: 768px) {
  .banner { padding: 90px 0 70px; }
  .banner-text { margin: 20px 0 0; }
  .banner-text ul li { display: block; margin: 0 0 10px; }
  .intro-pic { margin-top: 30px; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.35rem; }
  .section-padding { padding: 60px 0; }
  .sectioner-header { width: 95%; }
  .about-btn { padding: 10px 28px; font-size: 14px; }
  .single-feature { margin: 16px 0; }
  .about-content { padding: 20px; }
  .right-side h3 { font-size: 1.5rem; }
  .metrics-row { flex-direction: column; }
  .dt-phases { flex-wrap: wrap; }
  .dt-phase { flex: 1 1 30%; }
  .bx-controls { display: none; }
  .bx-wrapper { margin: 0 !important; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .nav-scroll .navbar-brand img, .navbar-brand img { transform: scale(0.85) !important; }
}

@media (max-width: 576px) {
  .bigtext { font-size: 1.5rem; }
  .metric-chip .metric-value { font-size: 1.5rem; }
  .hmw-statement { font-size: 15px; padding: 20px; }
  .dt-phase { flex: 1 1 45%; }
}

/* ============================================================
   Utility classes
   ============================================================ */
.font-14 { font-size: 14px; }
.font-10 { font-size: 14px; }
.font-12 { font-size: 14px; }
.text-teal { color: var(--teal); }
.text-blue { color: var(--blue); }
.text-navy { color: var(--navy); }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.section-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

/* Print */
@media print { .navbar, #scroll-Top, .pw-overlay { display: none !important; } }
