/* Make header fixed so we can hide/show via transform */
.site-post-header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	height: var(--header-height);
	display: block;
	z-index: 120;
	background: linear-gradient(180deg, rgba(15, 111, 255, 0.06), rgba(255, 255, 255, 0));
	/* will be overridden in dark */
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--border);
	transform: translateY(0);
	transition: transform 260ms cubic-bezier(.2, .9, .2, 1), box-shadow 200ms ease;
	will-change: transform;
	box-shadow: 0 6px 20px rgba(8, 20, 48, 0.04);
}

/* darker, high-contrast header background in dark mode */
@media (prefers-color-scheme: dark) {
	.site-post-header {
		background: linear-gradient(180deg, rgba(3, 7, 15, 0.92), rgba(3, 7, 15, 0.85));
		box-shadow: 0 8px 28px var(--shadow-strong);
	}
}

/* Respect reduced motion prefs */
@media (prefers-reduced-motion: reduce) {
	.site-post-header {
		transition: none;
	}
}

/* Hidden state (moved off-screen) */
.site-post-header.header-hidden {
	transform: translateY(-110%);
	box-shadow: none;
}

/* Give the document top offset so content doesn't jump under fixed header */

.header-post {
	padding-top: var(--header-height);
}

.post-header-inner {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	position: relative;
}

/* Logo */
.logo {
	display: flex;
	gap: 12px;
	align-items: center
}

.site-logo {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--bg), var(--site-bg));
	font-weight: 800;
	border-radius: 12px;
	box-shadow: 0 6px 16px var(--shadow-strong);
	flex: 0 0 44px;
	color: var(--text);
}

.brand-text {
	line-height: 1
}

.brand-title {
	font-weight: 600;
	color: var(--text);
	font-size: 16px;
	letter-spacing: 0.2px
}

.brand-sub {
	font-size: 12px;
	color: var(--muted);
	margin-top: 2px
}

/* Nav */
.main-nav {
	display: flex;
	align-items: center;
	gap: 16px
}

.main-nav ul {
	display: flex;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center
}

.main-nav a {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--text);
	font-weight: 500;
	font-size: 14px;
	transition: all 160ms ease;
	background: transparent;
	text-decoration: none;
}

/* Active / current link styling */
.main-nav a[aria-current="page"],
.main-nav a.active {
	background: linear-gradient(90deg, rgba(15, 111, 255, 0.12), rgba(58, 161, 255, 0.06)) !important;
	color: var(--brand);
	box-shadow: 0 6px 18px rgba(15, 111, 255, 0.06);
	transform: translateY(0px) !important;
	outline: none;
}

@media (prefers-color-scheme: dark) {

	.main-nav a[aria-current="page"],
	.main-nav a.active {
		/* stronger highlight in dark: a subtle bright band + soft glow */
		background: linear-gradient(90deg, rgba(88, 166, 255, 0.14), rgba(30, 111, 255, 0.06));
		color: var(--brand);
		box-shadow: 0 8px 20px rgba(40, 80, 140, 0.12);

	}
}

.main-nav a:hover,
.main-nav a:focus {
	transform: translateY(-2px);
	outline: none;
	background: rgba(11, 116, 255, 0.08);
	text-decoration: none;
	color: var(--brand);
}


/* Mobile hamburger */
.post-menu-toggle {
	display: none;
	background: transparent !important;
	border: 0;
	padding: 8px;
	border-radius: 8px;
	cursor: pointer
}

.post-menu-toggle:focus {
	outline: 3px solid rgba(15, 111, 255, 0.12) !important;
}

.hamburger {
	width: 20px;
	height: 14px;
	position: relative;
	display: inline-block
}

.hamburger span {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--text);
	transition: transform 180ms ease, opacity 120ms ease
}

.hamburger span:nth-child(1) {
	top: 0
}

.hamburger span:nth-child(2) {
	top: 6px
}

.hamburger span:nth-child(3) {
	top: 12px
}

.menu-open .hamburger span:nth-child(1) {
	transform: translateY(6px) rotate(45deg)
}

.menu-open .hamburger span:nth-child(2) {
	opacity: 0
}

.menu-open .hamburger span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg)
}

/* MOBILE NAV - hidden by default on all screens */
.mobile-nav {
	display: none;
	opacity: 0;
	pointer-events: none
}

/* mobile active style */
.mobile-nav a.active,
.mobile-nav a[aria-current="page"] {
	background: linear-gradient(90deg, rgba(15, 111, 255, 0.10), rgba(58, 161, 255, 0.04));
	color: var(--brand);
	border-radius: 8px;
}

@media (prefers-color-scheme: dark) {

	.mobile-nav a.active,
	.mobile-nav a[aria-current="page"] {
		background: linear-gradient(90deg, rgba(88, 166, 255, 0.12), rgba(30, 111, 255, 0.03));
		color: var(--brand);
	}
}

/* small helpers */
.sr-only {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	border: 0;
	padding: 0;
	margin: -1px
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid rgba(15, 111, 255, 0.14);
	outline-offset: 3px;
}

