/* 1. Main Section with Parallax & Soft Entrance */
.innerpage-title-bar {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 250px; /* Thoda zyada height = zyada premium */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.title-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 2. Advanced Multi-Layer Overlay */
.title-bar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Gradient + Noise Texture feel */
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* 3. Page Title with Animated Shine */
.page-title {
  color: #ffffff !important;
  font-size: 45px !important;
  font-weight: 900 !important;
  letter-spacing: 8px; /* High letter spacing for luxury feel */
  margin-bottom: 20px;
  position: relative;
  font-family: "Stack Sans Headline", sans-serif;

  /* Text Shine Effect */
  background: linear-gradient(
    to right,
    #fff 20%,
    #ffcc00 40%,
    #ffcc00 60%,
    #fff 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 4s linear infinite;
}

@keyframes textShine {
  to {
    background-position: 200% center;
  }
}

/* 4. Luxury Breadcrumb with Neon Glow */
.breadcrumb-glass {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 35px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.breadcrumb-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2); /* Soft Golden Glow */
  transform: translateY(-5px);
}

/* 5. Breadcrumb Text Details */
#crumbs,
#crumbs a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  transition: 0.3s;
}

#crumbs a:hover {
  color: #ffcc00 !important;
}

#crumbs .current {
  color: #ffcc00 !important;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

/* Decorative Line under Title */
.title-content::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffcc00;
  margin: 10px auto 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

/* 6. Responsive */

/*  ================================================================= Service Inner =============================================*/
/* ========================================================
   PREMIUM THEME VARIABLES
======================================================== */
:root {
  --srv-dark-green: #043e2e;
  --srv-yellow: #fbd758;
  --srv-text-gray: #646a69;
  --srv-border: #e8e8e8;
  --srv-bg-light: #fafafa;
}

/* ========================================================
   1. MAIN GRID LAYOUT
======================================================== */
section.services-inner-section-1 {
  background: #f9f9f9;
  padding: 50px 0;
}

.service-main-section {
  display: flex;
  gap: 60px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.service-right-section {
  width: 30%;
  position: sticky;
  top: 180px;
}
.service-left-section {
  width: 80%;
}

/* ========================================================
   2. SIDEBAR (Named 'service-right-section' in your HTML)
======================================================== */

/* Nav Links Box */
.service-inner-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
  overflow: hidden;
}

.right-title {
  background-color: var(--srv-yellow);
  color: var(--srv-dark-green);
  padding: 22px 25px;
  font-size: 20px;
  font-weight: 800;
}

.links .right-links {
  border-bottom: 1px solid var(--srv-border);
}

.links .right-links:last-child {
  border-bottom: none;
}

