:root {
  --bm-blue: #15578e;
  --bm-green: #25b842;
  --bm-light: #eefaff;
  --bm-dark: #101828;
}

.bm-home {
  color: var(--bm-dark);
  overflow-x: hidden;
}

.bm-home h1,
.bm-home h2,
.bm-home h3 {
  font-family: Georgia, serif;
  font-weight: 700;
}

.bm-section {
  padding: 110px 0;
}

.bm-label {
  display: block;
  color: var(--bm-blue);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── Header ─────────────────────────────────────────────────────────── */
.bm-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bm-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.bm-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.bm-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* ── Desktop nav ─────────────────────────────────────────────────────── */
.bm-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.bm-menu a {
  font-size: 14px;
  font-weight: 500;
  color: #0d0d0f;
  text-decoration: none;
  transition: color 0.2s;
}
.bm-menu > li > a:hover {
  color: #6b6b72;
}
.bm-menu li {
  position: relative;
}

/* Top-level link + dropdown arrow */
.bm-menu > li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bm-menu > li.menu-item-has-children > a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s ease;
}
.bm-menu > li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Dropdown panel — modern card */
.bm-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 999;
}
.bm-menu li:hover > .sub-menu,
.bm-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bm-menu .sub-menu li {
  width: 100%;
}
.bm-menu .sub-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 400;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}
.bm-menu .sub-menu a:hover {
  background: #f4f4f6;
  padding-left: 18px;
}

/* ── Hamburger ───────────────────────────────────────────────────────── */
.bm-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 1001;
}
.bm-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #0d0d0f;
  border-radius: 2px;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    width 0.28s ease;
  transform-origin: center;
}
.bm-menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.bm-menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.bm-menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .bm-menu-toggle {
    display: flex;
  }
  .bm-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 0.68, 0, 1.1);
    overflow-y: auto;
    z-index: 1000;
  }
  .bm-nav.is-open {
    transform: translateX(0);
  }
  .bm-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .bm-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .bm-menu a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  /* On mobile, expand submenu inline instead of as a floating card */
  .bm-menu > li.menu-item-has-children > a {
    justify-content: space-between;
  }
  .bm-menu > li.menu-item-has-children > a::after {
    transform: rotate(-135deg);
    margin-top: 2px;
  }
  .bm-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: #fafafa;
    margin: 4px 0 8px;
    padding: 0 0 0 16px;
  }
  .bm-menu .sub-menu li {
    border-bottom: none;
  }
  .bm-menu .sub-menu a {
    padding: 12px 0;
    font-size: 14px;
    color: #6b6b72;
  }
  .bm-menu .sub-menu a:hover {
    background: transparent;
    padding-left: 0;
  }
}

/* HERO */
.bm-hero {
  min-height: 850px;
  position: relative; /* removed background-size (now on slides) */
  display: flex;
  align-items: center;
  overflow: hidden; /* ADD - keeps slides clipped */
}

/* Your existing gradient overlay — keep exactly as is */
.bm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
  z-index: 1; /* ADD - sits above slides */
}

.bm-hero .container {
  position: relative;
  z-index: 2; /* already correct */
}

.bm-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  margin-bottom: 30px;
}

/* ── Slider (NEW) ───────────────────────── */
.bm-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0; /* behind overlay and content */
}

.bm-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.bm-hero-slide.active {
  opacity: 1;
}

