/*
Theme Name: Vapeblogs
Theme URI: https://blogs.fronxsolutions.com/
Author: Your Name
Author URI: https://blogs.fronxsolutions.com/
Description: A vape products WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vapeblogs
*/

/* css reset here */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* root variables */
:root {
  --primary-color: #091b31;
  --secondary-color: #c6943d;
  --black-color: #000000;
  --white-color: #ffffff;
  --text-color: #888888;
  --font-primary: "Poppins", sans-serif;
  --transition: all 0.3s ease;
}

/* global body styling */
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white-color);
}

/* common tags */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}
p {
  margin-bottom: 15px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.theme-butn {
  display: block;
  max-width: max-content;
  background-color: transparent;
  border: 1px solid transparent;
  color: transparent;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: 0.4s all;
}
.theme-butn-primary {
  background-color: var(--white-color);
  border: 1px solid transparent;
  color: var(--secondary-color);
}
.theme-butn-primary:hover {
  border-color: var(--white-color);
  background-color: transparent;
  color: var(--white-color);
}
.theme-butn-secondary {
  background-color: var(--white-color);
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}
.theme-butn-secondary:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/* sectionInfo css start here */
.sectionInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  width: 100%;
  max-width: 767px;
  margin: 0 auto 42px;
  color: var(--white-color);
}
.sectionInfo.light {
  color: var(--primary-color);
}
.sectionInfo p {
    text-align: center;
    margin-bottom: 0px !important;
}
/* sectionInfo css end here */

/* header css start here */
header {
  position: sticky;
  top: 0;
  background-color: transparent;
  transition: 0.4s all;
  z-index: 99999;
}
header.scrolled-header {
  background-color: var(--primary-color);
  transform: translateY(0%);
}
.top-nav {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 0;
  border-bottom: 1px solid #333;
  display: none !important;
}
.top-nav.active {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.top-nav .nav-link {
  color: white;
  font-size: 0.85rem;
  padding: 0 10px;
  text-transform: uppercase;
}

.main-header {
  background-color: var(--primary-color);
  padding: 6px 0;
}

.header_LogoWrap a img{
    max-width: 100px;
    height: auto;
}

.logo-text {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -1px;
  color: var(--white-color);
  text-decoration: none;
}

.logo-text span {
  font-weight: 300;
}

.slogan {
  color: var(--v360-text-muted);
  font-size: 0.75rem;
  margin-left: 15px;
  border-left: 1px solid #444;
  padding-left: 15px;
  display: none !important;
}

.header_SearchBar{
	display: none;
}

.secondary-nav {
  position: relative;
  padding: 8px 0px;
  background-color: var(--secondary-color);
}

.secondary-nav .nav-link {
  color: var(--white-color);
  font-weight: 600;
  padding: 15px 12px;
  font-size: 0.9rem;
}

.secondary-nav .nav-link:hover {
  background-color: var(--v360-light-gray);
}

ul.header_NavMenus{
    position: relative;
    margin: 0;
    padding: 0 0 0 32px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}
ul.header_NavMenus li a{
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.btn-business {
  display: block;
  max-width: max-content;
  background-color: var(--white-color);
  border: 1px solid transparent;
  color: var(--secondary-color);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: 0.4s all;
}

.btn-database {
  border: 1px solid var(--white-color);
  color: var(--white-color);
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
/* header css end here */

/* mega menus css start here */
.mega-dropdown {
  position: static !important;
}

/* bannerBLog_Sec css start here */
.bannerBLog_Sec {
  position: relative;
  width: 100%;
  padding: 15px;
}
.bannerBLog_Inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.bannerBLog_Inner .leftBox {
  width: 24.375vw;
  height: 450px;
}
/* .bannerBLog_Inner .leftBox a .infoBox .blockInfo{
    display: block;
    text-align: center;
}
.bannerBLog_Inner .leftBox a .infoBox .blockInfo .authorWrap::before{
	display: none;
} */
.bannerBLog_Inner a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.bannerBLog_Inner a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* backdrop-filter: blur(1.6px); */
    z-index: 1;
}
.bannerBLog_Inner a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0, #000000 100%);
    opacity: 1;
}
.bannerBLog_Inner .centerBox {
  width: 46.875vw;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 8px;
}
.bannerBLog_Inner .centerBox a {
  height: 222px;
}
/* .bannerBLog_Inner .centerBox a .infoBox {
  color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  top: 0;
} */
.bannerBLog_Inner .centerBox a .infoBox{
    max-width: 575px;
    margin: 0 auto;
}
.bannerBLog_Inner .centerBox a .infoBox h4 {
    font-size: 26px;
    text-align: center;
    line-height: 32px;
}
.bannerBLog_Inner .rightBox {
  width: 24.375vw;
  height: 450px;
}
/* .bannerBLog_Inner .rightBox a .infoBox .blockInfo{
    display: block;
    text-align: center;
}
.bannerBLog_Inner .rightBox a .infoBox .blockInfo .authorWrap::before{
	display: none;
} */
.bannerBLog_Inner a img {
    transform: scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s;
    display: block;
}
.bannerBLog_Inner a:hover img {
  transform: scale(1.1);
}
.bannerBLog_Inner a .infoBox {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 0px;
    z-index: 2;
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
    line-height: 24px;
}
.bannerBLog_Inner a .infoBox h4 {
    margin-bottom: 8px;
    color: var(--white-color);
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    text-shadow: 0px 0px 1px #fff, 0px 0px 0px #00000000;
}
.bannerBLog_Inner a .infoBox .blockInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
}
.bannerBLog_Inner a .infoBox .blockInfo .authorWrap {
  position: relative;
  padding-left: 12px;
}
.bannerBLog_Inner a .infoBox .blockInfo .authorWrap .blogAuthor{
	color: var(--secondary-color);
}
.bannerBLog_Inner a .infoBox .blockInfo .authorWrap::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--white-color);
  border-radius: 50px;
}
/* bannerBLog_Sec css end here */

