:root {
  /* Add variables if needed */
  --primary-color: rgba(179, 65, 86, 1);
  --secondary-color: rgba(233, 172, 40, 1);
  --text-color: rgba(0, 0, 0, 1);
  --grey-text-color: rgba(68, 68, 68, 1);
  --white-color: rgba(255, 255, 255, 1);
  --black-color: rgba(0, 0, 0, 1);
}

body {
  font-family: "Poppins", sans-serif;
}
a{
  text-decoration: none;
}
/* =========================
   NAVBAR
========================= */
.navbar {
  background: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

/* =========================
   BANNER SECTION
========================= */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.banner::after {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top:0,right:0,bottom:0,left:0 */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* =========================
   TEXT ON BANNER
========================= */
.banner-content {
  position: absolute;
  z-index: 2; /* above overlay */
  color: #fff;
  padding: 0 15px;
  max-width: 800px;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
}
.banner-content h1 span {
  border-bottom: 3px solid var(--secondary-color);
}

.banner-content p {
  font-size: 20px;
  margin-top: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 36px;
  }
  .banner-content p {
    font-size: 16px;
  }
}

/* =========================
   BREADCRUMB SECTION
========================= */
.breadcrumb-section {
  padding: 15px 0;
  position: relative;
  z-index: 5;
}

.breadcrumb {
  margin: 0;
}

.breadcrumb-item a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-color);
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 500;
}

.main-heading span {
  color: var(--text-color);
  border-bottom: 3px solid var(--secondary-color);
}
.main-heading-para {
  color: var(--text-color);
}

.news-filter-section {
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.nav-pills .nav-link {
  background: #f3ebed;
  color: var(--grey-text-color);
  border-radius: 0;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 14px;
}

.nav-pills .nav-link.active {
  background: var(--primary-color);
  color: #fff;
}

.filter-select {
  width: 140px;
  height: 40px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.featured-news-section {
  font-family: "Poppins", sans-serif;
}

.badge-custom {
  position: absolute;
  top: 15px;
  left: 15px;
  background: black;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
}

.featured-text {
  color: #c0394b;
  font-size: 16px;
  font-weight: 600;
}

.news-title {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.news-description {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

.read-btn {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  border: 1px solid black;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.read-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.news-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  height: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-img {
  position: relative;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}

.news-content {
  padding: 15px 10px;
}

.news-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Adjust number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-main-content {
  color: var(--black-color);
}
.blog-list-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.benefit-icon-bg {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
}

.benefit-icon-bg i {
  font-weight: 900;
}

/* Optional: slight hover effect */
.benefit-icon-bg:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.prev-btn,
.next-btn {
  display: inline-block;
  padding: 8px 40px;
  border-radius: 30px;
  border: 1px solid black;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.prev-btn {
  background-color: var(--black-color);
  color: var(--white-color);
}
.next-btn {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.featured-blog {
  background-color: rgba(244, 241, 241, 1);
}

/* style.css – Add/replace these rules */

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 5px;
}

/* Main button styling */
.faq-btn {
  position: relative;
  background: transparent !important;
  padding: 15px 20px 15px 50px; /* extra left padding for the +/– icon */
  font-size: 18px;
  font-weight: 600;
  color: #000;
  box-shadow: none !important;
  border-bottom: 1px solid #ddd;
  width: 100%;
  text-align: left;
}

/* Completely hide Bootstrap's default caret */
.faq-btn::after {
  display: none !important;
}

/* Plus icon (default closed state) */
.faq-btn::before {
  content: "+";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

/* Minus icon when expanded */
.faq-btn:not(.collapsed)::before {
  content: "–";
  font-size: 32px;
  font-weight: 400;
  color: var(--primary-color);
}

/* Text color when open */
.faq-btn:not(.collapsed) {
  color: var(--primary-color);
  border-bottom: none;
}

/* Answer body */
.faq-body {
  background: #f9ecec;
  padding: 18px 20px 18px 50px; /* same left indent as the button */
  font-size: 15px;
  color: #555;
  border-bottom: 1px solid #ddd;
}

.footer-section {
  background-color: var(--black-color);
  color: var(--white-color);
}
.footer-container {
  border-bottom: 1px solid var(--white-color);
}
.footer-section a {
  text-decoration: none;
  color: var(--white-color);
}