/* ── Dots (NEW) ─────────────────────────── */
.bm-hero-dots {
  position: absolute; /* take out of content flow */
  bottom: 30px; /* distance from bottom of hero */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.bm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.bm-dot.active {
  background: #ffffff;
}

.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.bm-btn-primary {
  background: var(--bm-green);
  color: #fff;
}

.bm-btn-outline {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  margin-left: 14px;
}

/* ABOUT */
.bm-about {
  background: #fff;
  position: relative;
}

.bm-about h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.bm-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.bm-about-info {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.bm-about-info img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bm-about-info strong {
  color: var(--bm-blue);
  font-size: 18px;
}

.bm-about-info p {
  font-size: 15px;
  margin: 0;
}

.bm-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.bm-stats div {
  background: #eefbff;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  min-width: 150px;
}

.bm-stats div:nth-child(2) {
  background: #efffee;
}

.bm-stats strong {
  display: block;
  font-size: 28px;
  color: var(--bm-blue);
}

.bm-stats div:nth-child(2) strong {
  color: var(--bm-green);
}

.bm-stats span {
  font-size: 13px;
}

.bm-about-card {
  position: relative;
}

.bm-about-card span {
  position: absolute;
  top: -25px;
  left: -20px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bm-about-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* SERVICES */
.bm-services {
  background: #eefaff;
  padding: 115px 0 180px;
  position: relative;
  overflow: hidden;
}

.bm-services::after {
  content: '';
  position: absolute;
  left: -5%;
  bottom: 20px;
  width: 110%;
  height: 150px;
  background-image: url('../img/service-line.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
}

.bm-services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.bm-services-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
  color: #101828;
}

.bm-view-more {
  color: var(--bm-green);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ── Services grid — desktop only ───────────────────────────────────── */
.bm-services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(21, 87, 142, 0.22);
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
}

.bm-service-card {
  min-height: 300px;
  padding: 46px 38px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(21, 87, 142, 0.22);
  border-radius: 0;
}

.bm-service-card:last-child {
  border-right: none;
}

.bm-service-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 34px;
}

.bm-service-card h3 {
  color: var(--bm-blue);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.bm-service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  margin: 0;
}

@media (max-width: 991px) {
  .bm-services {
    padding: 80px 0 110px;
  }

  .bm-services-head {
    display: block;
    margin-bottom: 45px;
  }

  .bm-services-head h2 {
    font-size: 38px;
  }

  .bm-view-more {
    display: inline-block;
    margin-top: 24px;
  }

  .bm-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bm-service-card,
  .bm-service-card:first-child,
  .bm-service-card:nth-child(2),
  .bm-service-card:last-child {
    border-radius: 24px;
  }
}

/* SERVICE SEPARATOR */
.bm-service-separator {
  background: #eefaff;
  padding: 0 0 70px;
  overflow: hidden;
}

.bm-service-separator img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* connect separator smoothly with why section */
.bm-why {
  background: #eefaff;
  padding-top: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .bm-service-separator {
    margin-top: -40px;
    padding-bottom: 45px;
  }

  .bm-service-separator img {
    width: 130%;
    max-width: none;
    margin-left: -15%;
  }
}

@media (max-width: 575px) {
  .bm-service-separator {
    margin-top: -25px;
    padding-bottom: 35px;
  }

  .bm-service-separator img {
    width: 170%;
    margin-left: -35%;
  }
}

/* WHY CHOOSE US */
.bm-why {
  background: #eefaff;
  padding-top: 70px;
}

.bm-why-image {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.bm-why h2 {
  font-size: 48px;
  line-height: 1.05;
}

.bm-why-list {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.bm-why-list div {
  background: #fff;
  color: var(--bm-blue);
  font-weight: 700;
  padding: 22px 28px;
  border-radius: 6px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bm-why-list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .bm-why h2 {
    font-size: 38px;
  }
}

/* DESTINATIONS */
.bm-destinations {
  background: #fff;
  position: relative;
}

.bm-destinations h2 {
  color: var(--bm-blue);
  font-size: 42px;
  margin-bottom: 55px;
}

.bm-destination-slider {
  padding-bottom: 50px;
}

.bm-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bm-destination-card {
  text-decoration: none;
  display: block;
  position: relative;      /* fix: anchor the overlay to the card */
  overflow: hidden;
  transition: 0.3s ease;
}

.bm-destination-card:hover {
  transform: translateY(-4px);
}

.bm-destination-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bm-destination-info {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;                       /* fix: hidden by default */
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.bm-destination-card:hover .bm-destination-info {
  opacity: 1;                       /* fix: show only on hover */
  visibility: visible;
  transform: translateY(0);
}

.bm-destination-info span {
  background: #fff;
  color: var(--bm-green);
  padding: 9px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

.bm-destination-flag {
  width: 54px;
  height: 38px;
  object-fit: cover;
  border-radius: 2px;
}

.bm-destination-dots {
  position: static;
  margin: 28px 0 0;
}

.bm-destination-dots button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50%;
  background-color: #d7d7d7 !important;
  border: 0 !important;
  opacity: 1 !important;
}

.bm-destination-dots button.active {
  background-color: var(--bm-blue) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .bm-destination-grid {
    grid-template-columns: 1fr;
  }

  .bm-destination-card > img {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .bm-destinations h2 {
    font-size: 34px;
  }

  .bm-destination-card > img {
    height: 220px;
  }
}

/* SINGLE DESTINATION PAGE */

/* =========================================
   SINGLE DESTINATION
========================================= */

.destination-hero {
  height: 520px;
  position: relative;
  overflow: hidden;
}

.destination-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.destination-hero .container {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  z-index: 2;
}

.destination-hero h1 {
  color: #fff;
  font-size: 64px;
  font-family: Georgia, serif;
  margin: 0;
}

/* CONTENT */

.destination-content {
  padding: 100px 0;
}

.destination-main {
  max-width: 900px;
  margin: 0 auto;
}

.destination-main p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 28px;
}

/* GALLERY */

.destination-gallery {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .destination-hero {
    height: 420px;
  }

  .destination-hero h1 {
    font-size: 48px;
  }

  .destination-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .destination-hero {
    height: 300px;
  }

  .destination-hero h1 {
    font-size: 34px;
  }

  .destination-content {
    padding: 60px 0;
  }

  .destination-main p {
    font-size: 16px;
    line-height: 1.8;
  }

  .destination-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

/* DESTINATION CARDS */
.dest-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s;
  height: 100%;
}

.dest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.16);
}

.dest-card__img-link {
  display: block;
  overflow: hidden;
  height: 200px;
}

.dest-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dest-card:hover .dest-card__img-link img {
  transform: scale(1.05);
}

.dest-card__body {
  padding: 14px 16px 16px;
}

.dest-card__title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #0d0d0f;
  text-decoration: none;
}

.dest-card__arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  flex-shrink: 0;
  color: #6b6b72;
}

.dest-card:hover .dest-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.dest-card__excerpt {
  font-size: 13px;
  color: #6b6b72;
  line-height: 1.55;
  margin-top: 6px;
}

/* TESTIMONIALS */
.bm-testimonials {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
}

.bm-testimonials::before,
.bm-testimonials::after {
  content: '';
  position: absolute;
  top: -120px;
  width: 42%;
  height: 115%;
  background: #f3f7fb;
  z-index: 0;
}

.bm-testimonials::before {
  left: -18%;
  border-bottom-right-radius: 100%;
}

.bm-testimonials::after {
  right: -18%;
  border-bottom-left-radius: 100%;
}

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

.bm-testimonials h2 {
  color: var(--bm-blue);
  font-size: 42px;
  margin-bottom: 60px;
}

.bm-testimonial-slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.bm-testimonial-quote {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  color: var(--bm-blue);
  font-family: Georgia, serif;
  font-size: 135px;
  line-height: 1;
  z-index: 5;
}

.bm-testimonial-card {
  max-width: 760px;
  min-height: 300px;
  margin: 0 auto;
  background: #fff;
  padding: 70px 85px 95px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.bm-testimonial-card p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 35px;
}

.bm-testimonial-card strong {
  display: block;
  color: var(--bm-blue);
  font-family: Georgia, serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.bm-testimonial-card span {
  color: var(--bm-green);
  font-size: 13px;
}

.bm-testimonial-arrow {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.bm-testimonial-arrow span {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--bm-blue);
  border-radius: 50%;
  font-size: 32px;
  line-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bm-testimonial-prev {
  left: 0;
}

.bm-testimonial-next {
  right: 0;
}

@media (max-width: 575px) {
  .bm-testimonials {
    padding: 80px 0 100px;
  }

  .bm-testimonials h2 {
    font-size: 34px;
  }

  .bm-testimonials::before,
  .bm-testimonials::after {
    width: 60%;
  }

  .bm-testimonial-card {
    padding: 42px 24px 75px;
    min-height: auto;
  }

  .bm-testimonial-card p {
    font-size: 15px;
  }

  .bm-testimonial-arrow {
    display: none;
  }

  .bm-testimonial-quote {
    font-size: 90px;
    bottom: -48px;
  }
}

/* FOOTER CTA + FOOTER */
.bm-site-footer {
  background: #1a4f8a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bm-footer-cta {
  padding: 110px 0 190px;
  background:
    url('../img/footer-separator.png') center bottom / 90% auto no-repeat,
    url('../img/footer-texture.png') center top / cover no-repeat,
    #15578e;
}

.bm-footer-cta h2 {
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 30px;
}

.bm-footer-cta h2 span {
  color: var(--bm-green);
}

.bm-footer-cta p {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 48px;
}

.bm-footer-main {
  padding: 0 0 32px;
}

.bm-footer-line {
  margin-bottom: 55px;
}

.bm-footer-contact,
.bm-footer-links {
  max-width: 260px;
  margin: 0 auto;
}

.bm-footer-contact {
  text-align: right;
}

.bm-footer-contact h3,
.bm-footer-links h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}

.bm-footer-contact p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}

.bm-footer-contact span {
  display: block;
  opacity: 0.8;
  margin-bottom: 6px;
}

.bm-footer-contact a,
.bm-footer-links a,
.bm-footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.bm-footer-brand {
  padding: 0 45px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.bm-footer-brand img {
  max-width: 245px;
  margin-bottom: 30px;
}

.bm-footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bm-socials {
  display: flex;
  justify-content: center;   /* centers the icons as a flex container */
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.bm-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}
.bm-socials a:hover {
  background: var(--bm-blue);
  color: #fff;
}
.bm-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bm-footer-menu li {
  margin-bottom: 20px;
}

.bm-footer-menu a {
  font-size: 15px;
  font-weight: 600;
}

.bm-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
}

.bm-footer-bottom p {
  margin: 0;
}

.bm-footer-bottom div {
  display: flex;
  gap: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
  .bm-footer-cta {
    padding: 80px 0 130px;
    background-size:
      130% auto,
      cover;
  }

  .bm-footer-cta h2 {
    font-size: 42px;
  }

  .bm-footer-cta p {
    font-size: 28px;
  }

  .bm-footer-contact,
  .bm-footer-links {
    text-align: center;
  }

  .bm-footer-brand {
    border: 0;
    padding: 0;
  }

  .bm-footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .bm-footer-cta h2 {
    font-size: 34px;
  }

  .bm-footer-cta p {
    font-size: 24px;
  }

  .bm-footer-brand img {
    max-width: 200px;
  }

  .bm-footer-bottom div {
    flex-direction: column;
    gap: 12px;
  }
}

/* OUR SERVICES PAGE */

/* Ensure the container matches Figma width */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.services-hero {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.services-hero h1 {
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
}

/* Intro Section Styles */
.services-intro {
  padding: 80px 0 60px;
  text-align: center;
}

.section-subtitle {
  color: #004a99; /* Beta Manpower Blue */
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.intro-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Spacing out the service rows */
.services-list {
  padding-bottom: 100px;
}

/* Service Row Layout */
.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

/* The Zig-Zag Effect */
.service-row.flex-reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: 400px; /* Fixed height for consistency like Figma */
  object-fit: cover;
  border-radius: 4px;
}

.service-content {
  flex: 1;
}

/* Service Title - Matching Figma Blue */
.service-content h3 {
  font-size: 28px;
  color: #1a4a8a;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Service List Styling */
.service-text ul {
  list-style: none;
  padding: 0;
}

.service-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

/* Bullet points (Optional: custom color) */
.service-text ul li::before {
  content: '•';
  color: #1a4a8a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-row,
  .service-row.flex-reverse {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.bm-contact-page {
  background: #f7f9fc;
}

/* HERO */

.bm-contact-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bm-contact-hero h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  margin: 0;
}

/* MAIN SECTION */

.bm-contact-section {
  padding: 100px 0;
}

.bm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT SIDE */

.bm-contact-info h2 {
  font-size: 48px;
  color: #1c4d99;
  margin-bottom: 50px;
  font-weight: 700;
}

.bm-contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.bm-contact-icon {
  width: 52px;
  height: 52px;
  background: #3aaa35;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bm-contact-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bm-contact-item h4 {
  font-size: 18px;
  color: #1c4d99;
  margin-bottom: 5px;
  font-weight: 700;
}

.bm-contact-item p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* SOCIAL */

.bm-follow-wrap {
  margin-top: 50px;
}

.bm-follow-wrap h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.bm-socials {
  display: flex;
  gap: 12px;
}

.bm-socials img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* FORM */

.bm-contact-form-card {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.06);
}

.bm-contact-form-card h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* WPFORMS */

.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  border-radius: 8px !important;
  border: 1px solid #ddd !important;
  padding: 14px !important;
}

.wpforms-submit {
  width: 100% !important;
  background: #38b538 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px !important;
  font-weight: 700 !important;
}

/* MAP */

.bm-contact-map iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .bm-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bm-contact-hero {
    height: 320px;
  }

  .bm-contact-hero h1 {
    font-size: 46px;
  }

  .bm-contact-info h2 {
    font-size: 42px;
  }

  .bm-contact-form-card {
    padding: 35px 25px;
  }
}

@media (max-width: 575px) {
  .bm-contact-section {
    padding: 70px 0;
  }

  .bm-contact-hero h1 {
    font-size: 38px;
  }

  .bm-contact-info h2 {
    font-size: 34px;
    margin-bottom: 35px;
  }

  .bm-contact-item {
    gap: 15px;
  }

  .bm-contact-form-card h3 {
    font-size: 26px;
  }

  .bm-contact-map iframe {
    height: 350px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
.flex-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.centered {
  text-align: center;
  margin-bottom: 50px;
}
.section-title {
  color: #1a4a8a;
  font-size: 32px;
  font-weight: 700;
}

/* Intro & MV Section */
.intro-content,
.intro-image {
  flex: 1;
  min-width: 320px;
}
.intro-image img {
  width: 100%;
  border-radius: 12px;
}
.mv-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  border-left: 6px solid #1a4a8a;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center;
}
.member-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.team-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.designation {
  color: #1a4a8a;
  font-weight: 600;
  font-size: 14px;
}

/* License Grid */
.license-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.license-item img {
  height: 400px;
  width: auto;
  border: 1px solid #ddd;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  .flex-grid {
    gap: 30px;
  }
  .about-hero h1 {
    font-size: 36px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
.flex-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.centered {
  text-align: center;
  margin-bottom: 50px;
}
.section-title {
  color: #1a4a8a;
  font-size: 32px;
  font-weight: 700;
}

/* Intro & MV Section */
.intro-content,
.intro-image {
  flex: 1;
  min-width: 320px;
}
.intro-image img {
  width: 100%;
  border-radius: 12px;
}
.mv-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  border-left: 6px solid #1a4a8a;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center;
}
.member-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.team-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.designation {
  color: #1a4a8a;
  font-weight: 600;
  font-size: 14px;
}

/* License Grid */
.license-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.license-item img {
  height: 400px;
  width: auto;
  border: 1px solid #ddd;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  .flex-grid {
    gap: 30px;
  }
  .about-hero h1 {
    font-size: 36px;
  }
}

/* =========================================
   ABOUT PAGE
========================================= */

.about-page {
  background: #fff;
  overflow-x: hidden;
}

/* HERO */
.about-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.about-hero h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  margin: 0;
  font-family: Georgia, serif;
}

