/* ============================================================
   CSS CUSTOM PROPERTIES — Dark-mode-first colour system
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-primary:     #0d1b2a;  /* page body */
  --bg-secondary:   #1b2a3b;  /* alternate sections */
  --bg-experience:  #0f2237;  /* experience / youtube */
  --bg-achievement: #162032;  /* achievements / resume */
  --bg-card:        #1e3a5f;  /* card backgrounds */
  --bg-navbar:      #0a1628;  /* navbar / footer */

  /* Accents */
  --accent-cyan:    #00b4d8;  /* tech / SDE highlight */
  --accent-gold:    #f4a261;  /* educator / warm highlight */

  /* Text */
  --text-primary:   #e0e0e0;
  --text-secondary: #90a4ae;
  --text-heading:   #ffffff;

  /* Buttons */
  --btn-bg:         #00b4d8;
  --btn-bg-alt:     #1e3a5f;
  --btn-hover:      #2563eb;

  /* Misc */
  --border-color:   rgba(255, 255, 255, 0.1);
  --shadow:         0px 0px 14px rgba(0, 180, 216, 0.15);
  /* Navbar links always stay light (navbar bg is always dark) */
  --navbar-link-color: #e0e0e0;
}

/* Light-mode overrides */
body.light-mode {
  --bg-primary:     #f4f6fa;
  --bg-secondary:   #ffffff;
  --bg-experience:  #dbe4f0;
  --bg-achievement: #e2e8f0;
  --bg-card:        #e8edf5;
  --bg-navbar:      #1e293b;
  --accent-cyan:    #0077a8;
  --accent-gold:    #d4651a;
  --text-primary:   #1a202c;
  --text-secondary: #4a5568;
  --text-heading:   #0d1b2a;
  --btn-bg:         #0077a8;
  --btn-bg-alt:     #c7d4e8;
  --btn-hover:      #1d4ed8;
  --border-color:   rgba(0, 0, 0, 0.12);
  --shadow:         0px 0px 14px rgba(0, 119, 168, 0.12);
}

/* ============================================================
   READING PROGRESS BAR
   ============================================================ */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================================
   SECTION BACKGROUNDS  (override Bootstrap / inline styles)
   ============================================================ */
#experience,
#youtube {
  background-color: var(--bg-experience) !important;
}

#achievement,
#resume {
  background-color: var(--bg-achievement) !important;
}

/* Software/Tools section uses --bg-secondary */
#skills-section {
  background-color: var(--bg-secondary);
}

/* ============================================================
   CARDS
   ============================================================ */
.card.bg-dark {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color);
}

.card {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 24px rgba(0, 180, 216, 0.2);
}

.card-title {
  color: var(--text-heading);
}

.card-text {
  color: var(--text-secondary);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar.bg-dark {
  background-color: var(--bg-navbar) !important;
  border-bottom: 1px solid var(--accent-cyan);
}

.avatar {
  vertical-align: middle;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  margin-right: 10px;
}

.nav-link {
  color: var(--navbar-link-color) !important;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent-cyan) !important;
}

/* Dark-mode toggle switch */
#mode-toggle {
  margin-left: 12px;
  display: flex;
  align-items: center;
}

/* Light mode: navbar stays dark, so keep nav text light */
body.light-mode .navbar .nav-link {
  color: var(--navbar-link-color) !important;
}

body.light-mode .navbar .nav-link:hover,
body.light-mode .navbar .nav-link.nav-active {
  color: var(--accent-cyan) !important;
}

body.light-mode .navbar-brand {
  color: var(--navbar-link-color) !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-custom {
  background-color: var(--btn-bg-alt);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--accent-cyan);
}

.btn-custom:hover {
  background-color: var(--btn-hover);
  color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 180, 216, 0.4);
}

.btn-cust {
  background-color: var(--btn-bg);
  color: #fff;
  box-shadow: var(--shadow);
  border: none;
}

.btn-cust:hover {
  background-color: var(--btn-hover);
  color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 180, 216, 0.4);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section {
  background-color: var(--bg-card);
  padding: 40px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: var(--text-primary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-heading);
}

h2.text-center.text-light,
h2.text-center {
  color: var(--text-heading) !important;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.professional-heading {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-heading);
}

