/* ===== Global Brand and Base Tokens ===== */
:root {
  --brand: #002b4a; /* deep navy */
  --brand-800: #061f36; /* darker navy */
  --accent: #00d4ff; /* cyan-blue accent */
  --accent-700: #00b8e0; /* bright cyan tone */
  --accent-300: #7fe9ff; /* light cyan highlight */
  --text: #eaf1f9; /* main light text */
  --text-dark: #142033; /* dark text */
  --muted: #9fb0c7; /* muted gray-blue text */
  --light-bg: #0b1f33; /* section background */

  /* Extended custom variables for glow effects */
  --glow: rgba(0, 212, 255, 0.15); /* soft glow */
  --hover-glow: rgba(0, 212, 255, 0.4); /* bright glow on hover */
}

html,
body {
  background: linear-gradient(
    180deg,
    var(--light-bg) 0%,
    var(--brand-800) 100%
  );
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
}
h1,
h2,
h3,
.navbar-brand {
  font-family: "Poppins", "Open Sans", sans-serif;
}

/* Heading underline */
h2.fw-bold {
  position: relative;
  display: inline-block;
}
h2.fw-bold::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  bottom: -10px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

nav ul {
  border: 2px solid #405a86;
  border-radius: 20px;
  z-index: 9999;
}
.nav-link {
  font-weight: 200;
}
.nav-link:hover {
  color: #00b8e0;
}

nav .active:hover {
  color: #00b8e0 !important;
}

.fw-extrabold {
  font-weight: 800;
}

/* Navbar */
.navbar {
  background-color: transparent !important;
  z-index: 9999;
}
.navbar-scroll {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(8px);
  z-index: 9999;
}

.nav-logo {
  width: 120px;
  height: 60px;
}

@media (max-width: 992px) {
  .navbar {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
    z-index: 9999;
  }
  .nav-link {
    color: #fff;
  }
}

/*hambuger menu*/
.menu-toggle {
  width: 26px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  outline: none;
  caret-color: transparent;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #00d4ff;
  border-radius: 3px;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* PERFECT X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}
/*hambuger menu end*/

.btn-outline-brand {
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline-brand:hover {
  background-color: var(--brand);
  color: #fff;
}
.btn-brand {
  background: linear-gradient(135deg, #0a2b4a, #134c86);
  color: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  background-size: 200% 200%;
}
.btn-brand:hover {
  animation: gradientShift 2.5s ease infinite;
  color: #fff;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-300));
  color: #001a2b;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.25);
  background-size: 200% 200%;
}
.btn-accent:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 212, 255, 0.35);
  animation: gradientShift 2.5s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn,
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover,
.card:hover {
  transform: translateY(-2px);
}
.glow-hover:hover {
  text-shadow: 0 0 12px rgba(127, 233, 255, 0.6);
}
.text-accent {
  color: var(--accent);
}

/* Hero */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  margin-top: 0;
}

/* Slideshow Container */
.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.prev {
  transform: translateX(100%);
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

.hero-section .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

/* Content Container */
.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: sans-serif;
}

.hero-content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
    opacity 0.6s ease 0.2s, visibility 0s 0.8s;
  pointer-events: none;
  visibility: hidden;
}

.hero-content.active {
  opacity: 1 !important;
  transform: translateX(0) !important;
  pointer-events: auto;
  visibility: visible;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
    opacity 0.6s ease 0.2s, visibility 0s 0s;
}

.hero-content.prev {
  transform: translateX(100%) !important;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease,
    visibility 0s 0.8s;
}

/* Navigation Buttons */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background: rgba(0, 212, 255, 0.2);
  border: 2px solid rgba(0, 212, 255, 0.5); */
  background: transparent;
  border: none;
  color: #045895;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /* backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
}

/* .hero-nav-btn:hover {
  background: rgba(0, 212, 255, 0.4);
  border-color: #00d4ff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
} */

.hero-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-prev-btn {
  left: 20px;
}

.hero-next-btn {
  right: 20px;
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px);
    z-index: 9999;
  }
  .hero-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background: transparent;
    /* border: none; */
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
  .hero-prev-btn {
    left: 5px;
  }
  .hero-next-btn {
    right: 5px;
  }
}

.live-chart-section .wt-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}
.live-chart-section {
  /* background: linear-gradient(
    90deg,
    rgba(0, 43, 74, 1) 0%,
    rgb(11, 82, 132) 50%,
    rgba(9, 57, 89, 1) 96%
  ); */
  background-image: url("../images/world.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.live-chart-section .card {
  /* background: linear-gradient(180deg, #0b1f33 0%, #1463ad 100%); */
  background: transparent;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 16rem;
}

/* Background subtle glow */
.why-trade-section .wt-bg-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow) 30%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(100px);
  z-index: 0;
}