/* popularCategories_Sec css start here */
.popularCategories_Sec {
  position: relative;
  width: 100%;
  background-color: var(--primary-color);
  padding: 40px 0px;
}
.marquee-cont {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 42px;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  animation: marqueeMove 12s linear infinite;
  transform: translateX(-20%);
}
.marquee-cont:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-slider {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-shrink: 0;
}
.marquee-slider p {
  margin: 0;
  color: transparent;
  font-size: 160px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 152px;
	-webkit-text-stroke: 1px var(--secondary-color);
/*   -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); */
  white-space: nowrap;
}
@keyframes marqueeMove {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(-60%);
  }
}
.popularCategories_Slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
}
.popularCategories-pagination {
  position: absolute;
  text-align: center;
}
.popularCategories-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: var(--white-color);
}
.popularCategories-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color) !important;
}
.categoryContent_Box a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: #141924;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.categoryContent_Box a:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.categoryContent_Box a .imgBox {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 14px;
}
.categoryContent_Box a .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categoryContent_Box a .content {
  display: block;
  width: 100%;
}
.categoryContent_Box a .content h2 {
  margin-bottom: 0px;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
/* popularCategories_Sec css end here */

/* siteArticle_Sec css start here */
.siteArticle_Sec {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0px;
}
.articleContent_Box {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.articleContent_Box .imgWrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.articleContent_Box .imgWrap .imgTag {
  position: absolute;
  top: 15px;
  right: 15px;
  max-width: max-content;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 400;
  z-index: 1;
}
.articleContent_Box .imgWrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  transform: scale(1);
  transition: 0.4s all;
}
.articleContent_Box .imgWrap:hover img {
  transform: scale(1.1);
}
.articleContent_Box .articleInfo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.articleContent_Box .articleInfo a {
  display: block;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  transition: 0.4s all;
}
.articleContent_Box .articleInfo a:hover {
  text-decoration: underline;
}
.articleContent_Box .articleInfo .blockInfo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
}
.articleContent_Box .articleInfo .blockInfo .authorWrap {
  position: relative;
  padding-left: 12px;
}
.articleContent_Box .articleInfo .blockInfo .authorWrap::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50px;
}
.articleListing {
  position: relative;
  width: 100%;
}
.articleListing h3{
    display: block;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}
.articleListing ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.articleListing ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.articleListing ul li .imgBox {
  position: relative;
  flex: 0 0 150px;
  max-width: 150px;
  overflow: hidden;
  border-radius: 15px;
}
.articleListing ul li .imgBox a .imgTag {
  position: absolute;
  top: 5px;
  right: 5px;
  max-width: max-content;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 400;
  z-index: 1;
}
.articleListing ul li .imgBox a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  transform: scale(1);
  transition: 0.4s all;
}
.articleListing ul li .imgBox:hover a img {
  transform: scale(1.2);
}
.articleListing ul li .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.articleListing ul li .info a {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}
.articleListing ul li .info a:hover {
  text-decoration: underline;
}
.articleListing ul li .info .authorName {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #888888;
  font-size: 14px;
}
.articleListing ul li .info .authorName a {
  color: var(--secondary-color);
}
/* siteArticle_Sec css end here */

/* popularBrand_Sec css start here */
.popularBrand_Sec {
  position: relative;
  width: 100%;
  background-color: var(--primary-color);
  padding: 40px 0px;
	display: none;
}
.popularBrand_Slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0px;
}
.popularBrand_Slider .swiper-button-prev{
	left: 0 !important;
	background: var(--secondary-color);	
}
.popularBrand_Slider .swiper-button-next{
	right: 0 !important;
	background: var(--secondary-color);
}
.popularBrand_Slider .swiper-button-next:after,
.popularBrand_Slider .swiper-button-prev:after{
    font-size: 14px;
    font-weight: 600;
}
.popularBrand_Img a{
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white-color);
    border: 1px solid transparent;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
}
.popularBrand_Img a:hover{
    background-color: rgba(0, 0, 0, 0.2);
    border-color: #ffffff47;
}
.popularBrand_Img a img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 0px;
	transform: scale(1);
    transition: all .3s ease;
}
.popularBrand_Img a:hover img{
    transform: scale(1.01);
}
.popularBrand_Img a h3{
    margin-bottom: 0px;
    text-align: center;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}
.popularBrand_Img a:hover h3{
	color: var(--white-color);
}
.popularBrand-pagination {
  position: absolute;
  text-align: center;
}
.popularBrand-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: var(--white-color);
}
.popularBrand-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color) !important;
}
/* popularBrand_Sec css end here */

/* partnersSection css start here */
.partnersSection {
    background-color: #f7f7f7;
    padding: 40px 0px;
    width: 100%;
    overflow: hidden;
}
.partnersGrid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
}
.partnerItem {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 24px;
    border-right: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}
.partnerItem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--secondary-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.partnerItem:hover::before {
  transform: scaleY(1);
}
.partnerLogo_Wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}
.partnerLogo_Wrap .imgBox img{
    width: 120px;
    height: 70px;
    object-fit: contain;
    border-radius: 0px;
    margin-bottom: 0px;
    transition: all .3s ease;
}
.partnerItem:hover .partnerLogo_Wrap .imgBox img{
    filter: unset;
}
.partnersName {
    display: block;
    margin-bottom: 0px;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
	transition: color 0.3s ease;
}
.partnerItem:hover .partnersName{
  color: var(--white-color);
}
/* partnersSection css end here */

/* catch moment css start here */
.catch-the-moment {
  position: relative;
  padding: 40px 0px;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: none;
}
.momentSwiper {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}
.moment-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #1a1d23;
  cursor: pointer;
}
.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.moment-card:hover img {
  transform: scale(1.05);
}
.play-overlay,
.instagram-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  pointer-events: none;
  opacity: 0.8;
}
.instagram-icon {
  top: 15px;
  right: 15px;
  left: auto;
  transform: none;
  font-size: 1.2rem;
}
.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.2rem;
}
.momentSwiper-pagination {
  position: absolute;
}
.momentSwiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: var(--white-color);
}
.momentSwiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color) !important;
}
/* catch moment css end here */