.professional-paragraph {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ============================================================
   IMAGE CONTAINER (about photo)
   ============================================================ */
.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s;
}

.image-container .overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.image-container:hover img {
  transform: scale(1.1);
}

.image-container:hover .overlay {
  opacity: 1;
}

/* ============================================================
   RESUME SECTION
   ============================================================ */
.lifted-image {
  width: 100%;
  max-width: 560px;
  height: 240px;
  background-image: url("../../static/Resume_photo.png");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin: 0 auto 28px;
  display: block;
  animation: lift 1.2s ease-in-out forwards;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: relative;
}

.lifted-image:hover {
  opacity: 0.6 !important;
}

@keyframes lift {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 0.9; transform: translateY(0); }
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel-caption {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 8px;
}

/* ============================================================
   SCROLLABLE WRAPPER
   ============================================================ */
.scrollable-container {
  overflow-y: clip;
}

/* ============================================================
   MISC LAYOUT
   ============================================================ */
.bg-image {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  position: relative;
}

/* ============================================================
   SECTION HEADINGS — use CSS variables so both modes work
   ============================================================ */
.section-heading {
  color: var(--text-heading) !important;
}

/* ============================================================
   SKILLS / SOFTWARE BADGES
   ============================================================ */
#software .btn-outline {
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
  background-color: transparent;
}

/* ============================================================
   REPO LINK BADGES in Experience cards
   ============================================================ */
.repo-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.repo-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.78rem;
  border-radius: 20px;
  background-color: rgba(0, 180, 216, 0.15);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.repo-badge:hover {
  background-color: var(--accent-cyan);
  color: #0d1b2a;
  text-decoration: none;
}

/* ============================================================
   SECTION SCROLL INDICATOR (left side)
   ============================================================ */
#section-indicator {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sec-dot {
  position: relative;   /* contain the abs-positioned label */
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 4px;     /* vertical breathing room; small horizontal touch target */
  /* gap removed — label is now absolutely positioned, not in flex flow */
}

.sec-dot-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-secondary);
  border: 2px solid var(--text-secondary);
  transition: background-color 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.sec-dot-label {
  position: absolute;        /* out of flex flow — dot hit-area stays dot-sized */
  left: calc(100% + 8px);   /* appears to the right of the circle */
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: var(--bg-navbar);
  padding: 2px 7px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.sec-dot:hover .sec-dot-label,
.sec-dot.active .sec-dot-label {
  opacity: 1;
}

.sec-dot.active .sec-dot-circle {
  background-color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: scale(1.35);
}

.sec-dot:hover .sec-dot-circle {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Hide indicator on very small screens */
@media (max-width: 576px) {
  #section-indicator {
    display: none;
  }
}

/* ============================================================
   TEACHING CARDS — clickable
   ============================================================ */
.teaching-card {
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teaching-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.22);
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   FOOTER IMPROVEMENTS
   ============================================================ */
footer.site-footer {
  background-color: var(--bg-navbar) !important;
  color: var(--text-primary);
  padding: 40px 0 20px;
  border-top: 2px solid var(--accent-cyan);
}

footer.site-footer h5 {
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 14px;
}

footer.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

footer.site-footer a:hover {
  color: var(--accent-cyan);
}

footer.site-footer .footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

footer.site-footer .footer-tagline {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 6px;
}

footer.site-footer .footer-divider {
  border-color: var(--border-color);
  margin: 20px 0 16px;
}

footer.site-footer .footer-copy {
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-align: center;
}

/* ============================================================
   GENERAL ALIGNMENT / OVERFLOW FIX
   ============================================================ */
section, .section-with-background {
  overflow-x: hidden;
  max-width: 100%;
}

.row {
  --bs-gutter-x: 1.5rem;
}

/* ============================================================
   TYPING TAGLINE (hero)
   ============================================================ */
.typing-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-cyan);
  min-height: 1.6em;
  letter-spacing: 0.03em;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent-cyan);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink-cursor 0.75s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   BACK-TO-TOP BUTTON
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  color: #0d1b2a;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background-color: var(--btn-hover);
  color: #fff;
}

/* ============================================================
   ACTIVE NAVBAR LINK
   ============================================================ */
.nav-link.nav-active {
  color: var(--accent-cyan) !important;
  border-bottom: 2px solid var(--accent-cyan);
}

