  .site-main {
        width: 100% !important;
        max-width: 100%;
        padding: 20px;
        margin: 740px;
    }
@media (max-width: 600px) {
  .ast-separate-container #primary{
   padding:0;
  }
}

    /* Banner Image Styling */
    .post-banner {
        position: relative;
        width: 100%;
        max-height:400px;
        overflow: hidden;
        aspect-ratio: 16/9;
        margin-bottom: 0 !important;
    }

    .banner-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
@media (max-width: 600px) { .post-banner {
        position: relative;
        width: 100%;
        max-height:none;
        overflow: hidden;
	 aspect-ratio:  0/3 !important;
        margin-bottom: 0 !important;
	margin:0;
	}}
	@media (max-width: 600px) { .banner-image  {
        width: 100%;
        height: auto;
        object-fit: cover;
	}}
    /* Reading Time Styling */
    .reading-time {
        font-size: 16px;
        color: #444;
		  font-family: Poppins, sans-serif;
    }

    /* Main Content Layout */
    .content-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
	
    }

    /* Main Content Area */
    .main-content {
        flex: 2;
    }

    .main-content h1,
    .main-content h2,
    .main-content h3,
    .main-content h4,
    .main-content h5 {
        font-family: Poppins, sans-serif;
		text-transform: capitalize !important;
		font-weight: 600;
		  color: #222;
		 margin-bottom: 15px;
		 color: #5A8E95 !important;

    }
    }

    .main-content h1 {
        font-size: 26px;
		 font-family: Poppins, sans-serif !important;
    }

	.main-content h2{
		 font-size: 26px;
		
	}
	.main-content h3{
		 font-size: 22px;
	}
	 .main-content h4, .main-content h5 {
		  font-size: 20px;
		 font-weight: 600 !important;
    }

    .main-content p {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        color: #333;
    }
 .main-content a {
  color:  #013468;
  text-decoration: none; /* Optional: removes underline */
  transition: color 0.3s ease; /* Smooth transition on hover */
	 font-weight:600;
}

 .main-content a:hover {
  color:#5A8E95;
}
	
    /* Sticky Section for the Right Column */
    .sticky-section {
        position: relative;
        flex: 1;
    }

    /* Sticky Image */
.sticky-image {
    width: 100%;
    max-width: 400px;
    height: 450px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 150px; /* Sticky effect starts after scrolling 120px */
    opacity: 0; /* Start hidden for animation */
    transform: translateY(-20px); /* Initial position for entrance effect */
    animation: fadeInUp 0.8s forwards; /* Apply entrance animation */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for hover effect */
	border-radius:30px;
}

/* Entrance Animation */
@keyframes fadeInUp {
    to {
        opacity: 1; /* End state is fully visible */
        transform: translateY(0); /* End state is in the original position */
    }
}

/* Hover Effect */
.sticky-image:hover {
    transform: scale(1.05); /* Slightly scale up on hover */
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}


   /* General Sidebar Styling */
.sticky-section {
    position: sticky;
    top: 100px;
    padding: 20px;
 
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Table of Contents Wrapper */
.table-of-contents-wrapper {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* Recently Posted Articles */
.recent-posts {
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
    padding: 0; /* Remove padding for the parent section */
	
	
}

/* Recent Posts Title */
.recent-posts h3 {
    font-size: 24px; /* Adjust title font size */
    font-weight: 600;
    margin-bottom: 10px; /* Reduce margin below the title */
    text-align: center;
	 text-align: center;
    background: white; /* White background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    margin-bottom: 20px;
	text-transform: capitalize !important;
}

/* Recent Posts List Items */
.recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Remove margin for the list */
	
}

.recent-posts li {
    display: block;
    background: #fff;
    margin-bottom: 20px; /* Uniform spacing between items */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	 box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.recent-posts li:hover {
    transform: translateY(-3px); /* Subtle hover effect */
}

.recent-posts li img {
    display: block;
    width: 100%; /* Make sure the image fills the width */
    height: auto;
    object-fit: cover; /* Ensure the image maintains its aspect ratio */
    border-bottom: 1px solid #f0f0f0; /* Thin border below the image */
}

.recent-posts li h4 {
    font-size: 18px; /* Adjust the font size for post titles */
    font-weight: 600;
    color: #2a4359;
    margin: 5px 0; /* Smaller margin for title */
	text-transform: capitalize !important;
	padding-left:15px;
}

.recent-posts li p {
    font-size: 14px; /* Adjust font size for descriptions */
    color: #555;
    line-height: 1.4; /* Slightly tighter line height */
    margin-top:0px;
	padding-left:15px;
}

/* Table of Contents Heading */
.toc-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2a4359;
}

/* TOC Toggle Button */
#toc-toggle {
    width: 100%;
    background-color: #2A4359;
    color: #fff;
    padding: 10px;
    border: none;
	text-transform: capitalize !important;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
	margin-bottom:20px;
}

#toc-toggle:hover {
    background-color: #5A8E95;
    transform: translateY(-2px);
}