/* vapingReels sec css start here */
.vapingReels {
  position: relative;
  padding: 40px 0px;
  background-color: var(--primary-color);
  color: var(--white-color);
}
.vapingReels_Slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.vapingReels_Content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.vapingReels_Content .videoBox {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.videoOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vapingReels_Content .videoBox .videoWrapper {
  position: relative;
  width: 100%;
  height: 500px;
}
.vapingReels_Content .videoBox .videoWrapper video {
  width: 100%;
  height: 100%;
}
.vapingReels_Content .title {
  color: var(--white-color);
  font-size: 12px;
  font-weight: 500;
}
/* vapingReels sec css end here */

/* spotlight sec css start here */
.spotlight_Sec {
  position: relative;
  padding: 40px 0px;
  background-color: var(--white-color);
  color: var(--white-color);
  display: none;
}

.spotlight-heading {
  margin-bottom: 32px;
  text-align: center;
}

.spotlight-heading h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white-color);
  letter-spacing: 0.02em;
}

.spotlight-heading h2 span {
  font-weight: 700;
  color: var(--secondary-color);
}

.spotlight_Slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
}

.spotlight_Slider-pagination {
  position: absolute;
  text-align: center;
}
.spotlight_Slider-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #000000;
}
.spotlight_Slider-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color) !important;
}

.spotlight_VideoCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.spotlight_VideoBox {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9/16;
  cursor: pointer;
}

.spotlight_Thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.spotlight_VideoCard:hover .spotlight_Thumb {
  transform: scale(1.04);
}

.spotlight_VideoOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.spotlight_PlayBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  backdrop-filter: blur(4px);
  justify-content: center;
  outline: none;
}

.spotlight_PlayBtn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.08);
}

.spotlight_PlayBtn span {
  display: none;
}

.spotlight_OverlayText {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  padding: 0 16px;
  line-height: 1.4;
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0;
}

.spotlight_VideoWrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
}

.spotlight_VideoWrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight_VideoCard.playing .spotlight_VideoOverlay {
  opacity: 0;
  pointer-events: none;
}

.spotlight_VideoCard.playing .spotlight_VideoWrapper {
  display: block;
}

/* Image cards */
.spotlight_ImgCard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotlight_ImgBox {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #111;
}

.spotlight_ImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.spotlight_ImgBox:hover img {
  transform: scale(1.04);
}

.spotlight_CardTitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
  padding: 0px;
}

/* Blog Hero */
.blog-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px 0px;
  overflow: hidden;
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 17, 29, 0.97) 30%, rgb(12 17 29 / 84%) 100%);
}

.blog-hero .container {
  position: relative;
  z-index: 2;
}

.blog-hero__content {
  max-width: 820px;
}

.blog-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.blog-tag:hover {
  opacity: 0.85;
  color: #fff;
}

.blog-hero__date,
.blog-hero__read {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.blog-hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
}

.blog-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-avatar img{
    width: 100%;
    height: 100%;
    border-radius: 50px;
    object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.author-role {
    font-size: 12px;
    color: var(--secondary-color);
}
.blog-body {
  padding: 60px 0 80px;
  background: #fff;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.blog-share span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s;
}
.share-btn:hover {
  transform: scale(1.12);
  opacity: 0.88;
  color: #fff;
}
.share-fb {
  background: #1877f2;
}
.share-tw {
  background: #1da1f2;
}
.share-li {
  background: #0077b5;
}
.share-cp {
  background: #555;
}

.blog-article {
  font-size: 1rem;
  line-height: 1.85;
  color: #333;
}

.blog-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.7;
  border-left: 4px solid var(--secondary-color);
  padding-left: 18px;
  margin-bottom: 28px;
}

.blog-article h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.blog-callout {
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
  position: relative;
}

.blog-callout i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.blog-callout blockquote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 12px;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
}

.blog-callout cite {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

.blog-image-block {
  margin: 32px 0;
}

.blog-image-block img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.blog-image-caption {
  font-size: 0.8rem;
  color: #999;
  margin-top: 8px;
  text-align: center;
}
.blog-image-caption span {
  color: #bbb;
}

.blog-infobox {
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--secondary-color);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 32px 0;
}

.blog-infobox h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.blog-infobox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-infobox ul li {
  font-size: 0.88rem;
  color: #444;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.blog-infobox ul li:last-child {
  border-bottom: none;
}

.blog-infobox ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

/* Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 40px 0 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.blog-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
}

.blog-tag-link {
  display: inline-block;
  background: #f3f4f6;
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.blog-tag-link:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

/* Author box */
.blog-author-box {
  display: flex;
  gap: 20px;
  background: #f8f9fb;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  margin-top: 40px;
}

.author-avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-box-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.author-bio {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.author-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
  margin-right: 6px;
  transition: background 0.2s;
}
.author-socials a:hover {
  background: var(--secondary-color);
}

/* sidebar css start here */
.blog-sidebar {
  position: sticky;
  top: 190px;
}
.sidebar-widget {
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget.newsletter-widget{
	display: none;
}
.widget-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.952px;
    color: var(--primary-color);
    margin-bottom: 0px;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list li {
  border-bottom: 1px solid #eee;
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.toc-list a:hover {
  color: var(--secondary-color);
}
.toc-list a::before {
  content: "→ ";
  color: var(--secondary-color);
  font-weight: 700;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.related-post-item {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #dcdcdc;
  transition: opacity 0.2s;
}
.related-post-item:last-child{
	padding-bottom: 0px;
	margin-bottom: 0px;
	border-bottom: none;
}
.related-post-item:hover {
  opacity: 0.8;
}

.related-post-item img {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.related-post-item p {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0px;
}

.related-post-item span {
  font-size: 0.75rem;
  color: #aaa;
}

.newsletter-widget p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  border-color: var(--secondary-color);
}

.newsletter-form button {
  padding: 10px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.newsletter-form button:hover {
  opacity: 0.88;
}

/* related post sec css start here */
.related-section {
  padding: 60px 0 80px;
  background: var(--primary-color);
}

.related-section__title {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 32px;
}

/* .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
} */

.youMightLike_Slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
}

.youMightLike-pagination {
  position: absolute;
  text-align: center;
}
.youMightLike-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: var(--white-color);
}
.youMightLike-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color) !important;
}

