/* COLOR PALETTE */
:root {
  --primary-blue: #1d3273;  /* main brand blue */
  --accent-green: #69962a;  /* accent green */
}

/* GENERAL */
body,
html {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
}

/* Full-screen video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures video fills the section */
  object-position: center;
  z-index: 1;
}

/* Dark overlay (your #000000bf = rgba(0,0,0,0.75)) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000bf;
  /* or rgba(0,0,0,0.75) */
  z-index: 2;
}

/* Fallback image (shown only if video fails) */
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  /* Hidden by default */
}

/* Make sure content sits above video & overlay */
.hero-section .container,
.hero-section .row,
.hero-section .col-12,
.navbar,
.ams-subhero-title {
  position: relative;
  z-index: 3;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .hero-section {
    min-height: 80vh;
    /* Slightly shorter on smaller screens */
  }
}

/* NAVBAR */
.custom-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  padding-top: 0.75rem;
}

.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 1.2rem;
  margin-left: 1.1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-green);
}

/* Simple logo placeholder */
.logo-box {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
}

.brand-text {
  line-height: 1.1;
}

.small-sub {
  letter-spacing: 0.08em;
  opacity: 0.8;
  font-size: 0.62rem;
}

/* Schedule button */
.btn-schedule {
  background: var(--accent-green);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

.btn-schedule:hover {
  background: #567b22; /* darker green on hover */
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 12rem;
  padding-bottom: 10rem;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw + 1.2rem, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.accent-text {
  color: var(--accent-green);
}

.hero-subtitle {
  max-width: 680px;
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.btn-primary-hero {
  background: var(--accent-green);
  border: none;
  font-weight: 600;
  color: #ffffff;
}

.btn-primary-hero:hover {
  background: #567b22;
}

/* SOCIAL ICONS (right side) */
.social-icons {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1rem;
  text-decoration: none;
}

.social-icons a:hover {
  background: #14214f; /* darker blue */
}

/* FEATURE SECTION & CARDS */
.feature-section {
  position: relative;
  z-index: 3;
  margin-top: -80px; /* overlap with hero */
  padding-bottom: 80px;
}

.feature-card {
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  min-height: 230px;
}

.feature-icon i {
  font-size: 2.6rem;
  color: var(--accent-green);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 991.98px) {
  .custom-navbar {
    position: absolute;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65),
      transparent
    );
  }

  .hero-content {
    padding-top: 7rem;
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .feature-section {
    margin-top: -40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}
/* ABOUT SECTION */
.about-section {
  padding: 80px 0 120px;
}

.about-image-wrapper {
  position: relative;
  max-width: 430px;
  margin-left: auto;
}

.about-main-img {
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Small stat cards overlapping the image */
.about-stat-card {
  position: absolute;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 20px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  min-width: 190px;
}

.about-stat-card .stat-number {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.about-stat-card .stat-label {
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Positions (desktop) */
.stat-main {
  bottom: -34px;
  left: 55%;
  transform: translateX(-50%);
}

.stat-hidden {
  bottom: -120px;
  left: -10px;
  background: var(--accent-green);
}

.stat-personalized {
  bottom: -160px;
  right: -10px;
}

/* ABOUT TEXT SIDE */
.about-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #777777;
}

.about-kicker span {
  color: var(--primary-blue);
  font-weight: 600;
}

.about-kicker-line {
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-green);
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.98rem;
  color: #555555;
  max-width: 560px;
}

/* Cards: Vision / Mission */
.about-card {
  border-radius: 22px;
  padding: 24px 24px 26px;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.about-card-dark {
  background: var(--primary-blue);
}

.about-card-light {
  background: var(--accent-green);
}

.about-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .about-image-wrapper {
    margin: 0 auto 140px;
  }

  .stat-main,
  .stat-hidden,
  .stat-personalized {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .stat-main {
    bottom: -36px;
  }

  .stat-hidden {
    bottom: -116px;
  }

  .stat-personalized {
    bottom: -196px;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding-bottom: 80px;
  }

  .about-title {
    font-size: 1.9rem;
  }

  .about-image-wrapper {
    max-width: 100%;
  }

  .about-stat-card {
    min-width: 170px;
    padding-inline: 16px;
  }
}
/* HOW WE WORK SECTION */
.howwework-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

.how-kicker {
  font-size: 1rem;
  color: #222;
  letter-spacing: 0.05em;
}

.how-kicker span {
  font-weight: 600;
}

.how-line-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0.3rem auto 0.6rem;
  background: var(--accent-green);
  position: relative;
}

.how-line-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 130%;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--accent-green);
}

/* Heading: Excellence Is Our Speciality */
.how-heading {
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-blue);
}

.how-heading-main {
  color: var(--primary-blue);
}

.how-heading-accent {
  color: #29a9ff; /* light blue accent for "Is Our" */
}

/* Cards */
.how-card {
  background: #00678d; /* teal-ish blue, close to screenshot */
  color: #ffffff;
  border-radius: 26px;
  padding: 26px 26px 28px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.how-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.how-card p {
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}

/* Read More button */
.how-btn {
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 10px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  background: #29a9ff;
  color: #ffffff;
  cursor: pointer;
}

.how-btn:hover {
  background: #1c7ec2;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .how-heading {
    font-size: 1.9rem;
  }
}
/* SERVICES HERO (UNMATCHED EXPERTISE) */
.services-hero {
  position: relative;
  background: url("09/national-cancer-institute-NFvdKIhxYlU-unsplash-1.jpg") center center / cover no-repeat;
  color: #ffffff;
  min-height: 320px;
  padding: 90px 0 110px;
  overflow: hidden;
}

/* Blue tint overlay */
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 50, 115, 0.78); /* primary blue tint */
  z-index: 1;
}

