.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #960c0c;
  color: #ffffff;
  /* initial text color */
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.theme-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: #960c0c;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background-color: #7a0a0a;
  color: #ffffff;
  /* text stays white on hover */
  transform: translateY(-2px);
}

.theme-btn:hover .icon {
  background-color: #fff5f5;
  transform: translateX(4px);
}

/* =====================================
   NEWS & EVENTS SECTION
===================================== */
/* =========================
   THEME VARIABLES
========================= */

:root {
  --primary: #960c0c;
  --primary-dark: #6e0808;
  --primary-light: #b31212;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

/* =========================
   SECTION BACKGROUND
========================= */

.newsAndEvents {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;

  /* Background Image */
  background: url("../img/news-bg.jpg") center center / cover no-repeat;
}

/* Dark red overlay */
.newsAndEvents::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(26, 10, 10, 0.85),
      rgba(63, 12, 12, 0.9)
  );
  z-index: 1;
}

/* Make content appear above overlay */
.newsContainer {
  position: relative;
  z-index: 2;
}

/* =========================
   HEADER
========================= */

.newsHeader {
  text-align: center;
  margin-bottom: 60px;
}

.newsHeader h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.newsUnderline {
  width: 70px;
  height: 3px;
  background: var(--white);
  margin: 14px auto 0;
  border-radius: 20px;
}

/* =========================
   SLIDER STRUCTURE
========================= */

.newsSlider {
  overflow: hidden;
}

.newsGrid {
  display: flex;
  gap: 30px;
}

/* =========================
   CARD DESIGN
========================= */

.newsCard {
  flex: 0 0 calc((100% - 90px) / 4);
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  transition: all 0.4s ease;
}

.newsCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

/* Image */
.newsImage img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content */
.newsContent {
  padding: 24px;
}

.newsContent h3 {
  min-height: 70px;
  font-size: 18px;
  font-weight: 600;
  color: #0f2b3c;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* =========================
   BUTTON (Premium Look)
========================= */

.newsBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(150, 12, 12, 0.4);
}

.newsBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(150, 12, 12, 0.6);
}

/* Arrow circle inside button */
.arrowCircle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrowCircle svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
}

/* =========================
   ARROWS (Side Navigation)
========================= */

.sliderBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  z-index: 5;
}

.sliderBtn:hover {
  background: var(--primary);
  color: var(--white);
}

.prevBtn {
  left: -20px;
}

.nextBtn {
  right: -20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .newsCard {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}

@media (max-width: 992px) {
  .newsCard {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 600px) {
  .newsCard {
    flex: 0 0 100%;
  }

  .sliderBtn {
    display: none;
  }
}

/* ==============================
   Nemcare Stats Section
============================== */

.nemcare-stats-section {
  width: 100%;
  margin-top: -100px;
}

.nemcare-stats-wrapper {
  display: flex;
  min-height: 550px;
}

/* Left Image */
.nemcare-stats-image {
  flex: 1;
  background: url('../img/nemcare.jpg') top/cover no-repeat;
}

/* Right Red Panel */
.nemcare-stats-content {
  flex: 1;
  background: #960c0c;
  color: #ffffff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Subtitle */
.nemcare-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 15px;
}

/* Heading */
.nemcare-stats-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #fff;
  line-height: 1.3;
}

/* Stats Grid */
.nemcare-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Each Stat */
.nemcare-stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nemcare-stat-item i {
  font-size: 30px;
  margin-bottom: 15px;
}

.nemcare-stat-item h3 {
  font-size: 34px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #fff;
}

.nemcare-stat-item p {
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 992px) {
  .nemcare-stats-wrapper {
    flex-direction: column;
  }

  .nemcare-stats-image {
    height: 300px;
  }

  .nemcare-stats-content {
    padding: 60px 30px;
  }

  .nemcare-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nemcare-stats-grid {
    grid-template-columns: 1fr;
  }

  .nemcare-stats-content h2 {
    font-size: 26px;
  }
}