.related-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #141924;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.related-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.related-card:hover .related-card__img img {
  transform: scale(1.05);
}

.related-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.related-card__body {
  padding: 18px 20px 22px;
}

.related-card__date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.related-card__body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}

.related-card__author {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ================================================
   RESPONSIVE
================================================ */

/* ================================================
   SINGLE CATEGORY PAGE - single-category.html
   SINGLE CATEGORY PAGE STYLES
================================================ */

/* ================================================
   CATEGORY HERO
================================================ */
.cat-hero {
  position: relative;
  background-color: var(--primary-color);
  padding: 80px 0 70px;
  overflow: hidden;
}

.cat-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgb(198 148 61 / 23%) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgb(198 148 61 / 13%) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative grid lines */
.cat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cat-hero .container {
  position: relative;
  z-index: 2;
}

.cat-hero__inner {
  max-width: 800px;
}

.cat-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.cat-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.cat-hero__breadcrumb a:hover {
  color: var(--secondary-color);
}

.cat-hero__breadcrumb i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
}

.cat-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.cat-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.cat-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cat-hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 36px;
}

.cat-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cat-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat-stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.cat-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cat-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ================================================
   FILTER BAR
================================================ */
.cat-filterbar {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  padding: 16px 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: none;
}

.cat-filterbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cat-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-filter {
  background: #f3f4f6;
  color: #555;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
}

.cat-filter:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.cat-filter.active {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.cat-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cat-sort label {
  font-size: 0.82rem;
  color: #888;
  font-weight: 500;
}

.cat-sort select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  outline: none;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s;
}
.cat-sort select:focus {
  border-color: var(--secondary-color);
}

/* ================================================
   CATEGORY BODY LAYOUT
================================================ */
.cat-body {
  padding: 50px 0 80px;
  background: #f8f9fb;
}

.cat-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  align-items: start;
  overflow: hidden;
}

/* Featured Post section css start here */
.cat-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.cat-featured-post:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.cat-featured-post__img {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.cat-featured-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cat-featured-post:hover .cat-featured-post__img img {
  transform: scale(1.05);
}

.cat-post__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.cat-featured-post__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-post__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.cat-post__date,
.cat-post__read {
  font-size: 0.78rem;
  color: #aaa;
}

.cat-featured-post__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 12px;
}

.cat-featured-post__body h2 a {
  text-decoration: none;
  transition: color 0.2s;
}
.cat-featured-post__body h2 a:hover {
  color: var(--secondary-color);
}

.cat-featured-post__body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
}

.cat-post__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.cat-post__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-post__author span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

.cat-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-read-more:hover {
  color: var(--primary-color);
}

/* ================================================
   POST GRID
================================================ */
.cat-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cat-post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cat-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.cat-post-card__img {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.cat-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cat-post-card:hover .cat-post-card__img img {
  transform: scale(1.06);
}

.cat-post-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-post-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 8px;
  flex-grow: 1;
}

.cat-post-card__body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.cat-post-card__body h3 a:hover {
  color: var(--secondary-color);
}

.cat-post-card__body p {
  font-size: 0.83rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ================================================
   PAGINATION
================================================ */
.cat-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
  padding: 0 14px;
}