/* Table of Contents Content */
#table-of-contents {
    margin-top: -10px;
    display: none; /* Initially hidden */
    text-align: left;
	background:#fff;
	padding:30px;
	border-radius:11px;
	margin-bottom: 10px;
}

#table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#table-of-contents li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #444;
}

#table-of-contents li a {
    text-decoration: none;
    color: #444;
    transition: color 0.2s ease;
}

#table-of-contents li a:hover {
    color: #2A4359!important;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .sticky-section {
        position: relative;
        top: 0;
    }
}

@media screen and (max-width: 767px) {
    .table-of-contents-wrapper {
        padding: 15px;
    }
}


    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Responsive Design */
    @media screen and (max-width: 1024px) {
        .content-wrapper {
            flex-direction: column;
        }
    }

    @media screen and (max-width: 767px) {
        .post-banner {
            aspect-ratio: 4/3;
        }

        .sticky-image {
            width: 100%;
            max-width: 100%;
            height: auto;
        }
    }
	/* Heading styling */
.heading-container {
    text-align: center;
    background: #2A4359; /* White background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    margin-bottom: 20px;
	border-radius:9px;
}
.serviceh3{
    color: #fff; !important; /* Black font color */
    font-family: 'Poppins', sans-serif; /* Poppins font */
    text-transform: capitalize !important;
    display: flex;
    align-items: center; /* Vertically align the image and text */
    justify-content: center; /* Center align */
	font-size:25px !important;
	font-weight:700 !important;
	margin-bottom:15px;
}
	.serviceh3 h3{
		 color: #fff; !important;
	}
.servicep3{
		margin:0;
		color:#fff;
	}
/* Image inside the heading */
.heading-img {
    width: 80px !important;/* Small image size */
    height: auto; /* Maintain aspect ratio */
}

/* List styling */
.service-list {
    list-style: none; /* Remove default list bullets */
    padding: 0;
    margin: 0;
}

.li {
    font-family: 'Poppins', sans-serif; /* Poppins font */
    font-size: 16px;
    background: white; /* White background for list items */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px; /* Slightly rounded corners */
    display: flex;
    align-items: center; /* Center items vertically */
    gap: 10px; /* Space between icon and text */
    transition: background 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

/* List icon styling */
.list-icon {
    width: 13%; /* Small image size for list icons */
    height: auto; /* Maintain aspect ratio */
}

.li i {
    color: #444; /* Icon color */
    font-size: 18px; /* Icon size */
}

/* Hover effect */
.li:hover {
    background: #f0f0f0; /* Light grey background on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
    cursor: pointer; /* Change cursor to pointer */
}
	.faqs-section {
        margin-top: 40px;
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
    }

    .faqs-section h2 {
        font-family: Poppins, sans-serif;
        font-weight: 600;
        font-size: 28px;
        color: #333;
        margin-bottom: 20px;
    }

    .faq-item {
        margin-bottom: 20px;
    }

    .faq-item h3 {
        font-family: Poppins, sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #2a4359;
        margin-bottom: 5px;
    }

    .faq-item p {
        font-family: Poppins, sans-serif;
        font-size: 16px;
        color: #444;
        line-height: 1.6;
    }
/* Nested TOC Styles */
#table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#table-of-contents li {
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

#table-of-contents li a {
    text-decoration: none;
    color: #000;
    transition: color 0.2s ease;
	 font-size: 14px;
}

#table-of-contents li a:hover {
    color: #013468;
}