/* Headings */
.why-trade-section .wt-title {
  color: var(--accent);
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.why-trade-section .wt-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Cards */
.wt-bg-glow {
  pointer-events: none;
}

.why-trade-section .wt-card {
  background-color: rgba(6, 31, 54, 0.8);
  border: 1px solid var(--accent-700);
  border-radius: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.why-trade-section .wt-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--hover-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-trade-section .wt-card:hover::before {
  opacity: 1;
}

.why-trade-section .wt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px var(--hover-glow);
}

/* Icons */
.why-trade-section .wt-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-700), var(--accent-300));
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: wt-icon-float 4s ease-in-out infinite;
}

.why-trade-section .wt-card:hover .wt-icon {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

/* Floating animation for icons */
@keyframes wt-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Text styles */
.why-trade-section .wt-card-title {
  color: var(--accent-300);
  font-weight: 600;
  font-size: 1.1rem;
}

.why-trade-section .wt-card-text {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Account type Slider container */
/* ======== ACCOUNT TYPE CARDS ======== */

.account-types-section h2 {
  color: #fff;
}

.ats-card {
  background: var(--brand-800);
  border-radius: 18px;
  padding: 25px 20px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px var(--glow);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  font-family: "Open Sans", Arial, sans-serif;
}

/* Glow border on hover */
.ats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px var(--hover-glow);
  border-color: var(--accent);
}

/* Header */
.ats-card-header {
  background: linear-gradient(to right, var(--brand), var(--brand-800));
  padding: 12px 0;
  color: var(--market-text);
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card body */
.ats-card-body h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.ats-card-body p {
  color: var(--muted);
  margin-bottom: 15px;
}

.ats-card-body ul {
  padding-left: 18px;
  text-align: center;
  list-style: none;
}

.ats-card-body ul li {
  margin: 20px 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* Button */
.ats-btn {
  background: var(--accent);
  border: none;
  padding: 10px 20px;
  color: var(--brand-800);
  font-weight: 600;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ats-btn:hover {
  background: var(--accent-700);
  box-shadow: 0 0 12px var(--hover-glow);
}

/* ======== SLIDER ELEMENTS ======== */
.ats-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ats-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* 3 Columns Default */
.ats-slide-item {
  flex: 0 0 calc(100% / 3);
  padding: 15px;
}

/* Tablet */
@media (max-width: 992px) {
  .ats-slide-item {
    flex: 0 0 50%;
  }
  .ats-card {
    width: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ats-slide-item {
    flex: 0 0 100%;
  }
}

/* Navigation Buttons */
.ats-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  /* background: var(--brand); */
  background: transparent;
  /* border: 1px solid var(--accent-700); */
  border: 1px solid #03497c;
  /* color: var(--accent); */
  color: #045895;
  padding: 10px 14px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .ats-nav-btn:hover {
  background: var(--accent);
  color: var(--brand-800);
  box-shadow: 0 0 20px var(--hover-glow);
} */

.ats-prev-btn {
  left: 0;
}
.ats-next-btn {
  right: 0;
}

/* Default scale for all slides */
.ats-slide-item {
  flex: 0 0 calc(100% / 3);
  padding: 15px;
  transition: transform 0.4s ease, z-index 0.4s ease;
}

/* Center card gets bigger */
/* Style for the center card */
.ats-slide-item.center .ats-card {
  transform: scale(1.05); /* slightly bigger */
  border: 2px solid var(--accent); /* glowing border */
  box-shadow: 0 0 35px var(--hover-glow), 0 10px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    145deg,
    var(--brand-800),
    var(--brand-700)
  ); /* subtle gradient */
  transition: all 0.4s ease;
}

.ats-slide-item.center .ats-card-header {
  color: var(--accent-300);
  text-shadow: 0 0 8px var(--accent-700);
}
.ats-slide-item.center h1 {
  color: var(--text);
  text-shadow: 0 0 8px var(--accent-700);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ats-slide-item {
    flex: 0 0 50%;
  }
  .ats-slide-item.center {
    transform: scale(1);
  }
}

@media (max-width: 576px) {
  .ats-slide-item {
    flex: 0 0 100%;
  }
  .ats-slide-item.center {
    transform: scale(1);
  }
}

/*======= about-section =======*/
.about-section {
  --market-brand: #002b4a;
  --market-accent: #00d4ff;
  --market-text: #eaf1f9;
  --market-muted: #9fb0c7;
  color: var(--market-text);
  position: relative;
  overflow: hidden;
}

.about-section {
  background: linear-gradient(
    90deg,
    rgba(0, 43, 74, 1) 0%,
    rgba(0, 127, 200, 1) 26%,
    rgba(0, 43, 74, 1) 100%
  );
}

.about-section h2 {
  color: #fff;
}
.about-section img {
  filter: drop-shadow(0 4px 20px rgba(65, 158, 245, 0.522));
}

.about-section p {
  color: var(--market-text);
}

.about-section .market-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.about-section .market-stat-box:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--market-accent);
}

.about-section .market-counter {
  color: var(--market-accent);
}

/* how-works section */
.how-works-section .container {
  /* background: linear-gradient(
    90deg,
    rgba(0, 43, 74, 1) 0%,
    rgba(0, 127, 200, 1) 26%,
    rgba(0, 43, 74, 1) 100%
  ); */
  background-image: url("../images/how-works.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
.how-works-section .card {
  /* background-color: var(--brand); */
  background: transparent;
  backdrop-filter: blur(10px);
  border: 1px solid #1463ad;
}

.how-works-section .card-title {
  font-weight: bolder;
  color: var(--accent);
}

.how-works-section p {
  color: #b3b8bd;
}

.how-works-section img {
  animation: img-float 3s ease-in-out infinite;
}

/* Floating animation for icons */
@keyframes img-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ======== INSTRUMENTS SECTION ======== */
.instruments-section {
  background: linear-gradient(180deg, #0b1f33 0%, #1463ad 100%);
  padding: 60px 0;
}

.instruments-section h2 {
  color: #fff;
  margin-bottom: 40px;
}

.instruments-section .card {
  background: rgba(255, 255, 255, 0.1);
  /* background: transparent;
  backdrop-filter: blur(10px); */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.instruments-section .card img {
  max-width: 80px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.instruments-section .card:hover img {
  transform: scale(1.1);
}

.instruments-section .card h5 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 10px;
}

.instruments-section .card p {
  color: var(--muted);
  font-size: 0 nine five rem;
}

.instruments-section .card:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--hover-glow);
  transform: translateY(-6px);
}

/* Unique styles for Contact Section only */
.ath-contact-section {
  background: linear-gradient(60deg, var(--light-bg) 60%, var(--accent) 40%);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
}

.ath-contact-section h4 {
  color: var(--accent);
}

.ath-contact-section .btn-brand {
  background-color: var(--accent);
  border: none;
}

.ath-contact-section .btn-brand:hover {
  background-color: var(--accent-700);
}

.ath-contact-section .text-accent {
  color: var(--accent);
}

/* Review section styling */
.review-section {
  color: #fff;
}

.review-card {
  background: var(--brand-800);
  color: var(--text);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 18px var(--glow);
  transition: 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 0 25px var(--hover-glow);
  transform: translateY(-4px);
}

.review-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--market-muted);
}

.review-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.review-stars {
  color: var(--accent-300);
  font-size: 1.3rem;
  margin-top: 8px;
}

/* ======================================
   Contact / Newsletter Section Styling
   ====================================== */
.ath-contact-section {
  background: var(--light-bg);
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* .ath-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
} */

/* Headings and text */
.ath-contact-section h4 {
  color: var(--accent);
  font-size: 1.75rem;
  letter-spacing: 0.3px;
}

.ath-contact-section i {
  color: var(--brand);
}

.ath-contact-section p {
  color: rgba(0, 0, 0, 0.6);
}

/* Form Styling */
.ath-contact-section .form-control {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
}

.ath-contact-section .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 255, 0.1);
}