/* Optional slanted top edge */
.services-hero::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 120px;
    background: #ffffff;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: 2;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Kicker line / text */
.services-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.services-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid var(--accent-green);
  padding-bottom: 2px;
}

.services-link:hover {
  color: var(--accent-green);
}

.services-kicker-line {
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-green);
}

.services-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-title .accent-text {
  color: var(--accent-green);
}

.services-text {
  font-size: 0.98rem;
  max-width: 520px;
}

/* INTEGRATION SECTION (LOGOS) */
.integration-section {
  padding: 60px 0 70px;
  background: #ffffff;
}

.integration-heading {
  font-size: 1.25rem;
  color: #222222;
}

.integration-heading span {
  color: var(--primary-blue);
  font-weight: 700;
}

.integration-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--accent-green);
}

.integration-logos img {
  max-height: 46px;
  object-fit: contain;
}

.integration-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 3px;
  background: rgba(0, 0, 0, 0.12);
}

.integration-more a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.integration-more a:hover {
  color: var(--accent-green);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .services-hero {
    padding: 80px 0 90px;
  }
}

@media (max-width: 767.98px) {
  .services-title {
    font-size: 2rem;
  }

  .services-text {
    max-width: 100%;
  }
}
/* CONSULTATION / PRICING SECTION */
.consult-section {
  position: relative;
  color: #ffffff;
  padding: 80px 0 90px;
  background:
    linear-gradient(
      to right,
      rgba(29, 50, 115, 0.3) 0%,
      rgba(29, 50, 115, 0.85) 45%,
      #005f86 100%
    ),
    url("09/changes-in-medical-billing-and-coding_0-1-768x307.png") center center / cover no-repeat;
  overflow: hidden;
}

/* top slanted white edge */
.consult-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: #ffffff;
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: 0;
}

.consult-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.consult-left,
.consult-right {
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.consult-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.consult-kicker-accent {
  color: #29a9ff;
  font-weight: 600;
}

.consult-line {
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-green);
}

.consult-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.consult-title-accent {
  color: #29a9ff;
}

