html {
  scroll-behavior: smooth;
}

:root {
  /* --- LinkedIn Blue Palette --- */
  --primary-main: #0A66C2;     /* LinkedIn Blue */
  --primary-dark: #004182;     /* Dark LinkedIn */
  --primary-light: #6C9FE6;    /* Light LinkedIn */

  /* --primary-main: #0C1117;     /* LinkedIn Blue */
  /* --primary-dark: #D9A441;     /* Dark LinkedIn */
  /* --primary-light: #0ccdf0;    /* Light LinkedIn */

  --white: #FFFFFF;

  --background: #fafafa;
  --surface: #ffffff;

  --text-primary: #111827;
  --text-secondary: #6b7280;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.12),
               0 1px 2px rgba(15, 23, 42, 0.24);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.15),
               0 2px 4px rgba(15, 23, 42, 0.12);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
}

/* Info icon – clean, bold, borderless */
.info-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.info-icon-btn .bi {
  font-size: 1.4rem;          /* Increase size */
  color: #0d6efd;             /* Bootstrap primary blue */
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Hover behavior – subtle and premium */
.info-icon-btn:hover .bi {
  transform: scale(1.2);
  color: #0a58ca;             /* slightly deeper blue */
}

/* ------------------------- */
/* Cards / Surfaces          */
/* ------------------------- */

.card {
  border: none !important;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.mui-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ------------------------- */
/* Parallax Sections         */
/* ------------------------- */

.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.parallax-section .overlay {
  position: absolute;
  inset: 0;
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}

/* ------------------------- */
/* Hero Section              */
/* ------------------------- */

.hero-section {
  min-height: 70vh;
  background-image:
    linear-gradient(
      to bottom,
      rgba(10, 102, 194, 0.55),
      rgba(0, 44, 95, 0.85)
    ),
    url("images/hero-card-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-subtitle {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
}

.hero-tagline {
  max-width: 640px;
  margin-inline: auto;
}

/* ------------------------- */
/* Program / Testimonials BG */
/* ------------------------- */

.program-section {
  background-image:
    linear-gradient(
      to bottom,
      rgba(10, 102, 194, 0.85),
      rgba(0, 44, 95, 0.95)
    ),
    url("images/hero-card-2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonials-section {
  background-image:
    linear-gradient(
      to bottom,
      rgba(2, 18, 43, 0.9),
      rgba(2, 18, 43, 0.9)
    ),
    url("images/hero-card-1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ------------------------- */
/* Section Labels / Headers  */
/* ------------------------- */

/* Big section titles */
.section-title {
  color: var(--text-primary);
  font-size: 2rem;
}

/* If you still use section-overline anywhere, keep it neutral */
.section-overline {
  color: var(--primary-main);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

/* No decorative lines under any headings */
#program .text-center,
#services .text-center {
  padding-bottom: 0;
}

#program .text-center::after,
#services .text-center::after {
  content: none;
}

/* ------------------------- */
/* Per-section background    */
/* ------------------------- */

#who-we-are {
  background-color: #ffffff;        /* clean white */
}

#services {
  background-color: #eef2f7;        /* soft cool gray */
}

#coach {
  background-color: #ffffff;        /* white again for contrast */
}

#contact {
  background-color: #f5f7fb;        /* very light blue-gray */
}

/* Program & Testimonials use their parallax backgrounds via classes */

/* ------------------------- */
/* Who We Are                */
/* ------------------------- */

.who-logo-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary-main),
    var(--primary-light)
  );
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-logo-avatar span {
  transform: translateY(2px);
}

/* Replace avatar with actual logo */

.who-logo-avatar-logo {
  width: 156px;
  height: 156px;
  border-radius: 0px;    /* subtle rounding for modern style */
  overflow: hidden;
  background: #fff;       /* or remove if logo has its own background */
  box-shadow: none;       /* no shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid rgba(0,0,0,0.06); /* optional hairline border */
}

.who-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* preserves your logo proportions */
  padding: 6px;        /* optional – reduce if logo should fill */
}

.pillars-card {
  padding: 1.25rem 1.5rem;
}

.pillar-icon {
  font-size: 1.1rem;
  color: var(--primary-main);
  opacity: 0.9;
}


/* ------------------------- */
/* Services                  */
/* ------------------------- */

.price-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: baseline;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1rem;
}

.new-price {
  color: #ff3057; /* Bootstrap primary */
  font-size: 1.4rem;
  font-weight: 700;
}

.promo-note {
  font-style: italic;
}

.promo-ribbon {
  background: #ff3057;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card .card-title {
  color: var(--primary-main);
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-main);
}

/* subtitle under price */
.service-subtitle {
  color: var(--text-secondary);
}