#table-of-contents .toc-sublist {
    margin-left: 20px; /* Indent sublist items */
}

#table-of-contents .toc-sublist li a {
    color: #666; /* Different color for subheadings */
	  font-size: 14px;
}
	#table-of-contents .toc-sublist li a:hover {
    color: #013468;
}
	.faq-section {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.faq-section {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #5A8E95;
    cursor: pointer;
}

.faq-item p {
    font-size: 15px;
    color: #444;
    margin-top: 5px;
}
/* Call to Action (CTA) Div Style */
.blog-cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f8f8, #ffffff);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}
.blog-cta-heading{
  color: #2a4359 !important;
  font-size: 25px !important;
  margin-bottom: 5px;
  line-height: 1.2;
	font-weight:700 !important;
	text-transform:capitalize;
}

.blog-cta-text {
  flex: 1 1 300px;
  max-width: 600px;
}


.blog-cta-text h2 span {
  color: #7fc9c4 !important;
}

.blog-cta-text p {
  color: #555 !important;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.blog-cta-text a {
  display: inline-block;
  background: #5A8E95 !important;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
	margin-top:20px;
}

.blog-cta-text a:hover {
  background: #1c2e3f !important;
  box-shadow: 0 6px 16px rgba(42, 67, 89, 0.3);
	  color: #fff;
}

.blog-cta-image {
  flex: 1 1 250px;
  text-align: center;
  order: 0; /* default for desktop */
}

.blog-cta-image img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);}
	
	.cta-button {
  display: inline-block;
		width:100%;
  background-color: #5A8E95 !important;
  color: white !important;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
		margin-top:15px;
}

.cta-button:hover {
  background-color: #1c2e3f !important;
}
	.empowerment{
		 list-style: none !important;
            padding-left: 0;
            margin-bottom: 20px;
            color: #283567;
            font-size: 14px;
            line-height: 1.7;
				   margin:0px;
	}
	.sidebar-ul {
  list-style: none;
  padding-left: 0;
  color: #283567;
  font-size:18px;
  line-height: 1.7;
text-align:left;
margin:0;
		font-weight:700;
}

.sidebar-ulul li {
  margin-bottom: 10px;
}
.note{ font-weight: 700;
    padding: 8px 12px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;  
    font-style: italic; 
    color: #fff; 
    font-size: 25px;  
    border: 6px solid #5A8E95; 
	background:#5A8E95;
} 
	.empowering {
		 font-weight: 700;
    padding: 8px 12px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;  
    font-style: italic; 
    color: #5A8E95; 
    font-size:25px !important;  
	}
	.cta-button-secondary {
   display: inline-block;
  background-color: #5A8E95 !important;
  color: white !important;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
		margin-top:15px;
	width: 100%;
	}
.cta-button-secondary:hover {
  background-color: #2A4359 !important;
}	
	.meta-bar-compact {
   display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;	
    background-color: #2A4359;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;  
max-height:40px;
		margin-bottom:20px;
}

.meta-bar-compact .reading-time,
.meta-bar-compact .share-section {
    display: flex;
    align-items: center;
    white-space: nowrap;
	margin-left:20px;
	color:#fff !important;
}

.meta-bar-compact .reading-time i {
    font-size: 12px;
    color: #fff;
    margin-right: 4px;

}

.meta-bar-compact .share-label {
    margin-right: 4px;
    font-weight: 500;
	color:#fff;

}

.meta-bar-compact .share-section a {
    font-size: 14px;
    color: #2A4359;
    transition: color 0.3s;
	
}

.meta-bar-compact .share-section a:hover {
    color: #01C324;
}
@media (max-width: 600px) {
    .meta-bar-compact {
        flex-direction: column;
        align-items: center;
        max-height: none;
        padding: 10px;
    }

    .meta-bar-compact .reading-time,
    .meta-bar-compact .share-section {
        margin: 0;
        white-space: normal;
    }

    .meta-bar-compact .reading-time i {
        margin-right: 0; /* Remove space on mobile */
    }

    .meta-bar-compact .share-section a {
        font-size: 16px;
    }
	.main-content h1{
		font-size:26px;
	}
}
	
	.last-updated {
    font-size: 14px;
    color:  rgb(107, 124, 124) 
		!important;
    margin-top: 5px;
}