.consult-text {
  max-width: 420px;
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.consult-sub {
  font-size: 0.98rem;
  font-weight: 500;
}

.consult-phone {
  font-size: 2rem;
  font-weight: 700;
}

.consult-call-btn {
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  background: #29a9ff;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.consult-call-btn:hover {
  background: #1c7ec2;
}

/* RIGHT SIDE FORM */
.consult-form .form-label {
  font-size: 0.9rem;
  color: #ffffff;
}

.consult-form .req {
  color: #ffcc66;
  margin-left: 2px;
}

.consult-form .form-control,
.consult-form .form-select {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.9rem;
}

.consult-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.consult-form .form-control:focus,
.consult-form .form-select:focus {
  box-shadow: none;
  border-color: #29a9ff;
  background: rgba(255, 255, 255, 0.16);
}

.consult-country {
  max-width: 90px;
}

.consult-privacy {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.consult-captcha-box {
  background: #ffffff;
  color: #555555;
  border-radius: 4px;
  padding: 12px;
  font-size: 0.8rem;
  text-align: center;
}

/* Submit */
.consult-submit-btn {
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 10px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  background: #29a9ff;
  color: #ffffff;
  cursor: pointer;
}

.consult-submit-btn:hover {
  background: #1c7ec2;
}

/* Responsive */
@media (max-width: 991.98px) {
  .consult-section {
    padding: 70px 0 80px;
  }

  .consult-right {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .consult-title {
    font-size: 2rem;
  }

  .consult-phone {
    font-size: 1.7rem;
  }
}
/* WHAT SETS US APART */
.apart-section {
  padding: 60px 0 70px;
  background: #ffffff;
}

.apart-kicker {
  font-size: 1rem;
  color: #111111;
}

.apart-kicker span {
  font-weight: 600;
  color: var(--primary-blue);
}

.apart-dot-line {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0.4rem auto 0.8rem;
  background: var(--accent-green);
  position: relative;
}

.apart-dot-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 140%;
  width: 70px;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--accent-green);
}

/* Title with light X-style watermark behind (optional) */
.apart-title-wrap {
  position: relative;
  display: inline-block;
  padding-inline: 12px;
}

.apart-title-wrap::before {
  content: "X";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(41, 169, 255, 0.08); /* very light blue */
  pointer-events: none;
}

.apart-title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-blue);
}

.apart-main {
  color: var(--primary-blue);
}

.apart-accent {
  color: #29a9ff;
}

.apart-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #2571a3;
}

/* Responsive tweak */
@media (max-width: 767.98px) {
  .apart-title {
    font-size: 1.8rem;
  }
}
/* TESTIMONIALS SECTION */
.testimonials-section {
  position: relative;
  color: #ffffff;
  padding: 90px 0 110px;
  background:
    linear-gradient(
      to right,
      rgba(29, 50, 115, 0.9),
      rgba(0, 120, 160, 0.95)
    ),
    url("assets/img/testimonials-bg.jpg") center center / cover no-repeat;
  overflow: hidden;
}

/* slanted top edge */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 120px;
  background: #ffffff;
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: 2;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 96, 140, 0.75);
  z-index: 1;
}

.testimonials-inner {
  position: relative;
  z-index: 2;
}

/* Heading area */
.testimonials-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.95;
}

.testimonials-dot-line {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0.4rem auto 0.6rem;
  background: var(--accent-green);
  position: relative;
}

.testimonials-dot-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 130%;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--accent-green);
}

.testimonials-heading {
  font-size: 2.2rem;
  font-weight: 700;
}

.testimonials-heading .accent-word {
  color: #29a9ff;
}

/* Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.92);
  color: #1a3850;
  border-radius: 12px;
  padding: 24px 24px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-stars {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #f0b74c;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 1.6rem;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #6e8194;
}

.testimonial-quote-num {
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(29, 50, 115, 0.35);
}

/* Responsive */
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 80px 0 90px;
  }
}

@media (max-width: 767.98px) {
  .testimonials-heading {
    font-size: 1.9rem;
  }
}
/* ARTICLES / BLOG SECTION */
.articles-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

.articles-kicker {
  font-size: 0.95rem;
  color: #222222;
}

.articles-kicker span {
  color: var(--primary-blue);
  font-weight: 600;
}