.links .right-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  color: var(--srv-dark-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.links .right-links a:hover {
  background-color: var(--srv-bg-light);
  color: #007055;
}

/* Arrow Hover Animation */
.links .right-links a img {
  width: 22px;
  transition: transform 0.3s ease;
}

.links .right-links a:hover img {
  transform: translateX(4px) translateY(-4px);
}

/* Contact Card */
.right-bottom-side {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  /* Placeholder background image */
  background: #043e2e
    url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=600&q=80")
    center/cover;
}

.right-bottom-inner {
  position: absolute;
  inset: 0;
  background: rgba(4, 62, 46, 0.88); /* Dark Green Overlay */
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bottom-img-text p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.bottom-img-text a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.bottom-img-text a:hover {
  opacity: 0.8;
}

/* ========================================================
   3. MAIN CONTENT (Named 'service-left-section' in your HTML)
======================================================== */

.top-image-description p,
.middle-des p {
  color: var(--srv-text-gray);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

/* Top Banner Image */
.top-image img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 30px;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* "Who This Program Helps" (Side by Side Area) */
.middle-image-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.service-card-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.middle-image-card-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  min-height: 350px;
}

.middle-image-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.middle-image-card-right-card {
  display: flex;
  flex-direction: column;
}

/* The Yellow Circle Icons inside the middle card */
.middle-image-card-right-card > img:first-child {
  width: 50px;
  height: 50px;
  background-color: var(--srv-yellow);
  border-radius: 50%;
  padding: 12px;
  object-fit: contain;
  margin-bottom: 15px;
}

.middle-image-card-span {
  font-size: 22px;
  font-weight: 700;
  color: var(--srv-dark-green);
  margin-bottom: 12px;
}

/* Thin separating line */
.middle-image-card-right .divider {
  height: 1px;
  background-color: var(--srv-border);
  margin: 0 0 15px 0;
}

.middle-image-card-p {
  color: var(--srv-text-gray);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

/* "Why It Matters" (2x2 Grid with small icons) */
.service-card-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.card-1 {
  background: #fff;
  display: flex;
  flex-direction: row;
  border-radius: 30px;
  padding: 30px;
  align-items: center;
  gap: 20px;
}
.icon-img {
  width: 60px;
  height: 60px;
  background: #f5c451;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-shrink: 0;
}

.icon-title h4 {
  color: var(--srv-dark-green);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.card-1 h4 {
  margin: 0;
  font-size: 22px;
}

.icon-title p {
  color: var(--srv-text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.bottom-img-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
h2.h2.faq-title-h2 {
  color: #03352c;
  font-size: 40px;
}
p.p.faq-title-p {
  font-size: 17px;
}
/* ========================================================
   4. MOBILE RESPONSIVE
======================================================== */

/*=================================== Blog Inner ====================================================  */

/* Blog Inner -----------------------------------  */
/* blog details page  */
/* blog details page */
.author-box {
  display: none;
}

.widget.widget_recent_entries ul li a {
  font-size: 18px;
  font-weight: 600;
}
.entry-meta span {
  color: #000000;
  margin-bottom: 20px;
}
.related-posts-section .related-posts {
  color: #000000;
  font-size: 20px;
}
.post-navigation a span {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}
.related-posts-section ol li .related-post-date {
  color: #000000;
  font-size: 17px;
  font-weight: 600;
}
.single-post .entry-content p {
  text-align: justify;
}
.single-post .entry-content ul li {
  padding-bottom: 20px;
  text-align: justify;
}
.single-post .entry-meta span:not(:last-child):after {
  font-size: 15px;
}
.table-of-content ul li {
  padding-bottom: 0px !important;
}
.table-of-content ul li a {
  color: #84482a;
  font-size: 18px;
  line-height: 38px;
}

li.cust-ul-ul {
  margin-left: 15px;
}
.table-of-content {
  background-color: #f5f1e9;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 30px;
}
div#primary {
  margin-top: 30px;
}

.blog-inner-layout {
  display: flex !important;
  gap: 40px;
  margin-top: 60px;
  justify-content: space-around;
}
.content-area {
  width: 90% !important;
}
.widget-area {
  width: 30% !important;
}
.widget-area .widget {
  margin: 0 0 50px;
  top: 200px !important;
  position: sticky !important;
}
aside#secondary {
  margin-top: 50px;
  position: sticky;
  z-index: 99;
  padding: 50px;
  width: 30%;
  top: 180px;
  height: 100%;
  background: #f4f4f4;
  border-radius: 20px;
}
.widget_text.widget.widget_custom_html {
  background: none;
}

/* blog archive page */
.archive header.entry-header {
  display: none;
}

div#comments {
  margin-bottom: 20px;
}

.blogs-title h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 20px;
}

/* =============================================== Responsive Start ================================  */

@media (max-width: 1024px) {
  .service-main-section {
    grid-template-columns: 1fr; /* Stack columns on tablets */
  }

  .service-right-section {
    order: 2; /* Move the Sidebar to the bottom on mobile */
  }

  .service-left-section {
    order: 1; /* Keep the main content at the top on mobile */
  }

  .middle-image-card {
    grid-template-columns: 1fr; /* Stack the image and feature list */
  }

  .middle-image-card-left img {
    min-height: 250px;
  }
  .innerpage-title-bar {
    height: 200px;
  }
  .service-main-section {
    flex-direction: column;
    padding: 0;
  }
  .service-left-section,
  .service-right-section {
    width: 100%;
  }
  .breadcrumb-glass {
    padding: 10px 20px;
  }
  h1.page-title {
    font-size: 35px !important;
    text-align: center;
  }
  .title-bar-overlay {
    padding: 10px 0;
  }
  .blog-inner-layout.corp-container {
    flex-direction: column;
	margin: 0;
  }

  .content-area,
  .widget-area {
    width: 100% !important;
  }
  .sidebar .site-main {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem !important;
    letter-spacing: 3px;
  }
  .service-card-1 {
    grid-template-columns: 1fr; /* Stack the small icon grid to 1 column on phones */
  }

  aside#secondary {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .widget-area {
    width: 100% !important;
  }
  .middle-image-card-right-card {
    text-align: center;
    align-items: center;
  }
  .card-1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  h2.h2.faq-title-h2 {
    text-align: center;
    font-size: 25px;
  }
	
}

/* =============================================== Responsive End ================================  */