.page-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.page-btn.active {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.page-next {
  padding: 0 18px;
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.page-next:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-dots {
  color: #aaa;
  font-size: 1rem;
  padding: 0 4px;
}

/* sidebar css start here */
.cat-sidebar {
  position: sticky;
  top: 185px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search_ArticlesBox{
	display: none;
}

.cat-widget {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}
.cat-widget__head{
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cat-widget__title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.952px;
    color: var(--primary-color);
    margin-bottom: 0px;
}
.cat-widget__toggle{
    position: relative;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 50px;
}
.cat-widget__toggle i{
    color: var(--white-color);
    font-size: 10px;
    font-weight: 600;
    transform: rotate(0deg);
    transition: .4s all;
}
.cat-widget__toggle.icon_toggled i{
	transform: rotate(180deg);
}

/* Search widget */
.cat-search {
  display: flex;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 9px;
  overflow: hidden;
}

.cat-search input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 0.83rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  color: var(--primary-color);
}

.cat-search button {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}
.cat-search button:hover {
  opacity: 0.85;
}

/* Subcategory list */
.cat-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-sublist li {
  border-bottom: 1px solid #f0f0f0;
}
.cat-sublist li:last-child {
  border-bottom: none;
}

.cat-sublist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.cat-sublist a:hover {
  color: var(--secondary-color);
}

.cat-sublist span {
  background: #f3f4f6;
  color: #888;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 50px;
}

/* Authors */
.cat-authors {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cat-author-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.author-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-author-item .cat-author-item-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}

.cat-author-item .cat-author-item-content p {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.cat-author-item span {
  font-size: 0.75rem;
  color: #aaa;
}

/* Most read */
.cat-mostread {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: most-read;
}

.cat-mostread li {
  counter-increment: most-read;
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0 10px 28px;
  position: relative;
}
.cat-mostread li:last-child {
  border-bottom: none;
}

.cat-mostread li::before {
  content: counter(most-read);
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cat-mostread a {
  display: block;
  font-size: 0.82rem;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.cat-mostread a:hover {
  color: var(--secondary-color);
}

.cat-mostread span {
  font-size: 0.72rem;
  color: #bbb;
}

/* Newsletter reuse from blog */
.newsletter-widget p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.85rem;
  outline: none;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.2s;
}
.newsletter-form input:focus {
  border-color: var(--secondary-color);
}

.newsletter-form button {
  padding: 10px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: "Poppins", sans-serif;
}
.newsletter-form button:hover {
  opacity: 0.88;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1100px) {
  .cat-layout {
    grid-template-columns: 1fr 280px;
  }
}

@media (max-width: 991px) {
  .cat-layout {
    grid-template-columns: 1fr;
	gap: 22px;
  }
  .cat-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cat-featured-post {
    grid-template-columns: 1fr;
  }
  .cat-featured-post__img {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .cat-posts-grid {
    grid-template-columns: 1fr;
  }
  .cat-sidebar {
    grid-template-columns: 1fr;
  }
  .cat-filterbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Override and enhance mega menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  padding: 0;
  display: none;
  border-top: 3px solid var(--secondary-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  animation: megaFadeIn 0.25s ease forwards;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-dropdown:hover .mega-menu {
  display: block;
}

.mega-menu-content {
  min-height: 380px;
  display: flex;
}

/* Sidebar of mega menu */
.mega-menu-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--primary-color);
  padding: 24px 0;
  border-right: none;
}

.mega-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-tabs li {
  padding: 13px 24px;
  cursor: pointer;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: all 0.22s ease;
  border-left: 3px solid transparent;
  letter-spacing: 0.01em;
}

.mega-tabs li:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-left-color: var(--secondary-color);
}

.mega-tabs li.active {
  background: rgba(194, 0, 23, 0.15);
  color: #fff;
  border-left-color: var(--secondary-color);
}

.browse-all-btn {
  display: block;
  margin: 20px 16px 8px;
  padding: 10px 16px;
  background: var(--secondary-color);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.browse-all-btn:hover {
  opacity: 0.85;
}

/* Main content area of mega menu */
.mega-menu-main {
  flex: 1;
  padding: 28px 36px;
  background: #fff;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-links li {
  margin-bottom: 10px;
}

.menu-links li a {
  color: #333;
  font-size: 12px;
  font-weight: 500;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-links li a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary-color);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.menu-links li a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

.menu-links li a:hover::before {
  opacity: 1;
}

.browse-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.browse-all-link:hover {
  border-color: var(--secondary-color);
}

/* Featured card in mega menu */
.featured-card {
  background: var(--primary-color);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.featured-card .label {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 2;
}

.featured-card img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: #1a1e2a;
  margin: 0;
  border-radius: 0;
}

.featured-card h6 {
  font-size: 0.88rem;
  margin: 12px 14px 6px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.view-product-btn {
  display: inline-block;
  margin: 0 14px 14px;
  padding: 7px 16px;
  background: var(--secondary-color);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.view-product-btn:hover {
  opacity: 0.85;
}

/* Featured news card */
.featured-news-card {
  background: var(--primary-color);
  color: #fff;
  padding: 24px 22px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-news-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(194, 0, 23, 0.15);
  border-radius: 50%;
}

.featured-news-card .label {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

.featured-news-card h6 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.45;
  color: #fff;
}

.browse-all-btn-sm {
  align-self: flex-start;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 15px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: background 0.2s;
  text-decoration: none;
}
.browse-all-btn-sm:hover {
  background: rgba(255, 255, 255, 0.1);
}
/* mega menus enhanced end */

/* Hamburger trigger button css start here */
.vp-mob-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.vp-mob-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}
.vp-mob-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.35s ease,
    opacity 0.2s ease,
    width 0.25s ease;
  transform-origin: center;
}
.vp-mob-trigger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vp-mob-trigger--open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.vp-mob-trigger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay backdrop */
.vp-mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
}
.vp-mob-overlay--show {
  opacity: 1;
  pointer-events: all;
}

/* Side drawer nav */
.vp-mob-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  max-width: 88vw;
  height: 100vh;
  background: var(--primary-color);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar styling */
.vp-mob-nav::-webkit-scrollbar {
  width: 4px;
}
.vp-mob-nav::-webkit-scrollbar-track {
  background: transparent;
}
.vp-mob-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

/* Nav header */
.vp-mob-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.vp-mob-nav__head a img{
    max-width: 120px;
    height: 85px;
    object-fit: cover;
}
.vp-mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.vp-mob-close:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Mobile search */
.vp-mob-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  flex-shrink: 0;
}
.vp-mob-search i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
.vp-mob-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
}
.vp-mob-search input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
/* Menu list */
.vp-mob-menu-wrapper{
	flex: 1;
}
.vp-mob-menu {
  list-style: none;
  padding: 0px;
  margin: 0;
}
.vp-mob-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
/* Main nav link / toggler */
.vp-mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.vp-mob-link > span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vp-mob-link:hover,
.vp-mob-item--open > .vp-mob-link {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.vp-mob-icon {
  width: 20px;
  text-align: center;
  color: var(--secondary-color);
  font-size: 0.85rem;
}
/* Chevron arrow */
.vp-mob-arrow {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease;
}
.vp-mob-item--open > .vp-mob-toggler .vp-mob-arrow {
  transform: rotate(180deg);
  color: var(--secondary-color);
}
/* Sub menu */
.vp-mob-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.vp-mob-sub li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 52px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
}
.vp-mob-sub li a i {
  font-size: 0.45rem;
  color: var(--secondary-color);
}
.vp-mob-sub li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.vp-mob-browse {
  display: flex !important;
  justify-content: space-between;
  color: var(--secondary-color) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 20px 12px 52px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.primary_NavMenus ul li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.primary_NavMenus ul li a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    transition: background 0.2s,
    color 0.2s;
}
.primary_NavMenus ul li a:hover{
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.primary_NavMenus ul li a::before{
    content: "\f078";
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 500;
    font-family: 'FontAwesome';
    transform: rotate(
270deg);
}

/* Bottom CTA area start here */
.vp-mob-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.vp-mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 0.2s;
}
.vp-mob-cta:hover {
  opacity: 0.88;
  color: #fff;
}
.vp-mob-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vp-mob-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.2s,
    color 0.2s, .4s all;
}
.vp-mob-socials a:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

/* Prevent body scroll when menu open */
.vp-mob-noscroll {
  overflow: hidden;
}
/* news ticket sec start here */
.vp-news-ticker {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    overflow: hidden;
    height: 38px;
}
.vp-ticker-label {
  flex-shrink: 0;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.vp-ticker-label i {
  animation: tickerPulse 1.2s infinite;
}
@keyframes tickerPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.vp-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
}
.vp-ticker-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  padding: 0 24px;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.vp-ticker-track:hover .vp-ticker-inner {
  animation-play-state: paused;
}
.vp-ticker-inner p {
  margin-bottom: 0px;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: pointer;
}
.vp-ticker-inner p:hover {
  color: var(--secondary-color);
}
.vp-ticker-dot {
  color: var(--secondary-color);
  font-weight: 700;
}

/* single blog page css start here */
.blog-layout .single_BLogContentWrap{
	overflow: hidden;
}
.single_BLogContentWrap h1{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 26px;
    font-weight: 600;
    line-height: 38px;
}
.single_BLogContent h2{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 24px;
/*     font-weight: 600; */
    line-height: 26px;
}
.single_BLogContent h3{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 20px;
/*     font-weight: 600; */
    line-height: 26px;
}
.single_BLogContent h4{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 18px;
/*     font-weight: 600; */
    line-height: 24px;
}
.single_BLogContent h2 b,
.single_BLogContent h3 b,
.single_BLogContent h4 b{
	font-weight: unset !important;
}
.single_BLogContent p{
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.single_BLogContent p a,
.single_BLogContent span a{
	color: var(--secondary-color);
}
.single_BLogContent p a:hover,
.single_BLogContent span a:hover{
	text-decoration: underline;
}
.single_BLogContent ul{
	list-style: disc !important;
}
.single_BLogContent p img,
.single_BLogContent h2 img{
    position: relative;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 16px;
}
.single_BLogContent table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 1rem 0;
  border: 1px solid var(--primary-color);
  overflow: hidden;
  border-radius: 8px;
}
.single_BLogContent table tbody tr:first-child {
  background: var(--primary-color);
}
.single_BLogContent table tbody tr:first-child td {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  padding: 13px 16px;
  border: 1px solid var(--primary-color);
}
.single_BLogContent table tbody tr {
  border-bottom: 1px solid var(--primary-color);
}
.single_BLogContent table tbody tr:last-child {
  border-bottom: none;
}
.single_BLogContent table tbody td {
  padding: 12px 16px;
  color: #666;
  font-size: 13px;
  vertical-align: middle;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.single_BLogContent table tbody td:last-child {
  border-right: none;
}
.single_BLogContent table tbody tr:not(:first-child) td:first-child {
  font-weight: 600;
  color: var(--secondary-color);
}
/* single blog page css end here */

/* contentBase_head css start here */
.contentBase_head{
    position: relative;
    background-color: var(--primary-color);
    padding: 100px 0px;
    overflow: hidden;
}
.contentBase_head::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.contentBase_Overlay{
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgb(198 148 61 / 23%) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgb(198 148 61 / 13%) 0%, transparent 50%);
    pointer-events: none;
}
.contentBase_head h1{
    margin-bottom: 18px;
    color: var(--white-color);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
}
.contentBase_head .breadcrumb{
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 16px;
	margin-bottom: 18px;
}
.contentBase_head .breadcrumb a{
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.contentBase_head .breadcrumb i{
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}
.contentBase_head .breadcrumb p{
    margin-bottom: 0px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.contentBase_head .description{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 0px;
}
/* contentBase_head css end here */

/* contact page css start here */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 22px;
}
.contact-info-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}
.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}
.info-item p {
    margin: 0;
    color: var(--text-color);
}
.contact-form-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 20px;
}
.form-group p br{
	display: none;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-primary);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(194, 0, 23, 0.1);
}
textarea.form-control {
    height: 150px;
    resize: none;
}
.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-size: 1rem;
}
.submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
/* contact page css end here */