/* COMMON */
.about-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 90px 0;
}

.flex-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.centered {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: #1a4a8a;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

/* INTRO SECTION */
.about-intro .intro-content {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-intro .description {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.about-intro .intro-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* MISSION VISION */
.mission-vision {
  background: #f5fbff;
}

.mv-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 45px;
  border-radius: 14px;
  border-left: 6px solid #1a4a8a;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-card h3 {
  color: #1a4a8a;
  font-size: 28px;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}

.mv-card p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

/* TEAM SECTION */
.team-section {
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 35px;
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.member-img {
  overflow: hidden;
  border-radius: 14px;
}

.member-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.team-card:hover .member-img img {
  transform: scale(1.05);
}

.team-card h4 {
  font-size: 22px;
  margin: 20px 0 6px;
  color: #111827;
  font-weight: 700;
}

.designation {
  color: #1a4a8a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* LICENSE SECTION */
.license-section {
  background: #f5fbff;
}

.license-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 15px;
  scrollbar-width: thin;
}

.license-item {
  flex-shrink: 0;
}

.license-item img {
  height: 420px;
  width: auto;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-hero {
    min-height: 320px;
  }

  .about-hero h1 {
    font-size: 52px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .flex-grid {
    gap: 40px;
  }

  .mv-card {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 34px;
  }

  .member-img img {
    height: 300px;
  }

  .license-item img {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .about-hero {
    min-height: 260px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .section-padding {
    padding: 55px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .intro-content .description,
  .mv-card p {
    font-size: 15px;
  }

  .mv-card {
    padding: 28px;
  }

  .member-img img {
    height: 260px;
  }

  .license-item img {
    height: 260px;
  }
}

.cp-section {
  padding: 2rem 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}

.cp-title {
  color: #1a4a8a;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

.cp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cp-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.cp-tl-item::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 20px;
  bottom: -1px;
  width: 1px;
  background: #e0e0e0;
}

.cp-tl-item:last-child::before {
  display: none;
}

.cp-tl-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #378add;
  flex-shrink: 0;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.cp-tl-card {
  flex: 1;
  padding: 12px 0 20px;
  border-bottom: 0.5px solid #e8e8e8;
}

.cp-tl-item:last-child .cp-tl-card {
  border-bottom: none;
}

.cp-tl-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.cp-tl-value {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.5;
}

.cp-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.cp-cat-tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: var(--border-radius-md, 8px);
  background: #e6f1fb;
  color: #185fa5;
  font-weight: 500;
}

@media (max-width: 480px) {
  .cp-section {
    padding: 1.25rem 1rem;
  }

  .cp-title {
    font-size: 34px;
  }

  .cp-tl-value {
    font-size: 14px;
  }
}

/* =========================================
   SELECTION PROCESS PAGE
========================================= */

.selection-page {
  background: #ffffff;
  overflow-x: hidden;
}

/* HERO */
.selection-hero {
  height: 360px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('../img/hero-banner.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.selection-hero h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  font-family: Georgia, serif;
  margin: 0;
}

/* MAIN SECTION */
.selection-content {
  padding: 110px 0;
}

.selection-wrapper {
  display: flex;
  gap: 90px;
  align-items: flex-start;
}

/* =========================================
   LEFT SIDEBAR
========================================= */

.selection-sidebar {
  width: 320px;
  flex-shrink: 0;
  position: relative;
}

/* Vertical timeline line */
.selection-sidebar::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 15px;
  width: 1px;
  height: calc(100% - 30px);
  background: #dbe4ef;
}

/* STEP ITEM */
.step-item {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  padding: 0 0 32px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* ICON */
.step-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #f2f6fb;
  border: 2px solid #dbe4ef;
  color: #1d4f91;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
}

/* TEXT */
.step-text {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  color: #7f8a96;
  transition: 0.3s ease;
}

/* ACTIVE */
.step-item.active .step-icon {
  background: #1d4f91;
  border-color: #1d4f91;
  color: #fff;
  box-shadow: 0 10px 25px rgba(29, 79, 145, 0.2);
}

.step-item.active .step-text {
  color: #1d4f91;
}

/* HOVER */
.step-item:hover .step-text {
  color: #1d4f91;
}

.step-item:hover .step-icon {
  border-color: #1d4f91;
}

/* =========================================
   RIGHT CONTENT AREA
========================================= */

.selection-detail-area {
  flex: 1;
}

/* CONTENT CARD */
.detail-box {
  display: none;
}

.detail-box.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* WHITE CARD */
.detail-box-inner {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* HEADING */
.detail-box h2 {
  color: #1d4f91;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 32px;
  font-family: Georgia, serif;
}

/* CONTENT */
.detail-content {
  color: #555;
  font-size: 18px;
  line-height: 1.95;
}

.detail-content p:last-child {
  margin-bottom: 0;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .selection-content {
    padding: 80px 0;
  }

  .selection-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .selection-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding-bottom: 10px;
  }

  .selection-sidebar::before {
    display: none;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    min-width: 130px;
    padding-bottom: 0;
  }

  .step-text {
    font-size: 14px;
  }

  .detail-box-inner {
    padding: 40px 30px;
  }

  .detail-box h2 {
    font-size: 34px;
  }

  .detail-content {
    font-size: 16px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
  .selection-hero {
    height: 260px;
  }

  .selection-hero h1 {
    font-size: 42px;
  }

  .selection-content {
    padding: 55px 0;
  }

  .detail-box-inner {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .detail-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .detail-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .step-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 14px;
  }

  .step-text {
    font-size: 13px;
  }
}

/* ==========================
   GALLERY PAGE
========================== */

/* ====================================
GALLERY PAGE
==================================== */

.gallery-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('../img/hero-banner.jpg') center/cover;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.gallery-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.gallery-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.gallery-image {
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-content {
  padding: 24px;
}

.gallery-content h3 {
  color: #1d3557;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-link {
  color: #b5172a;
  font-weight: 600;
}

.wp-block-gallery img,
.gallery img {
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.wp-block-gallery img:hover {
  transform: scale(1.03);
}

.news-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('../img/hero-banner.jpg') center/cover;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-8px);
}

.news-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-content {
  padding: 24px;
}

.news-date {
  color: #b5172a;
  font-size: 14px;
  font-weight: 600;
}

.news-content h3 {
  margin: 15px 0;
  font-size: 22px;
}

.news-content h3 a {
  text-decoration: none;
  color: #1d3557;
}

.read-more {
  color: #b5172a;
  font-weight: 600;
  text-decoration: none;
}
