/* =====================================================================
   SaveTaxs – main.css
   ===================================================================== */

:root{
	--st-violet:       #6B3FA0;
	--st-violet-dark:  #4A1A73;
	--st-violet-deep:  #2A0D4A;
	--st-violet-light: #F1EBFB;
	--st-violet-faint: #F8F5FD;
	--st-accent:       #8B5CF6;
	--st-yellow:       #FFD23F;
	--st-text:         #1F1F2E;
	--st-muted:        #5E5E73;
	--st-border:       #E7E5EE;
	--st-bg:           #FFFFFF;
	--st-bg-soft:      #F7F5FB;
	--st-radius:       14px;
	--st-radius-sm:    10px;
	--st-shadow:       0 2px 10px rgba(40, 20, 80, 0.06);
	--st-shadow-md:    0 8px 30px rgba(40, 20, 80, 0.10);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
	margin:0;
	font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	color:var(--st-text);
	background:var(--st-bg);
	line-height:1.55;
	-webkit-font-smoothing:antialiased;
}
a{color:var(--st-violet);text-decoration:none;}
a:hover{color:var(--st-violet-dark);}
img{max-width:100%;height:auto;display:block;}
h1,h2,h3,h4,h5,h6{margin:0 0 .5em;line-height:1.25;color:var(--st-text);font-weight:700;}
p{margin:22px 0px;}
.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute !important;height:1px;width:1px;overflow:hidden;}
.skip-link{position:absolute;left:-9999px;top:0;background:#000;color:#fff;padding:10px 16px;z-index:10000;}
.skip-link:focus{left:16px;top:16px;}

.st-container{max-width:1340px;margin:0 auto;padding:0 20px;width:100%;}

.st-btn{display:inline-flex;align-items:center;gap:8px;padding:10px 22px;border-radius:999px;font-weight:600;font-size:14px;line-height:1;transition:all .2s ease;cursor:pointer;border:none;}
.st-btn--violet{background:var(--st-violet);color:#fff;}
.st-btn--violet:hover{background:var(--st-violet-dark);color:#fff;}
.st-btn--white{background:#fff;color:var(--st-violet);}
.st-btn--white:hover{background:#f4efff;color:var(--st-violet-dark);}

/* ==================== Header ==================== */
.st-header{background:#fff;border-bottom:1px solid var(--st-border);position:sticky;top:0;z-index:999;}
.st-header__inner{display:flex;align-items:center;justify-content:space-between;min-height:72px;gap:24px;}
.st-header__brand img{max-height:28px;width:auto;}
.st-logo-text{font-size:24px;font-weight:800;color:#1F1F2E;letter-spacing:-0.5px;}
.st-logo-text span{color:var(--st-violet);}
.st-logo-text--light{color:#fff;}
.st-logo-text--light span{color:var(--st-yellow);}

.st-header__nav{display:flex;align-items:center;gap:24px;}
.st-menu{list-style:none;display:flex;gap:28px;margin:0;padding:0;align-items:center;}
.st-menu > li{position:relative;}
.st-menu > li > a{color:#1F1F2E;font-size:15px;font-weight:500;padding:10px 0;display:inline-block;transition:color .15s ease;}
.st-menu > li > a:hover,.st-menu > li.current-menu-item > a{color:var(--st-violet);}

/* Dropdowns */
.st-menu .sub-menu,.st-menu .children{
	list-style:none;padding:8px 0;margin:0;background:#fff;
	position:absolute;top:100%;left:0;min-width:220px;
	border:1px solid var(--st-border);border-radius:10px;
	box-shadow:var(--st-shadow-md);opacity:0;visibility:hidden;transform:translateY(8px);
	transition:all .18s ease;z-index:20;
}
.st-menu li:hover > .sub-menu,.st-menu li:focus-within > .sub-menu{opacity:1;visibility:visible;transform:translateY(0);}
.st-menu .sub-menu li a{padding:8px 16px;display:block;color:#1F1F2E;font-size:14px;}
.st-menu .sub-menu li a:hover{background:var(--st-violet-faint);color:var(--st-violet);}

/* Apply Now button */
.st-apply-btn{
	display:inline-flex;align-items:center;gap:6px;
	background:var(--st-violet);color:#fff !important;
	padding:10px 22px;border-radius:999px;font-weight:600;font-size:14px;
	line-height:1;transition:background .2s ease,transform .2s ease;
	white-space:nowrap;
}
.st-apply-btn:hover{background:var(--st-violet-dark);transform:translateY(-1px);color:#fff;}

.st-header__toggle{display:none;background:transparent;border:none;padding:8px;cursor:pointer;order:2;}
.st-header__toggle span{display:block;width:24px;height:2px;margin:5px 0;background:#1F1F2E;border-radius:2px;transition:.2s;}
.st-header__toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.st-header__toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.st-header__toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ==================== Hero ==================== */
.st-hero{ padding: 60px 20px;text-align: center;}
.st-hero__title{font-size:34px;font-weight:700;margin:8px 0 8px;}
.st-hero__sub{color:var(--st-muted);font-size:15px;margin:0 auto 22px;max-width:620px;}
.st-search{max-width:520px;margin:0 auto;position:relative;display:flex;align-items:center;background:#fff;border:1px solid var(--st-border);border-radius:999px;padding:6px 12px 6px 40px;box-shadow:var(--st-shadow);}
.st-search__icon{position: absolute;left: 15px;color: var(--st-violet);font-size: 38px;top: -10px;}
.st-search input[type=search]{flex:1;border:none;background:transparent;padding:10px 4px;font-size:14px;outline:none;font-size: 15px;}

.st-bc{padding:6px 0;}
.st-bc ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px;align-items:center;font-size:13px;}
.st-bc a{color:var(--st-violet);}
.st-bc [aria-current="page"]{color:var(--st-muted);}
.st-bc__sep{color:var(--st-muted);margin:0 2px;}
.st-i-home::before{content:"⌂";font-size:14px;}

/* ==================== Sections ==================== */
.st-section{padding:48px 0;}
.st-section__head{margin-bottom:24px;}
.st-section__head--row{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;}
.st-section__head--center{text-align:center;}
.st-section__title{font-size:24px;font-weight:700;margin:0;}
.st-section__sub{color:var(--st-muted);font-size:14px;margin:6px 0 0;}

.st-grid{display:grid;gap:22px;}
.st-grid--3{grid-template-columns:repeat(3,1fr);}
.st-grid--4{grid-template-columns:repeat(4,1fr);}
.st-grid--2{grid-template-columns:repeat(2,1fr);}

/* ==================== Card (small blog card) ==================== */
.st-card{display:block;background:#fff;border:1px solid var(--st-border);border-radius:var(--st-radius);overflow:hidden;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;color:inherit;}
.st-card:hover{transform:translateY(-4px);box-shadow:var(--st-shadow-md);border-color:#D9D3E8;color:inherit;}
.st-card__thumb{position:relative;aspect-ratio:16/9;overflow:hidden;}
.st-card__img{width:100%;height:100%;object-fit:cover;}
.st-card__brand{position:absolute;top:12px;left:50%;transform:translateX(-50%);font-size:13px;font-weight:700;color:#fff;letter-spacing:.3px;z-index:2;}
.st-card__brand span{color:var(--st-yellow);}
.st-card__overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:34px 18px 18px;color:#fff;text-align:center;}
.st-card__big-label{font-size:22px;font-weight:800;color:var(--st-yellow);line-height:1.15;text-shadow:0 2px 8px rgba(0,0,0,.2);}
.st-card__sub-label{font-size:12px;color:#fff;margin-top:6px;opacity:.92;}
.st-card__body{padding:16px 18px 18px;}
.st-card__cat{display:inline-block;background:var(--st-violet-light);color:var(--st-violet);font-size:11px;font-weight:600;padding:4px 10px;border-radius:999px;width: max-content;}
.st-card__title{font-size:15px;font-weight:700;margin:10px 0 8px;color:var(--st-text);line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.st-card__excerpt{color:var(--st-muted);font-size:13px;line-height:1.55;margin:0 0 12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.st-card__meta{display:flex;align-items:center;gap:14px;font-size:12px;color:var(--st-muted);padding-top:10px;border-top:1px solid var(--st-border);position:relative;}
.st-card__meta span{display:inline-flex;align-items:center;gap:4px;}
.st-card__arrow{margin-left:auto;width:30px;height:30px;border-radius:50%;background:var(--st-violet-light);display:inline-flex;align-items:center;justify-content:center;color:var(--st-violet);font-size:14px;font-weight:700;transition:transform .18s ease,background .18s;}
.st-card:hover .st-card__arrow{transform:translateX(3px);background:var(--st-violet);color:#fff;}

.st-i-clock::before{content:"⏱";margin-right:2px;}
.st-i-eye::before{content:"👁";margin-right:2px;font-size:11px;}
.st-i-cal::before{content:"📅";margin-right:2px;font-size:11px;}
.st-i-chat::before{content:"💬";margin-right:4px;font-size:12px;}

/* ==================== Popular Blogs – horizontal featured + 3 below ==================== */
.st-popular__top{
	display:grid;grid-template-columns:1fr 1.5fr;
	background:#fff;border:1px solid var(--st-border);border-radius:var(--st-radius);
	overflow:hidden;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
	color:inherit;margin-bottom:22px;min-height:260px;
}
.st-popular__top:hover{transform:translateY(-3px);box-shadow:var(--st-shadow-md);border-color:#D9D3E8;color:inherit;}
.st-popular__top-thumb{
	position:relative;overflow:hidden;
	/* background:linear-gradient(135deg,var(--st-violet) 0%,var(--st-violet-dark) 55%,var(--st-violet-deep) 100%); */
	display:flex;flex-direction:column;align-items:center;justify-content:center;
	padding:50px 24px 24px;color:#fff;text-align:center;min-height:260px;
}
.st-popular__top-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.st-popular__top-brand{position:absolute;top:20px;left:50%;transform:translateX(-50%);font-size:14px;font-weight:700;color:#fff;z-index:2;}
.st-popular__top-brand span{color:var(--st-yellow);}
.st-popular__top-center{position:relative;z-index:2;}
.st-popular__top-big{font-size:34px;font-weight:800;color:var(--st-yellow);line-height:1.1;text-shadow:0 2px 8px rgba(0,0,0,.25);}
.st-popular__top-sub{font-size:14px;color:#fff;margin-top:8px;opacity:.92;}
.st-popular__top-body{padding:28px 32px;display:flex;flex-direction:column;justify-content:center;}
.st-popular__top-title{font-size:20px;font-weight:700;margin:12px 0 10px;line-height:1.35;color:var(--st-text);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.st-popular__top-excerpt{color:var(--st-muted);font-size:14px;line-height:1.6;margin:0 0 18px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.st-popular__top-meta{display:flex;align-items:center;gap:18px;padding-top:14px;border-top:1px solid var(--st-border);color:var(--st-muted);font-size:13px;}
.st-popular__top-meta span{display:inline-flex;align-items:center;gap:4px;}
.st-popular__top-meta .st-card__arrow{margin-left:auto;}

.st-popular__bottom{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}

/* ==================== Single post hero ==================== */
.st-single-hero{background:linear-gradient(180deg,#F3EEFB 0%,#FFFFFF 100%);padding:40px 0 30px;}
.st-single-hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:center;}
.st-single-hero__title{font-size:30px;font-weight:700;margin:10px 0 16px;line-height:1.25;}
.st-cat-label{color:var(--st-violet);font-weight:700;font-size:13px;}
.st-single-hero__meta{list-style:none;display:flex;gap:18px;margin:0;padding:0;flex-wrap:wrap;color:var(--st-muted);font-size:13px;}
.st-single-hero__meta li{display:inline-flex;align-items:center;gap:4px;}
.st-single-hero__thumb{position:relative;border-radius:var(--st-radius);overflow:hidden;aspect-ratio:16/10;box-shadow:var(--st-shadow-md);    background-color:#fff;
    padding: 5px;
    box-shadow: 0 0 20px #4b008240;}
/* .st-single-hero__img{width:100%;height:100%;object-fit:cover;opacity:.85;mix-blend-mode:luminosity;} */
.st-single-hero__img{width:100%;height:100%;border-radius: 14px;}
.st-single-hero__overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;padding:24px 28px;color:#fff;text-align:right;}
.st-single-hero__big-label{font-size:34px;font-weight:800;color:var(--st-yellow);line-height:1.1;text-shadow:0 2px 8px rgba(0,0,0,.25);}
.st-single-hero__sub-label{font-size:14px;color:#fff;margin-top:6px;opacity:.92;}

.st-single__layout{display:grid;grid-template-columns:1fr 300px;gap:40px;padding:32px 0 48px;}
.st-single__content{min-width:0;}
.st-single__body{font-size:15px;line-height:1.7;color:#2a2a3a;}
.st-single__body h2,.st-single__body h3{margin:.6em 0 .6em;color:var(--st-violet-dark);}
.st-single__body h2{font-size:20px;font-weight:700;}
.st-single__body h3{font-size:18px;font-weight:700;}
.st-single__body ul,.st-single__body ol{padding-left:20px;}
.st-single__body li{margin-bottom:6px;}
.st-single__body blockquote,.st-single__body .did-you-know{background:var(--st-violet-light);border-left:4px solid var(--st-violet);padding:16px 20px;border-radius:0 10px 10px 0;margin:20px 0;}
.st-single__body a{text-decoration:underline;}

.st-single__sidebar{position:sticky;top:92px;align-self:start;display:flex;flex-direction:column;gap:20px;}
.st-cta-card{background:linear-gradient(160deg,#7745B0 0%,#5A2C94 100%);color:#fff;border-radius:var(--st-radius);padding:22px;}
.st-cta-card__eyebrow{font-size:11px;font-weight:700;letter-spacing:1.2px;color:#E0D1FF;margin-bottom:8px;text-transform:uppercase;}
.st-cta-card__title{font-size:18px;font-weight:700;margin-bottom:8px;}
.st-cta-card__text{font-size:13px;color:#EADBFF;margin-bottom:16px;line-height:1.5;}
.st-cta-card .st-btn{width:100%;justify-content:center;}

.st-side-card{background:#fff;border:1px solid var(--st-border);border-radius:var(--st-radius);padding:18px 20px;}
.st-side-card__title{font-size:15px;font-weight:700;margin:0 0 12px;}
.st-cat-list{list-style:none;margin:0;padding:0;}
.st-cat-list li{margin-bottom:6px;}
.st-cat-list a{color:#3b3b4d;font-size:14px;display:block;padding:4px 0;transition:color .15s;}
.st-cat-list a:hover{color:var(--st-violet);}

.widget-title{font-size:15px;font-weight:700;margin:0 0 12px;}
.widget{background:#fff;border:1px solid var(--st-border);border-radius:var(--st-radius);padding:18px 20px;}
.widget ul{list-style:none;padding:0;margin:0;}
.widget ul li{padding:4px 0;}

/* ==================== Recent slider ==================== */
.st-recent{background:#fff;padding:40px 0 60px;}
.st-recent__slider{padding-bottom:34px;}
.st-recent .swiper-slide{height:auto;}
.st-recent .swiper-slide .st-card{height:100%;}
.st-recent__pagination{text-align:center;margin-top:12px;}
.st-recent__pagination .swiper-pagination-bullet{background:#D4C8EA;opacity:1;width:22px;height:6px;border-radius:4px;transition:all .2s;}
.st-recent__pagination .swiper-pagination-bullet-active{background:var(--st-violet);width:38px;}
.st-explore-btn{display:inline-block;margin-left:8px;background:#fff;border:1px solid var(--st-border);padding:6px 14px;border-radius:999px;font-size:13px;font-weight:600;color:var(--st-violet);}

/* ==================== FAQ ==================== */
.st-faq{padding:40px 0 60px;background:#fff;}
.st-faq__list{max-width:900px;margin:0 auto;display:flex;flex-direction:column;gap:10px;}
.st-faq__list--wide{max-width:100%;}
.st-faq__item{border:1px solid var(--st-border);border-radius:10px;background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.02);overflow:hidden;}
.st-faq__item summary{list-style:none;cursor:pointer;padding:14px 18px;font-weight:600;font-size:14px;display:flex;align-items:center;justify-content:space-between;gap:12px;color:#1F1F2E;}
.st-faq__item summary::-webkit-details-marker{display:none;}
.st-faq__caret{transition:transform .2s ease;color:var(--st-violet);}
.st-faq__item[open] .st-faq__caret{transform:rotate(180deg);}
.st-faq__item[open]{border-color:#D0C3EA;}
.st-faq__answer{padding:0 18px 16px;color:#4a4a5a;font-size:14px;line-height:1.6;}
.st-faq__more{text-align:center;margin-top:22px;}
.st-faq__more .st-btn{min-width:130px;justify-content:center;}

/* ==================== Footer ==================== */
.st-footer{background:linear-gradient(180deg,#2B0B4A 0%,#1A0530 100%);color:#CFC2E0;margin-top:40px;}
.st-footer__inner{display:grid;grid-template-columns:1.3fr 2fr 1.3fr;gap:40px;padding:50px 20px 30px;}
.st-footer__logo img{max-height:40px;}
.st-footer__text{color:#CFC2E0;font-size:13px;line-height:1.6;margin:14px 0;}
.st-footer__social-label{font-size:13px;color:#fff;margin:8px 0 6px;}
.st-footer__social{display:flex;gap:8px;}
.st-footer__social a{width:32px;height:32px;border-radius:8px;background:rgba(255,255,255,.08);display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:13px;font-weight:700;transition:background .2s;}
.st-footer__social a:hover{background:rgba(255,255,255,.18);}
.st-footer__heading{color:#fff;font-weight:700;font-size:14px;margin:0 0 14px;}
.st-footer__heading--spaced{margin-top:24px;}
.st-footer__links{list-style:none;margin:0;padding:0;}
.st-footer__links li{margin-bottom:8px;}
.st-footer__links a{color:#B9A9D3;font-size:13px;transition:color .15s;}
.st-footer__links a:hover{color:#fff;}
.st-footer__links--grid{display:grid;grid-template-columns:repeat(3,1fr);gap:6px 12px;}

.st-footer__disclaimer{border-top:1px solid rgba(255,255,255,.08);padding:20px 0;}
.st-footer__disclaimer p{color:#9B8CBB;font-size:12px;line-height:1.6;margin:0;}
.st-footer__bar{background:#0f021f;}
.st-footer__bar-inner{display:flex;justify-content:space-between;align-items:center;padding:14px 20px;gap:16px;flex-wrap:wrap;}
.st-footer__copy{color:#9B8CBB;font-size:12px;}
.st-footer__legal{list-style:none;margin:0;padding:0;display:flex;gap:20px;}
.st-footer__legal a{color:#9B8CBB;font-size:12px;}
.st-footer__legal a:hover{color:#fff;}

.st-pagination{padding:30px 0 10px;display:flex;justify-content:center;}
.st-pagination .page-numbers{display:inline-flex;min-width:36px;height:36px;align-items:center;justify-content:center;padding:0 10px;border-radius:8px;background:#fff;border:1px solid var(--st-border);color:#1F1F2E;font-weight:600;margin:0 3px;}
.st-pagination .page-numbers.current,.st-pagination .page-numbers:hover{background:var(--st-violet);color:#fff;border-color:var(--st-violet);}

.st-no-results{padding:60px 0;text-align:center;color:var(--st-muted);}
.st-page__header{padding:30px 0 10px;}
.st-page__title{font-size:30px;font-weight:700;margin:6px 0;}
.st-page__body{font-size:15px;line-height:1.7;padding-bottom:50px;}


.category-bar{padding: 60px 0px;}

.hero-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* center alignment */
  gap: 15px;                 /* spacing between items */
  padding: 0;
  list-style: none;
}

.hero-categories li {
  flex: 0 0 calc(20% - 15px); /* 5 items per row */
  text-align: center;
}

.hero-categories li a {
    background-color: #fff;
    border-radius: 10px;
    border-left: 2px solid #4b0082;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    transition: all .5s;
    display: flex;
    box-shadow: 0 0 8px #52b0ff24;
    width: 100%;
    font-size: 14px;
    color: #18002a;
    font-weight: 500;
    padding: 15px 10px;
	    transition: all .5s;
    display: block;
}

.hero-categories li a:hover{background-color: #4b0082;
    transform: translateY(-4px);
	color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-categories li {
    flex: 0 0 calc(33.33% - 15px); /* 3 per row */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-categories li {
    flex: 0 0 calc(50% - 15px); /* 2 per row */
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-categories li {
    flex: 0 0 100%; /* 1 per row */
  }
}


/* ===== GLOBAL TABLE DESIGN (NO CLASS NEEDED) ===== */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* table first row bg-color & color */
table tbody tr:first-child {
  background-color: #6b3fa0; /* apna color */
}


table tbody tr:first-child td b{
	color: #fff;
}

table tbody tr:first-child td {
  border-color: var(--st-text);
}

table tbody tr:first-child:hover{
  background-color: #6b3fa0; /* apna color */
}

/* Scrollbar */
table::-webkit-scrollbar {
  height: 8px;
}
table::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
table::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}



/* Header */
table thead {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
}

table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

/* Body */
table td {
  padding: 16px 16px;
  border: 1.5px solid #eee;
  font-size: 14px;
  color: #333;
}

/* Zebra rows */
table tbody tr:nth-child(even) {
  background: #f9fafb;
}

/* Hover effect */
table tbody tr:hover {
  background: #eef2ff;
  transition: 0.2s ease;
}

/* First column highlight */
table td:first-child {
/*   font-weight: 400 !important; */
  color: #333;
}

b{
	font-weight: 500 !important;
}

/* Sticky header */
table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Rounded corners fix */
table thead tr th:first-child {
  border-top-left-radius: 12px;
}
table thead tr th:last-child {
  border-top-right-radius: 12px;
}


/* ===== CTA Hero Section ===== */

.st-cta-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.st-cta-hero__left {
	padding-right: 20px;
}
.st-cta-hero__title {
	font-size:48px;

}
.st-cta-hero__subtitle {
	font-size: 17px;
	line-height: 1.6;
	color: #5a5570;
	margin: 0 0 28px;
}
.st-cta-hero__bullets {
	list-style: none;
	padding: 0;
	margin: 0;
}
.st-cta-hero__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 16px;
	color: #2a2340;
	margin-bottom: 14px;
	font-weight: 500;
}
.st-cta-hero__tick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	min-width: 24px;
	border-radius: 50%;
	background: #6b21a8;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	margin-top: 1px;
}




		@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.banner_update_home{background-color:#fdf8f3;padding:80px 0;position:relative;overflow:hidden;}
.banner_update_home .floating_shapes{position:absolute;width:100%;height:100%;pointer-events:none;z-index:0;overflow:hidden;}
.banner_update_home ._shape{position:absolute;border-radius:50%;filter:blur(80px);opacity:0.5;}
.banner_update_home .shape_1{width:370px;height:370px;background:linear-gradient(135deg, #f2e0ff, #FFDDD2);top:40px;right:-50px;animation:drift 20s ease-in-out infinite;}
.banner_update_home .shape_2{width:330px;height:330px;background:linear-gradient(135deg, #d8acf9, #fcfcff);bottom:-50px;left:-20px;animation:drift 25s ease-in-out infinite reverse;}
.banner_update_home .shape_3{width:250px;height:250px;background:linear-gradient(135deg, #FFF3CD, #FFE9A8);top:10%;left:40%;animation:drift 18s ease-in-out infinite 2s;}
.Home-module__CNBVAW__btn {
    font-size: .9375rem;
    background-color: #4b0082;
    color: #fff;
    border-radius: 10px;
    border: solid 1px #4b0082;
    transition: all .5s;
    padding: 14px 20px;
    font-weight: 600;
    display: inline-flex;
    margin-bottom: 30px;
    align-items: center;
    gap: 3px;
}
  
.Home-module__CNBVAW__btn:hover{background-color: #5e04a1;color: #fff;}


.st-modal{
    position:fixed;inset:0;z-index:99999;
    display:none;align-items:center;justify-content:center;
    padding:20px;
}
.st-modal.is-open{display:flex;}
.st-modal__overlay{
    position:absolute;inset:0;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(3px);
}
.st-modal__dialog{
    position:relative;z-index:2;
    background:#fff;border-radius:12px;
    width:100%;
	max-width:480px;
    padding:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.3);
    animation:stModalIn .25s ease-out;
}
@keyframes stModalIn{
    from{opacity:0;transform:translateY(-20px) scale(.95);}
    to{opacity:1;transform:translateY(0) scale(1);}
}
.st-modal__close{
    position: absolute;
    top: -3px;
    right: -2px;
    background: none;
    border: 0;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 4px 10px;
    border-radius: 6px;
}
.st-modal__close:hover{background:#f2f2f2;color:#000;}
body.st-modal-open{overflow:hidden;}


.st-footer__social{display:flex;gap:10px;flex-wrap:wrap}
.st-footer__social-icon{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;text-decoration:none;transition:background .2s,transform .2s}
.st-footer__social-icon:hover{background:#e63946;transform:translateY(-2px)}
.st-footer__social-icon i{font-size:15px;line-height:1}
.st-footer__contact{list-style:none;margin:0;padding:0}
.st-footer__contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;color:#cfd3da;font-size:14px;line-height:1.5}
.st-footer__contact-item i{flex-shrink:0;margin-top:4px;color:#e63946;font-size:14px;width:16px;text-align:center}
.st-footer__contact-item a{color:inherit;text-decoration:none}
.st-footer__contact-item a:hover{color:#fff}


/* ===== Compact hero (only search) ===== */
.st-hero--compact { padding: 24px 0 8px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
	.st-cta-hero { padding: 40px 0 24px; }
	.st-cta-hero__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.st-cta-hero__left { padding-right: 0; }
	.st-cta-hero__title { font-size: 32px; }
	.st-cta-hero__subtitle { font-size: 16px; }
}
@media (max-width: 520px) {
	.st-cta-hero__title { font-size: 26px; }
	.st-cta-form-card { padding: 24px 20px; }
	.st-cta-form-card__title { font-size: 20px; }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  table th,
  table td {
    padding: 12px;
    font-size: 13px;
  }
}

/* ==================== Responsive ==================== */
@media (max-width: 1180px){
	.st-container{max-width:100%;padding:0 24px;}
}
@media (max-width: 1024px){
	.st-grid--3{grid-template-columns:repeat(2,1fr);}
	.st-popular__top{grid-template-columns:1fr 1.4fr;min-height:auto;}
	.st-popular__top-big{font-size:28px;}
	.st-popular__bottom{grid-template-columns:repeat(3,1fr);}
	.st-single__layout{grid-template-columns:1fr;gap:30px;}
	.st-single__sidebar{position:static;flex-direction:row;flex-wrap:wrap;}
	.st-single__sidebar > *{flex:1 1 280px;}
	.st-single-hero__inner{grid-template-columns:1fr;gap:24px;}
	.st-single-hero__overlay{text-align:left;}
	.st-footer__inner{grid-template-columns:1fr 1fr;gap:30px;}
	.st-footer__links--grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 860px){
	.st-header__inner{flex-wrap:wrap;}
	.st-header__toggle{display:block;}
	.st-header__nav{order:3;flex-basis:100%;max-height:0;overflow:hidden;transition:max-height .25s ease;flex-direction:column;align-items:stretch;gap:0;}
	.st-header__nav.is-open{max-height:1400px;padding:10px 0 16px;}
	.st-menu{flex-direction:column;gap:0;align-items:stretch;}
	.st-menu > li{border-bottom:1px solid var(--st-border);}
	.st-menu > li:last-child{border-bottom:none;}
	.st-menu > li > a{padding:14px 6px;display:block;}
	.st-menu .sub-menu,.st-menu .children{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;background:transparent;padding:0 0 6px 14px;display:none;min-width:0;}
	.st-menu li.is-open > .sub-menu{display:block;}
	.st-apply-btn{margin:14px 6px 6px;justify-content:center;width:calc(100% - 12px);box-sizing:border-box;}
	.st-hero{padding:32px 0 24px;}
	.st-hero__title{font-size:26px;}
	.st-section{padding:32px 0;}
	.st-section__title{font-size:20px;}

	.st-popular__top{grid-template-columns:1fr;}
	.st-popular__top-thumb{min-height:220px;}
	.st-popular__bottom{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 640px){
	.hero-banner{height: 200px!important;}
	.st-grid--3,.st-grid--4,.st-grid--2{grid-template-columns:1fr;}
	.st-popular__bottom{grid-template-columns:1fr;}
	.st-popular__top-big{font-size:24px;}
	.st-popular__top-body{padding:22px 20px;}
	.st-single-hero__title{font-size:22px;}
	.st-single-hero__big-label{font-size:24px;}
	.st-section{padding:28px 0;}
	.st-section__head--row{flex-direction:column;align-items:flex-start;}
	.st-hero__title{font-size:22px;}
	.st-hero__sub{font-size:14px;}
	.st-footer__inner{grid-template-columns:1fr;padding:36px 20px 20px;}
	.st-footer__links--grid{grid-template-columns:1fr 1fr;}
	.st-footer__bar-inner{flex-direction:column;align-items:flex-start;gap:8px;}
	.st-card__title{font-size:14px;}
	.st-single__body{font-size:14px;}
	.st-page__title{font-size:24px;}
	.st-modal__dialog{padding: 0;}
	.st-modal__close{z-index: 1;}
}
@media (max-width: 420px){
	.st-footer__links--grid{grid-template-columns:1fr;}
	.st-popular__top-big{font-size:20px;}
	.st-card__big-label{font-size:18px;}
	.st-single-hero__big-label{font-size:20px;}
}