/* contentBase_page css start here */
.contentBase_page{
    position: relative;
    width: 100%;
    padding: 40px 0px;
}
.contentBase_page h2{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
}
.contentBase_page h3{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}
.contentBase_page h4{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
}
.contentBase_page p{
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.contentBase_page p a{
    color: var(--secondary-color);
}
.contentBase_page p a:hover{
	text-decoration: underline;
}
.contentBase_page ul{
	list-style: disc !important; 
}
/* contentBase_page css end here */

/* brandSingle_Sec css start here */
.brandSingle_Sec{
    position: relative;
    width: 100%;
    padding: 40px 0px;
}
.brandSingle_Content{
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 22px;
    align-items: start;
	overflow: hidden;
}
.brandSingle_Content .ContentBox h2{
    position: relative;
    margin-top: 0px !important;
    margin-bottom: 22px;
    padding-bottom: 5px;
    color: #091b31;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
}
.brandSingle_Content .ContentBox h2::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}
.brandSingle_Content .ContentBox h3{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
}
.brandSingle_Content .ContentBox h4{
    margin-bottom: 15px;
    color: #091b31;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
}
.brandSingle_Content .ContentBox p{
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.brandSingle_Content .ContentBox p strong{
	color: #091b31;
}
.brandSingle_Content .ContentBox ul{
    list-style: disc !important;
}
.brandSingle_Content .ContentBox ul li strong,
.brandSingle_Content .ContentBox ol li strong{
	color: #091b31;
}
.brandSingle_Content .ContentBox ol li{
	position: relative;
	padding-bottom: 8px;
}
.brandSingle_Content .ContentBox ol li:last-child{
	padding-bottom: 0px;
}
.brandSingle_Content .ContentBox ol li::marker{
	color: #091b31;
}
/* brandSingle_Sec css end here */

/* language switcher css start here */
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle{
    border-radius: 50px;
}
/* language switcher css end here */

/* brand page css start here */
.brands-page {
  position: relative;
  padding-top: 0;
  padding-bottom: 40px;
}
.tab-bar {
    position: sticky;
    top: 112px;
    z-index: 800;
    background: var(--white-color);
    border-bottom: 1px solid #dbdbdb;
}
.tab-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: stretch; gap: 0;
  position: relative; overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar-inner::-webkit-scrollbar {
	display: none;
}
.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #091b31;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color var(--transition);
    border-bottom: 2px solid transparent;
    margin-bottom: 0px;
}
.tab-btn:hover {
	color: var(--secondary-color);
}
.tab-btn.active {
  color: var(--secondary-color);
  font-weight: 600;
  border-bottom-color: var(--secondary-color);
}
.tab-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0,0,0,0.04);
  flex-shrink: 0;
}
.tab-icon img {
  width: 100%; height: 100%; object-fit: cover;
}
.brand-section {
  padding: 32px 0 0;
  overflow: hidden;
}
.brand-section.hidden {
  display: none;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}