.articles-dot-line {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0.4rem auto 0.7rem;
  background: var(--accent-green);
  position: relative;
}

.articles-dot-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 130%;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--accent-green);
}

.articles-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.articles-heading .accent-word {
  color: #29a9ff;
}

/* Cards */
.article-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.article-img {
  width: 100%;
  display: block;
}

.article-body {
  padding: 18px 18px 20px;
  text-align: left;
}

.article-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.6rem;
}

.article-text {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .articles-heading {
    font-size: 1.9rem;
  }
}
/* === FREE AUDIT CTA === */
.ams-footer-cta {
  padding: 40px 0 0;
}

.ams-footer-cta-card {
  background: #3e4246;          /* dark grey card */
  color: #ffffff;
  border-radius: 10px;
  padding: 24px 32px;
  max-width: 1120px;
  margin: 0 auto;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.ams-footer-cta-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.ams-footer-cta-text {
  font-size: 0.93rem;
  opacity: 0.9;
}

.ams-footer-cta-actions {
  flex-wrap: wrap;
}

/* CTA buttons */
.ams-cta-btn-primary {
  background: #29a9ff;          /* bright blue pill */
  border-radius: 999px;
  padding: 9px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  border: none;
}

.ams-cta-btn-primary:hover {
  background: #1c7ec2;
  color: #ffffff;
}

.ams-cta-btn-outline {
  background: transparent;
  border-radius: 999px;
  padding: 9px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.ams-cta-btn-outline:hover {
  background: #ffffff;
  color: #3e4246;
}

/* === FOOTER MAIN === */
.ams-footer {
  position: relative;
  background: #00739c;          /* teal band */
  color: #ffffff;
  margin-top: 40px;
}

/* teal slanted shape under the card */
.ams-footer::before {
    content: "";
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    height: 124px;
    background: #00739c;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}

.ams-footer-top {
  padding: 55px 0 35px;
}

/* logo & about */
.ams-footer-logo {
  max-height: 70px;
  width: auto;
}

.ams-footer-about {
  font-size: 0.85rem;
  margin-top: 10px;
}

/* social icons */
.ams-footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00739c;
  text-decoration: none;
  margin-right: 6px;
  font-size: 1rem;
}

.ams-footer-social a:hover {
  background: #29a9ff;
  color: #ffffff;
}

/* columns */
.ams-footer-heading {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.ams-footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ams-footer-links li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.ams-footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}

.ams-footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.ams-footer-contact li {
  display: flex;
  align-items: center;
}

/* bottom bar */
.ams-footer-bottom {
  background: #1d3273;          /* deep blue strip */
  color: #ffffff;
  font-size: 0.85rem;
  padding: 9px 0;
  border-top: 2px solid #0d2555;
}

.ams-footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
}

.ams-footer-bottom-links a:hover {
  text-decoration: underline;
}

/* responsive tweaks */
@media (max-width: 767.98px) {
  .ams-footer-cta-card {
    padding: 20px 18px;
  }

  .ams-footer-cta-title {
    font-size: 1.2rem;
  }
}


/* About page hero specific */
.about-hero {
  background:
    linear-gradient(to right, rgba(41, 169, 255, 0.92), rgba(0, 123, 168, 0.96)),
    url("assets/img/about-hero-bg.jpg") center center / cover no-repeat;
}

/* Blue overlay if you want it stronger (optional) */
.ams-subhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 132, 191, 0.25);
  z-index: 1;
}

.ams-subhero .container {
  position: relative;
  z-index: 2;
}

/* Big About Us text, aligned right */
.ams-subhero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Slanted white bottom edge */
.ams-subhero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  height: 140px;
  background: #ffffff;
  transform: skewY(-4deg);
  transform-origin: bottom left;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .ams-subhero {
    padding: 110px 0 120px;
  }

  .ams-subhero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 575.98px) {
  .ams-subhero {
    padding: 100px 0 110px;
  }

  .ams-subhero-title {
    font-size: 2.2rem;
  }
}