/* ============================================================
   PROJECTS GRID (below carousel)
   ============================================================ */
.projects-grid {
  margin-top: 32px;
}

.project-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--text-primary);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.22);
}

.project-card h5 {
  color: var(--text-heading);
  margin-bottom: 6px;
}

.project-card .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0;
}

.project-card .tech-tag {
  font-size: 0.72rem;
  padding: 2px 9px;
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.12);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.project-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.project-card .project-link {
  font-size: 0.82rem;
  color: var(--accent-cyan);
  text-decoration: none;
  border: 1px solid var(--accent-cyan);
  padding: 3px 11px;
  border-radius: 16px;
  transition: background 0.2s;
}

.project-card .project-link:hover {
  background: var(--accent-cyan);
  color: #0d1b2a;
}

/* ============================================================
   ACHIEVEMENT CARDS — clickable indicators
   ============================================================ */
.achievement-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.achievement-card-link .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.achievement-card-link:hover .card {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.25);
  text-decoration: none;
  color: inherit;
}

.achievement-card-link .card::after {
  content: "View Details →";
  display: block;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.achievement-card-static .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.achievement-card-static .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0, 180, 216, 0.12);
}

/* ============================================================
   BLOGS SECTION
   ============================================================ */
#blogs {
  background-color: var(--bg-secondary);
}

.blog-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 20px 18px;
  text-decoration: none;
  color: var(--text-primary);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.25);
  color: var(--text-primary);
  text-decoration: none;
}

.blog-card .blog-tag {
  font-size: 0.7rem;
  padding: 2px 9px;
  border-radius: 12px;
  background: rgba(0, 180, 216, 0.12);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h5 {
  color: var(--text-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.blog-card .blog-read-link {
  font-size: 0.78rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* ============================================================
   PODCASTS & ACTIVITIES SECTION
   ============================================================ */
#activities {
  background-color: var(--bg-experience);
}

.podcast-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.25);
}

.podcast-embed {
  position: relative;
  width: 100%;
  background: #000;
}

.podcast-embed iframe {
  display: block;
  border-radius: 0;
}

.podcast-info {
  padding: 18px 20px 20px;
}

.podcast-tag {
  font-size: 0.7rem;
  padding: 2px 9px;
  border-radius: 12px;
  background: rgba(244, 162, 97, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.podcast-info h5 {
  color: var(--text-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

.podcast-info p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.podcast-link {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-decoration: none;
  border: 1px solid var(--accent-cyan);
  padding: 4px 12px;
  border-radius: 16px;
  display: inline-block;
  transition: background 0.2s ease;
}

.podcast-link:hover {
  background: var(--accent-cyan);
  color: #0d1b2a;
  text-decoration: none;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background-color: var(--bg-secondary);
}

.contact-intro {
  color: var(--text-secondary);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.25);
  color: var(--text-primary);
  text-decoration: none;
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-value {
  font-size: 0.83rem;
  color: var(--text-secondary);
  word-break: break-all;
}

/* ============================================================
   STATUS BADGE (hero — "Open to collaborations")
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--accent-cyan);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.82rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4caf50;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* ============================================================
   SKILLS — REDESIGNED (categorised grid)
   ============================================================ */
.skill-category {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 22px 20px 18px;
  height: 100%;
  box-shadow: var(--shadow);
}

.skill-category-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-cyan);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  color: var(--text-primary);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.skill-pill:hover {
  background: rgba(0, 180, 216, 0.18);
  border-color: var(--accent-cyan);
}

.skill-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.skill-pill.no-icon {
  padding: 4px 14px;
}

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal-hidden {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRINT STYLES — clean resume printing
   ============================================================ */
@media print {
  #section-indicator,
  #back-to-top,
  #mp-toggle,
  .mp-badge,
  .mp-overlay,
  header,
  footer,
  #about, #experience, #projects, #achievement,
  #skills-section, #youtube, #blogs, #activities, #contact {
    display: none !important;
  }
  #resume {
    display: block !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .lifted-image {
    background-size: contain;
    background-repeat: no-repeat;
    height: auto;
    min-height: 400px;
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ── Hero section background image ──────────────────────────────────────── */
.section-with-background {
  background-image: url("../../static/pxfuel.com.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  height: auto;
  position: relative;
}
