/* Container */
  .aahar-wrap {
    max-width: 960px;
    margin: 40px auto;
    padding: 0 18px;
    font-family: "Noto Sans", "Segoe UI", Roboto, Arial, sans-serif;
    color: #243746;
  }

  /* Title */
  .aahar-title {
    font-size: 28px;
    font-weight: 800;
    color: #173845;
    margin-bottom: 14px;
    text-align: center;
  }

  .aahar-intro {
    font-size: 15px;
    color: #3b5160;
    text-align: center;
    margin-bottom: 30px;
  }

  /* Grid layout for buttons */
  .aahar-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    justify-content: center;
  }

  /* Buttons */
  .aahar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: linear-gradient(135deg, #262626 0%, #16A34A 100%);
    color: #FFD700; /* Golden text */
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  /* Hover effect */
  .aahar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
    color: #ffffff; /* White text on hover */
    background: linear-gradient(135deg, #16A34A 0%, #262626 100%);
  }

  /* Responsive tweaks */
  @media (max-width: 640px) {
    .aahar-title {
      font-size: 22px;
    }
    .aahar-btn {
      font-size: 15px;
      padding: 12px;
    }
  }

   /* --- Overall Section Container --- */
  .aahar-services-section {
    max-width: 950px;
    margin: 40px auto;
    padding: 0 18px;
    font-family: "Noto Sans", "Segoe UI", Roboto, Arial, sans-serif;
  }

  /* --- Section Title --- */
  .aahar-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #173845;
    margin-bottom: 24px;
  }

  /* --- Services List --- */
  .aahar-services {
    background: linear-gradient(135deg, #262626 0%, #16A34A 100%);
    border-radius: 10px;
    padding: 25px 30px;
    color: #FFD700; /* Golden text */
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }

  .aahar-services li {
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  /* --- Custom golden bullet --- */
  .aahar-services li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 13px;
    top: 3px;
  }

  .aahar-services li:hover {
    color: #fff;
    transform: translateX(4px);
  }

  /* --- Table Box --- */
  .aahar-table {
    margin-top: 35px;
    border-radius: 8px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    padding: 18px 22px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .aahar-table h3 {
    font-size: 18px;
    color: #173845;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .aahar-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .aahar-table ul li {
    margin-bottom: 10px;
  }

  .aahar-table a {
    text-decoration: none;
    font-weight: 600;
    color: #16A34A;
    transition: all 0.3s ease;
  }

  .aahar-table a:hover {
    color: #262626;
    text-decoration: underline;
  }

  /* --- Responsive --- */
  @media (max-width: 640px) {
    .aahar-heading {
      font-size: 22px;
    }
    .aahar-services {
      grid-template-columns: 1fr 1fr;
      padding: 20px;
    }
  }

  @media (max-width: 420px) {
    .aahar-services {
      grid-template-columns: 1fr;
    }
  }

  .aahar-section {
  background: linear-gradient(135deg, #262626 0%, #16A34A 100%);
  color: #FFD700;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 30px auto;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.aahar-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}
.aahar-section p {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}
.aahar-section a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #FFD700;
  transition: all 0.3s ease;
}
.aahar-section a:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.aahar-section img {
  display: block;
  margin: 20px auto;
  border: 2px solid #FFD700; /* Golden border */
  border-radius: 10px;       /* Optional: smooth corners */
  max-width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Optional glow */
}

.aahar-helpline {
  background: linear-gradient(135deg, #262626 0%, #16A34A 100%);
  color: #FFD700;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  font-family: "Noto Sans", "Segoe UI", Roboto, Arial, sans-serif;
}

.aahar-helpline-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #FFD700;
  text-transform: uppercase;
}

.aahar-helpline-box,
.aahar-portal-box {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 25px 15px;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aahar-helpline-box:hover,
.aahar-portal-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.aahar-helpline-box h3,
.aahar-portal-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

.aahar-helpline-box p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #FFD700;
}

.helpline-number {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.portal-link {
  display: inline-block;
  font-weight: 700;
  color: #FFD700;
  text-decoration: none;
  border-bottom: 1px solid #FFD700;
  transition: all 0.3s ease;
}

.portal-link:hover {
  color: #fff;
  border-color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
  .aahar-helpline-title {
    font-size: 24px;
  }
  .helpline-number {
    font-size: 16px;
  }
}

/* FAQ Section */
.aahar-faq {
  background: linear-gradient(135deg, #262626 0%, #16A34A 100%);
  color: #FFD700;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 900px;
  font-family: "Noto Sans", "Segoe UI", Roboto, Arial, sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.aahar-faq h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #FFD700;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #FFD700;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 18px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.faq-item h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #FFD700;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 640px) {
  .aahar-faq h2 {
    font-size: 24px;
  }
  .faq-item h3 {
    font-size: 16px;
  }
}


.aahar-table ul li {
  position: relative;
  padding-left: 28px; /* space for bullet */
  margin-bottom: 10px;
  font-weight: 600;
  color: #173845;
}

.aahar-table ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background-color: #FFD700; /* Golden center */
  border: 2px solid #16A34A; /* Green border */
  border-radius: 50%; /* Circular shape */
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.8); /* Green glow */
  transition: all 0.3s ease;
}

/* Hover effect - glow stronger and white text */
.aahar-table ul li:hover::before {
  box-shadow: 0 0 14px rgba(22, 163, 74, 1);
  transform: scale(1.15);
}

.aahar-table ul li:hover a {
  color: #262626;
  text-decoration: underline;
}

/* Blog */

.blog-item-box {
  background: linear-gradient(135deg, #ffffff 0%, #f0fff5 100%);
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.blog-item-box:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #16A34A 0%, #262626 100%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Image */
.blog-item-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

/* Blog Content */
.blog-content {
  padding: 20px;
  text-align: center;
}

.blog-content h3 a {
  color: #16A34A;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.blog-content h3 a:hover {
  color: #FFD700;
}

.blog-content p {
  color: #555;
  font-size: 14px;
  margin-top: 10px;
  min-height: 50px;
}

/* Read More Button */
.blog-read-btn {
  display: inline-block;
  margin-top: 15px;
  background: #16A34A;
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.blog-item-box:hover .blog-read-btn {
  background: #FFD700;
  color: #000;
}

/* Responsive Design */
@media (max-width: 767px) {
  .blog-item-box {
    margin-top: 20px;
  }
  .blog-content h3 a {
    font-size: 16px;
  }
}

/* Sidebar Header */
.sidebar-header-recent-posts {
  background: linear-gradient(135deg, #51f08c, #0c6d36);
  color: #fff;
  padding: 8px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.sidebar-header-recent-posts h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Recent Posts List Container */
.recent-posts-list {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* List Style */
.recent-posts-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recent-posts-list li {
  background: #f7f9fa;
  margin-bottom: 10px;
  border-radius: 10px;
  transition: all 0.35s ease;
  padding: 10px 12px;
  position: relative;
  cursor: pointer;
}

.recent-posts-list li:last-child {
  margin-bottom: 0;
}

/* Title Text */
.recent-posts-list li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  display: block;
  transition: color 0.3s ease;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* Date Badge (Default Load) */
.recent-posts-list li small {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #e6b800);
  color: #222;
  font-size: 12px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

/* Hover Effects */
.recent-posts-list li:hover {
  background: linear-gradient(135deg, #262626, #16A34A);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(22,163,74,0.25);
}

.recent-posts-list li:hover a {
  color: #FFD700;
}

.recent-posts-list li:hover small {
  background: #fff;
  color: #16A34A;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
}

/* View More Button */
.btn-view-more {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #16A34A, #262626);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.btn-view-more:hover {
  background: linear-gradient(135deg, #262626, #16A34A);
  transform: translateY(-3px);
}

.left-slide-slt-block {
    margin-bottom: 5px;
    
}

/* Responsive */
@media (max-width: 991px) {
  .recent-posts-list {
    margin-top: 15px;
  }
}

.aahar-section .content-box ul {
  padding-left: 22px;
  margin-left: 0;
}

.aahar-section .content-box ul li {
  margin-bottom: 6px;
}