/* Button */
.ath-contact-section .btn-brand {
  background: var(--accent);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.ath-contact-section .btn-brand:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
}

/* Contact Card */
.ath-contact-section .contact-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ath-contact-section .contact-card .divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

.ath-contact-section .text-accent {
  color: var(--accent);
}

.ath-contact-section a {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.ath-contact-section a:hover {
  color: var(--accent-700);
}

/* Animation on scroll visibility */
.ath-contact-section [data-aos] {
  transition: all 0.6s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section .blog-card {
    border-radius: 12px;
  }
}

/* Footer */
.border-white-25 {
  border-color: rgba(255, 255, 255, 0.25) !important;
}
.footer-gradient {
  background: linear-gradient(180deg, #031222 0%, #00182c 50%, #031b33 100%);
}

/* Market stats */
.stat-box {
  background: rgba(248, 251, 255, 0.75);
  border: 1px solid rgba(20, 32, 51, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Blog hover zoom */
.blog-card .card-img-top {
  transition: transform 0.35s ease;
}
.blog-card:hover .card-img-top {
  transform: scale(1.05);
}

/* Scroll-to-top */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-300));
  color: #001a2b;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(0, 212, 255, 0.35);
}

/* Utilities */
.shadow-lg {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .display-4 {
    font-size: 2rem;
  }
  .hero-section {
    min-height: 64vh;
  }
}

/* Parallax helper (applied by JS to adjust bg position) */
.parallax-active .hero-bg {
  will-change: background-position;
}