.section-title {
  color: #091b31;
  font-size: 32px;
  font-weight: 600;
	margin-bottom: 0px;
}
.section-title span {
	color: var(--secondary-color);
}
.section-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
}
.section-count {
  color: var(--white-color);
  background: var(--secondary-color);
  border-radius: 50px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.brands-grid--sm {
  grid-template-columns: repeat(4, 1fr);
}
.brand-card {
    position: relative;
    background: var(--white-color);
    border: 1px solid #dddddd;
    border-radius: 16px;
    overflow: hidden;
    transition: .4s all;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.brand-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}
.bc-glow {
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,77,28,0.06), transparent);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none; z-index: 0;
}
.brand-card:hover .bc-glow {
	opacity: 1;
}
.bc-badge {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--c-accent); color: #fff;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.bc-img-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff 15%, #d3d3d3 100%);
}
.bc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-card:hover .bc-img {
  transform: scale(1.1);
}
.bc-body {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--c-border);
  background: #fff;
  flex: 1;
  transition: all 0.3s ease;
}
.brand-card:hover .bc-body {
    background: var(--secondary-color);
}
.bc-name {
    color: #091b31;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    flex: 1;
    margin-bottom: 0px;
}
.brand-card:hover .bc-name{
	color: var(--white-color);
}
.bc-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--c-muted);
  display: none;
}
.bc-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9e9e9;
    border: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), transform 0.3s;
}
.bc-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #091b31;
    transition: stroke 0.2s, transform 0.3s;
}
.brand-card:hover .bc-arrow {
    background: var(--white-color);
    border-color: var(--white-color);
    transform: rotate(-45deg);
}
.brand-card:hover .bc-arrow svg {
	stroke: var(--secondary-color);
}
.brand-card.featured .bc-img-wrap {
	aspect-ratio: 5/4;
}
.brand-card.featured .bc-name {
	color: var(--c-accent);
}
/* brand page css end here */

/* trustbar sec start here */
.vp-trust-bar {
  background: var(--primary-color);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}
.vp-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.vp-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
}
.vp-trust-item i {
  font-size: 26px;
  color: var(--secondary-color);
}
.vp-trust-item .content{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}
.vp-trust-item .content h2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0px;
}
.vp-trust-item .content p {
	margin-bottom: 0px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.vp-trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}
/* trustbar sec end here */

/* footer css start here */
.site-footer {
  background: var(--primary-color);
}
.footer-newsletter-strip {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}
.fnstrip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.fnstrip-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.fnstrip-left i {
  font-size: 2rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}
.fnstrip-left h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.fnstrip-left p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.fnstrip-right {
  flex-shrink: 0;
  min-width: 340px;
}
.fnstrip-form {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}
.fnstrip-form .wpcf7 .wpcf7-form p{
	display: flex;
	margin-bottom: 0px;
}
.fnstrip-form .wpcf7 .wpcf7-form p .wpcf7-form-control-wrap input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  padding: 13px 18px;
  color: #fff;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  outline: none;
}
.fnstrip-form .wpcf7 .wpcf7-form p .wpcf7-form-control-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.fnstrip-form .wpcf7 .wpcf7-form input.wpcf7-submit {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.fnstrip-form .wpcf7 .wpcf7-form input.wpcf7-submit:hover {
  opacity: 0.88;
}
.fnstrip-form .wpcf7 .wpcf7-form .wpcf7-spinner{
	display: none;
}
.fnstrip-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
.footer-main {
  padding: 54px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -1px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo span {
  font-weight: 300;
}
.footer-brand-col a img{
    max-width: 200px;
    height: auto;
    margin-top: -20px;
}
.footer-tagline p{
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
	display: none;
}
.fsoc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  background-color: var(--secondary-color);
  color: var(--white-color);
  transition:
    transform 0.2s ease,
    opacity 0.2s;
}
.fsoc-btn:hover {
  transform: translateY(-3px);
  opacity: 0.85;
  color: #fff;
}
.footer-trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ftrust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 5px 12px;
}
.ftrust-item i {
  color: var(--secondary-color);
  font-size: 0.75rem;
}
.ftrust-item span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 2px;
}
.footer-linklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-linklist li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-linklist li:last-child {
  border-bottom: none;
}
.footer-linklist a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition:
  color 0.2s,
  padding-left 0.2s;
}
.footer-linklist a:before{
    content: '>';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.2s;
}

.footer-linklist a:hover {
  color: #fff;
  padding-left: 15px;
}
.footer-linklist a:hover:before {
  opacity: 1;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.2);
}
.fbb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.fbb-inner p{
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
.fbb-inner p a{
	color: var(--secondary-color);
}
.fbb-inner p a:hover{
	text-decoration: underline;
}
.fbb-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fbb-right a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.fbb-right a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.back-to-top {
  color: #fff !important;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s !important;
}
.back-to-top:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}
footer .nav-link {
  display: none;
}
.footer-bottom {
  display: none !important;
}
/* footer css end */