/* MEDIA: show mobile controls only under breakpoint */
@media (max-width:880px) {
	.main-nav ul {
		display: none
	}

	.post-menu-toggle {
		display: inline-flex
	}

	.mobile-nav {
		display: block;
		position: absolute;
		right: 20px;
		top: var(--header-height);
		background: var(--content-bg);
		box-shadow: 0 12px 40px var(--shadow-soft);
		border-radius: 12px;
		padding: 12px;
		min-width: 220px;
		transform-origin: top right;
		opacity: 0;
		transform: translateY(-8px) scale(0.98);
		pointer-events: none;
		transition: all 180ms ease;
		z-index: 60;
		border: 1px solid var(--border);
	}

	.mobile-nav.open {
		opacity: 1;
		transform: translateY(4px) scale(1);
		pointer-events: auto
	}

	.mobile-nav ul {
		display: flex;
		flex-direction: column;
		gap: 8px;
		margin: 0;
		padding: 0;
		list-style: none
	}

	.mobile-nav a {
		padding: 10px 12px;
		border-radius: 8px;
		display: block;
		color: var(--text);
		font-weight: 400 !important;
		text-decoration: none;
		font-size: 16px;
	}
}

/* ========== Post Containt Code ========= */

.post-containt{
	background: var(--content-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 14px 34px var(--shadow-strong);
  	line-height: 1.7;
}

/* Post Demo And Doenload Buton  */
.pt-post-action-button{
    border-radius: 10px;
    align-items: center;
    align-content: center;
}
.btn-demo-pt, .btn-download-pt{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 7px;
  border-radius: 3px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: all .5s !important;
}
.btn-demo-pt{
  background: var(--btn3-bg);
}
.btn-download-pt{
  background: var(--btn2-bg);
}
.btn-demo-pt:hover{
  color: #fff;
  background: var(--btn5-bg);
  transition: all .5s !important;
}
.btn-download-pt:hover{
  color: #fff;
  background: var(--btn1-bg);
  transition: all .5s !important;
}



/* Post Help Box Containt */
.customization-help-box{
    background: var(--section-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 20px;
    margin-top: 60px;
    border: 1px solid var(--brand);
}
.icon{
    border: 3px solid var(--extra);
    border-radius: 100%;
    color: #fff;
    padding: 20px;
    margin-top: -60px;
    background: var(--base);
}
.customization-help-box h3{
    font-size: 22px;
}
.customization-help-box a{
    background: #003d99;
    color: #fff;
    padding: 5px 25px;
    border-radius: 3px;
    font-size: 16px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .5s;
    font-weight: 500;
}
.customization-help-box a:hover{
    background: var(--extra);
    transition: all .5s;
    color: #fff;
}
.customization-help-box p{
    font-size: 15px;
    margin-bottom: 0px !important;
    text-align: center;
}
.template-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 20px;
}
.post-info-card {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px;
  background: var(--section-bg);
  border-top: 4px solid var(--brand);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.post-info-icon {
  background: var(--base);
  color: #fff;
  font-size: 35px;
  width: 80px;
  height: 80px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-info-card{
  display: flex;
}
.post-info-text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-info-card strong {
  font-size: 19px;
    line-height: 16px;
}
.post-info-card p {
  margin: 0px !important;
  font-size: 16px;
}
.pt-post-img{
    background: var(--section-bg);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Post Speed Test Result Containt */
.performance-box {
  border-radius: 10px;
  padding: 20px 30px;
}

.performance-box h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px !important;
}

.progress-group {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
    margin-bottom: 20px;
}

.progress-item {
  flex: 1;
  min-width: 250px;
}

.progress-label {
  font-size: 16px;
  margin-bottom: 10px;
    padding-left: 10px;
}

.progress-bar {
  background: #eee;
  border-radius: 50px;
  height: 30px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 500;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px;
  transition: width 1s ease-in-out;
  white-space: nowrap;
  box-sizing: border-box;
}

.progress-fill span {
  margin-left: auto;
  padding-left: 15px;
}

/* Post Title Css */
.pt-blog-post-header{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}
.pt-blog-post-header h1{
    font-size: 2.2rem;
    font-weight: 700;
}
.pt-post-meta{
    display: flex;
    gap: 10px;
    font-size: 16px;
}
.pt-post-submeta{
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}






    @media (max-width: 600px) {
      .performance-bars {
        flex-direction: column;
        align-items: center;
      }
      .info-card {
        flex-direction: column;
        text-align: center;
      }
      .info-icon {
        margin-bottom: 10px;
      }
    }




@supports (position: sticky) {
	main>aside {
		position: sticky;
		top: 20px;
	}
} 

/* ========== Post Sidebar Code ========= */

.sidebar-font-max-20{
  font-size: clamp(18px, calc(24px + 1vw), 20px);
  font-weight: 500;
}

.sidebar-font-max-18{
  font-size: clamp(16px, calc(24px + 1vw), 18px);
  font-weight: 500;
}
.pt-sidebar-links .cat-links{
  margin: 20px 0px !important;
  text-align: center;
}

.sidebar-box{
  background: var(--sidebar-bg);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 10px 24px var(--shadow-soft);
}
.sidebar-box-imp{
	background: var(--content-bg);
  	border-top: 4px solid var(--brand);
	border-radius: 10px;
	box-shadow: 0 6px 18px var(--shadow-strong);
	overflow: hidden;
}
.pricing h3{
  font-size: 20px;
  font-weight: 500;
}

/* 1. Remove default list styling from your <ul> */
.sidebar-list{
  font-size: 16px;
  padding: 5px;
list-style-type: none;
  margin: 0 0 0 13px;
}
/* 2. Add padding to each <li> to make room for the icon */
.sidebar-list li {
  position: relative; /* Required for positioning the icon */
  padding-left: 1.8em; /* Adjust this value to change space between icon and text */
  margin: 0.75em 0; /* Optional: adds vertical space between items */
}
/* 3. Create the icon using the ::before pseudo-element */
.sidebar-list li::before {
  content: '';
  display: inline-block;
  /* --- Icon Styling --- */
  width: 1em;   /* Controls icon size */
  height: 1em;  /* Controls icon size */
  /* --- Icon Positioning --- */ 
  position: absolute;
  left: 0;
  top: 0.25em; /* Adjust for perfect vertical alignment */
  /* --- Your SVG Icon --- */
  /* I've encoded your SVG and set its color to match the text */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 520' fill='currentColor'%3e%3cpath d='m239.987 460.841a10 10 0 0 1 -7.343-3.213l-197.987-214.165a10 10 0 0 1 7.343-16.788h95.3a10.006 10.006 0 0 1 7.548 3.439l66.168 76.124c7.151-15.286 20.994-40.738 45.286-71.752 35.912-45.85 102.71-113.281 216.994-174.153a10 10 0 0 1 10.85 16.712c-.436.341-44.5 35.041-95.212 98.6-46.672 58.49-108.714 154.13-139.243 277.6a10 10 0 0 1 -9.707 7.6z'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sidebar-guarantee {
  text-align: center;
  background: #f9f9f9;
  color: #085835;
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 14px;
}
.sidebar-guarantee i {
  margin-right: 5px;
}
.theme-buy-now-url{
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 7px;
}
.theme-buy-now-url .sidebar-button{
  background: var(--extra);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  align-content: center;
  border-radius: 3px;
  transition-duration:  .5s;
}
.theme-buy-now-url .sidebar-button:hover{
  background: var(--base);
  color: #fff;
  transition-duration:  .5s;
}
.author-info img{
  width: 60px;
  height:60px;
  border-radius: 100% !important;
}
.author-info{
  justify-content: start;
  padding: 25px 15px 15px 15px;
  gap: 15px;
}
.sidebar-store-info{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sidebar-store-info h4{
  font-size: 20px;
  line-height: 0;
}
.sidebar-store-info p{
  font-size: 16px;
  font-family: robot;
  margin: 0px !important;
  line-height: 16px;
}
.store-url-author{
  padding: 0px 20px 10px 20px;
}
.sidebar-button-store{
  background: #074177;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  align-content: center;
  border-radius: 3px;
  transition-duration:  .5s;
}
.sidebar-button-store:hover{
  background: var(--base);
  color: #fff;
  transition-duration:  .5s;
}
.pt-sidebar-links{
  padding: 0px 20px 10px 20px;
  border-radius: 10px;
}
.pt-sidebar-links h4{
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid var(--e-global-color-86ad1b4);
  padding: 0 0 8px 0;
}

/* Define the animation keyframes */
@keyframes ptctsideanimred {
  0%, 100% {
    transform: scale(1);
    box-shadow: rgba(51, 217, 178, 0.165) 0px 0px 0px 0px;
  }
  50% {
    transform: scale(0.988398);
    box-shadow: rgba(51, 217, 178, 0.165) 0px 0px 0px 7.67955px;
  }
}
.pt-side-ct-h-text {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 600 !important;
  letter-spacing: 0.8px;
  background: linear-gradient(10deg, rgba(100, 206, 255, 0.82) 10%, rgba(76, 0, 255, 0.83) 100%);
  border-radius: 10px 5px;
  box-shadow: 0 0 9px #c5c5c5;
  animation: ptctsideanimred 2s infinite;
}
.sidebar-ct-link {
  margin-bottom: 15px;
}
.sidebar-ct-link p {
  font-size: 15px;
  line-height: 1.5;
}
.sidebar-ct-link p a {
  color: var(--alt-brand);
}
.sidebar-ct-link p a:hover {
  color: var(--extra);
}
.color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.color-palette span {
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
text-decoration: none;
}
.color-palette a:hover{
  text-decoration: none;
}

/* 🔹 Mobile (<768px) → stack */
@media (max-width: 767px) {

}

/* 🔹 Tablet (768–1023px) */
@media (min-width: 768px) and (max-width: 1023px) {

}