:root {
  --nav-blue: #1d3273;
  --hero-blue1: #29a9ff;
  --hero-blue2: #007ba8;
  --card-teal: #00688f;
  --card-light-blue: #29a9ff;
}

/* NAVBAR */
.ams-nav {
  background: transparent;
  padding: 14px 0;
  z-index: 999;
}

.ams-nav .navbar-brand img {
  max-height: 38px;
}

.ams-nav-links .nav-link {
  color: #ffffff;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 0.95rem;
}

.ams-nav-links .nav-link.active,
.ams-nav-links .nav-link:hover {
  color: #ffffff;
  opacity: 0.9;
}

.ams-demo-btn {
  border-radius: 999px;
  background: #29a9ff;
  color: #ffffff;
  font-weight: 600;
  padding: 9px 26px;
  border: none;
}

.ams-demo-btn:hover {
  background: #1c7ec2;
  color: #ffffff;
}

/* HERO */
.ams-subhero {
  position: relative;
  color: #ffffff;
  min-height: 270px;
  padding: 110px 0 160px;        /* leaves room under nav */
  overflow: hidden;
}

.about-hero {
  background:
    linear-gradient(to right, rgba(41,169,255,0.95), rgba(0,123,168,0.97)),
    url("assets/img/about-hero-bg.jpg") center center / cover no-repeat;
}

.ams-subhero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 135, 197, 0.15);
  z-index: 1;
}

.ams-subhero .container {
  position: relative;
  z-index: 2;
}

.ams-subhero-title {
  font-size: 3.4rem;
  font-weight: 800;
}

/* diagonal white bottom */
.ams-subhero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -75px;
  height: 150px;
  background: #ffffff;
  transform: skewY(-4deg);
  transform-origin: bottom left;
}

/* ABOUT SECTION */
.about-expertise-section {
  padding: 70px 0 90px;
  background: #ffffff;
}

/* left image + stat cards */
.about-expertise-media {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 80px; /* space for overlapping 30+ card */
}

.about-expertise-img {
  display: block;
  width: 100%;
}

/* stat cards */
.about-stat-card {
  background: var(--card-teal);
  color: #ffffff;
  border-radius: 18px;
  padding: 18px 28px 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.about-stat-main {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.about-stat-label {
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

/* 30+ */
.years-card {
  position: absolute;
  left: 60%;
  bottom: -55px;
  transform: translateX(-50%);
  min-width: 260px;
}

/* 0 Hidden Fees */
.fees-card {
  margin-top: 55px;
  max-width: 260px;
  background: var(--card-light-blue);
}

/* right text */
.about-expertise-kicker {
  font-size: 0.95rem;
  color: #111111;
}

.about-expertise-kicker span {
  color: var(--nav-blue);
  font-weight: 700;
}

.about-expertise-line {
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: var(--card-light-blue);
  position: relative;
}

.about-expertise-line::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--card-light-blue);
}

.about-expertise-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--nav-blue);
}

.about-expertise-heading .accent {
  color: var(--card-light-blue);
}

.about-expertise-text {
  font-size: 0.96rem;
  color: #555555;
  max-width: 620px;
}

/* mission card */
.about-mission-card {
  margin-top: 24px;
  background: var(--card-teal);
  color: #ffffff;
  border-radius: 18px;
  padding: 22px 26px 20px;
  max-width: 670px;
}

.about-mission-card h4 {
  font-weight: 700;
}

.about-mission-card p {
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .ams-subhero {
    padding: 100px 0 130px;
  }

  .ams-subhero-title {
    font-size: 2.8rem;
  }

  .years-card {
    left: 50%;
  }

  .about-expertise-section {
    padding-top: 60px;
  }
}

@media (max-width: 575.98px) {
  .ams-subhero {
    padding: 90px 0 110px;
  }

  .ams-subhero-title {
    font-size: 2.3rem;
  }

  .fees-card {
    margin-left: auto;
    margin-right: auto;
  }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    /* Official WhatsApp green */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20b955;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    line-height: 60px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    .whatsapp-float i {
        line-height: 55px;
    }
}