/* structured header inside card */
.service-header {
  margin-bottom: 0.25rem;
  /* tweak this to align bullet lists across cards */
  min-height: 160px;
}

/* divider between description and bullet list */
.service-divider {
  border-color: rgba(15, 23, 42, 0.08);
  margin: 0.85rem 0 0.85rem;
}

/* Features list with custom bullet icon */
.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.service-features li::before {
  content: "";
  flex: 0 0 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  margin-top: 0.35rem;
  background: linear-gradient(
    135deg,
    var(--primary-main),
    var(--primary-light)
  );
}

.service-price-bottom {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-main);
  text-align: center;
}


/* ------------------------- */
/* 12-Week Program Card      */
/* ------------------------- */

.program-card {
  padding: 2.5rem;
  background-color: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.program-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
}

.program-price2 {
  font-size: 1rem;
  font-weight: 800;
}

.included-list {
  list-style-type: circle;      /* bullet style */
  margin-left: 0.5rem;
  opacity: 0.85;
}

.included-list li {
  font-size: 0.9rem;
}

/* ------------------------- */
/* Coach Section             */
/* ------------------------- */

.coach-photo-wrapper {
  max-width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-left: auto;
  margin-right: auto;
}

.coach-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ------------------------- */
/* Testimonials              */
/* ------------------------- */

.testimonial-card {
  max-width: 650px;
  padding: 2rem 2.5rem;
  background-color: rgba(15, 23, 42, 0.45);
  border-radius: var(--radius-lg);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
}

/* Testimonials carousel spacing & indicators */
#testimonialsCarousel {
  padding-bottom: 2rem; /* gives breathing room below the card */
}

#testimonialsCarousel .carousel-indicators {
  position: static;         /* remove absolute positioning from Bootstrap */
  margin-top: 1.75rem;      /* push them further away from the card */
}

#testimonialsCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px; /* circle */
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 6px;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

#testimonialsCarousel .carousel-indicators .active {
  background-color: var(--primary-light);
  opacity: 1;
  transform: scale(1.15);
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
  width: 8%;
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
}



/* ------------------------- */
/* Contact Card              */
/* ------------------------- */

.contact-info-card {
  padding: 2rem;
}

/* ------------------------- */
/* Navbar                    */
/* ------------------------- */

.navbar-brand {
  letter-spacing: 0.03em;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-light) !important;
}

.aura-navbar {
  background-color: rgba(0, 0, 0, 0.78); /* black, slightly transparent */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  transition: background-color 0.25s ease;
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #ffffff !important; /* default white */
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  position: relative;
  font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary-light) !important; /* LinkedIn light blue */
}

/* Active = highlighted */
.navbar-nav .nav-link.active {
  color: var(--primary-light) !important;
  font-weight: 600;
}

.nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Separator between nav items */
.navbar-nav .nav-link:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
}

/* Make navbar taller on desktop only */
@media (min-width: 992px) {
  .aura-navbar {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}

/* ------------------------- */
/* Buttons                   */
/* ------------------------- */

.btn-primary {
  background-color: var(--primary-main);
  border-color: var(--primary-main);
  border-radius: var(--radius-md);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-light {
  border-radius: var(--radius-md);
}

/* ------------------------- */
/* Contact Section           */
/* ------------------------- */

.contact-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-item a {
  color: var(--primary-main);
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary-dark);
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--primary-main);
  flex-shrink: 0;
}

.contact-blurb {
  background: #f8f9fb;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Make card visually wider but still centered */
#contact .contact-card {
  max-width: 100%;
}

/* On larger screens, allow plenty of breathing room */
@media (min-width: 992px) {
  #contact .contact-card {
    padding: 2.75rem 3.25rem;
  }
}


/* ------------------------- */
/* Footer                    */
/* ------------------------- */

.footer {
  font-size: 0.85rem;
}

/* ------------------------- */
/* Mobile Tweaks             */
/* ------------------------- */

.hero-cta .btn {
  white-space: nowrap; /* keep text on one line on wider screens */
}

/* On very small screens, let them be full width */
@media (max-width: 575.98px) {
  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    background-attachment: scroll; /* better performance on mobile */
  }

  .program-section,
  .testimonials-section {
    background-attachment: scroll;
  }

  .testimonial-card {
    padding: 1.5rem 1.75rem;
  }

  .program-card {
    padding: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Main list items (titles) */
.modal-info-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.modal-info-list > li {
  margin-bottom: 1rem;
}

/* Sub-list bullets (blue dots) */
.nested-list {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.3rem;
}

.nested-list li {
  position: relative;
  margin-bottom: 0.3rem;
}

.nested-list li::before {
  content: "";
  position: absolute;
  left: -0.7rem;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  background: #0d6efd; /* This matches Bootstrap primary */
  border-radius: 50%;
}