/* mobileFooter css start here */
.mobileFooter{
    display: none;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 999;
}
.mobileFooter ul{
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 8px 0;
	list-style: none;
}
.mobileFooter ul li{
/*     flex: 1; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
}
.mobileFooter ul li a{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mobileFooter ul li a i{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 18px;
    color: var(--white-color);
    border: 1px solid var(--secondary-color);
    outline: 6px solid #fff;
}
.mobileFooter ul li a p{
    line-height: 1;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
	margin-bottom: 0px;
}
/* mobileFooter css end here */

/* WPML default text css */
p.wpml-ls-statics-post_translations.wpml-ls{
	display: none;
}
/* WPML default text css */

/* site responsive start here */

/* 1100px size */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

/* 991px size */
@media (max-width: 991px) {
  .site-footer {
    padding-bottom: 70px;
  }
  .mobileFooter {
    display: flex;
  }
  .mega-menu {
    position: static;
    display: none;
    padding: 0;
    box-shadow: none;
    border: none;
  }
  .mega-menu-content {
    flex-direction: column;
    min-height: auto;
  }
  .mega-menu-sidebar {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }
  .mega-menu-main {
    padding-left: 0;
    padding-top: 20px;
  }
  .mega-dropdown.active .mega-menu {
    display: block;
  }
  .main-header .logo-text {
    font-size: 1.5rem;
  }
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .blog-layout .single_BLogContentWrap {
    order: 2;
    width: 100%;
  }
  .blog-layout .blog-sidebar {
    position: static;
    order: 1;
    max-width: 100%;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vp-mob-trigger {
    display: flex;
  }
  .spotlight_VideoBox {
    aspect-ratio: 16/9;
  }
  .contentBase_head {
    padding: 40px 0px;
  }
  .contentBase_head h1 {
    font-size: 32px;
  }
  .section-title {
    font-size: 24px;
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .vp-trust-item {
    padding: 8px 16px;
  }
  .vp-trust-bar {
    padding: 32px 0 14px;
  }
  .vp-trust-inner {
    gap: 0px;
  }
  .vp-trust-item {
    padding: 0 0 18px;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .vp-trust-divider {
    display: none;
  }
  .brandSingle_Content {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .brandSingle_Content .ContentBox {
    order: 2;
    width: 100%;
  }
  .brandSingle_Content .cat-sidebar {
    order: 1;
    max-width: 100%;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .cat-sublist {
    display: none;
  }
  .cat-hero {
    padding: 40px 0px;
  }
  .cat-layout .cat-main {
    order: 2;
    width: 100%;
  }
  .cat-layout .cat-sidebar {
    order: 1;
    max-width: 100%;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .related-section {
    padding: 40px 0px;
  }
  .toc-list {
    display: none;
  }
  .single_BLogContentWrap h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .blog-hero {
    padding: 80px 0px;
  }
  .blog-hero__title {
    font-size: 28px;
  }
  .related-posts {
    display: none;
  }
  .single_BLogContent h2 {
    font-size: 20px;
  }
  .single_BLogContent h3 {
    font-size: 18px;
  }
  .blog-body {
    padding: 40px 0px;
  }
  .blog-layout .blog-sidebar:last-child {
    margin-bottom: 0px;
  }
  .brandSingle_Content .ContentBox h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }
  .cat-body {
    padding: 40px 0px;
  }
  .fnstrip-right {
    min-width: 100%;
  }
  .partnersGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .articleContent_Box {
    margin-bottom: 22px;
  }
  .articleListing ul li {
    align-items: flex-start;
  }
  .articleContent_Box .articleInfo a {
    font-size: 20px;
    line-height: 28px;
  }
  .marquee-slider p {
    font-size: 80px;
    line-height: 80px;
  }
/*   .footer-main {
    padding: 12px 0 40px;
  } */
  .bannerBLog_Inner a .infoBox h4,
  .bannerBLog_Inner .centerBox a .infoBox h4 {
    font-size: 16px;
    line-height: 22px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .bannerBLog_Sec {
    padding: 6px;
  }
  .cat-widget__toggle{
	display: flex;
  }
}

/* 767px size */
@media (max-width: 767px) {
  .sectionInfo {
    gap: 8px;
    margin: 0 auto 22px;
  }
  .sectionInfo p {
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .sectionInfo {
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .fnstrip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .fnstrip-right {
    min-width: 100%;
    width: 100%;
  }
  .fbb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .tab-btn {
    padding: 14px 16px;
    min-width: max-content;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bannerBLog_Inner {
    flex-direction: column;
    gap: 6px;
  }
  .bannerBLog_Inner .leftBox,
  .bannerBLog_Inner .rightBox {
    width: 100%;
    height: 220px;
  }
  .bannerBLog_Inner .centerBox {
    width: 100%;
    height: 220px;
    flex-direction: row;
    margin: 0px;
    gap: 6px;
  }
  .bannerBLog_Inner .centerBox a {
    height: 220px;
  }
}

/* 575px size */
@media (max-width: 575px) {
  .blog-hero {
    min-height: 400px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .blog-author-box {
    flex-direction: column;
  }
  .partnersGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articleListing ul li .info a {
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .articleContent_Box .imgWrap img {
    height: 220px;
  }
  .marquee-slider p {
    line-height: 60px;
  }
  .marquee-slider {
    gap: 22px;
  }
  .fnstrip-form button {
    padding: 13px 15px;
    white-space: unset;
	  font-size: 12px;
  }
  .bannerBLog_Inner a .infoBox h4,
  .bannerBLog_Inner .centerBox a .infoBox h4 {
    font-size: 14px;
  }
  .bannerBLog_Inner .leftBox,
  .bannerBLog_Inner .rightBox {
    height: 180px;
  }
  .bannerBLog_Inner a .infoBox .blockInfo {
    display: block;
    text-align: center;
  }
  .bannerBLog_Inner a .infoBox .blockInfo .authorWrap {
    padding: 0px;
  }
  .bannerBLog_Inner a .infoBox .blockInfo .authorWrap::before {
    display: none;
  }
  .blog-hero__title{
	font-size: 22px;
  }
}

/* 420px size */
@media (max-width: 420px) {
  .tab-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  .section-title {
    font-size: 20px;
  }
  .section-count {
    font-size: 11px;
    padding: 3px 10px;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .bc-body {
    padding: 12px 8px;
  }
  .bc-arrow {
    width: 25px;
    height: 25px;
  }
  .bc-name {
    font-size: 12px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .popularBrand_Img a {
    gap: 8px;
  }
  .popularBrand_Img a img {
    height: 150px;
  }
}
/* site responsive end here */