/* Variables */

:root {
  --primary-bg-color: #4519c2; /* global scope */
}

/* Variables end */


/* 100 - Thin */
@font-face {
  font-family: "Reckless-Neue";
  src: url("/templates/twenty-one-child/fonts/Reckless-Neue/RecklessNeue-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* 300 - Light */
@font-face {
  font-family: "Reckless-Neue";
  src: url("/templates/twenty-one-child/fonts/Reckless-Neue/RecklessNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* 400 - Regular */
@font-face {
  font-family: "Reckless-Neue";
  src: url("/templates/twenty-one-child/fonts/Reckless-Neue/RecklessNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 500 - Medium */
@font-face {
  font-family: "Reckless-Neue";
  src: url("/templates/twenty-one-child/fonts/Reckless-Neue/RecklessNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* 600 - SemiBold */
@font-face {
  font-family: "Reckless-Neue";
  src: url("/templates/twenty-one-child/fonts/Reckless-Neue/RecklessNeue-SemiBold.woff") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 700 - Bold */
@font-face {
  font-family: "Reckless-Neue";
  src: url("/templates/twenty-one-child/fonts/Reckless-Neue/RecklessNeue-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 800 - ExtraBold */
@font-face {
  font-family: "Reckless-Neue";
  src: url("/templates/twenty-one-child/fonts/Reckless-Neue/RecklessNeue-Heavy.woff") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/* Global Css Code Start*/

body{
    background-color: #f5f3f1 !important;
}

body,
body a,
body p,
body span{
    font-family: "Pathway Extreme", sans-serif;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6{
     font-family: "Reckless-Neue" !important;
}

.cs_container{
    width: 100% !important;
    max-width: 1384px !important;
    display: block !important;
    margin: auto !important;
    padding: 0 20px !important;
}

body{
	padding-top: 80px;
}

body.no-announcement {
	padding-top: 60px;
}


.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


.fade-in {
    opacity: 0;
    transition: opacity 0.9s ease;
}

.fade-in.show {
    opacity: 1;
}



/* Global Css Code End */

/* Top Announcement Bar - Fixed at very top */
.top-announcement {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #181516;
    padding: 12px 0;
    z-index: 1001;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    will-change: transform;
    backface-visibility: hidden;
}

.top-announcement.hidden {
    transform: translateY(-110%);
}

.announcement-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1344px;
	margin: 0 auto;
	padding: 0 40px;
}

.announcement-text {
	font-size: 14px;
	font-weight: 500;
	flex: 1;
	text-align: center;
}

.close-announcement {
	background: transparent;
	border: none;
	color: #181516;
	cursor: pointer;
	font-size: 16px;
	padding: 5px 10px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.close-announcement:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.05);
}






/* Header code start */
.header {
	padding: 12px 20px 0 20px;
	position: fixed;
	top: 50px;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.4s ease;
	background: transparent !important;
}

.header.no-announcement {
	top: 0;
}

.header.hide {
	transform: translateY(-100%);
}

.hdrcontainer {
	max-width: 1344px;
	margin: auto;
	background: var(--primary-bg-color);
	border-radius: 8px;
	padding: 8px 16px 8px 20px;
	display: flex;
    gap:5px;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo a {
	text-decoration: none;
}

.logo img {
	max-height: 48px;
	height: 100%;
	width: auto;
}

.nav {
    position: relative;
}

.nav ul {
	list-style: none;
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav li {
	position: relative;
}

.nav a,
.login {
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	transition: 0.3s ease;
	padding: 11px 16px;
	border-radius: 8px;
	display: inline-block;
	font-family: "Pathway Extreme", sans-serif;
}

.nav a:hover {
	color: #1c1819;
	background: #fff;
}

.nav li.active>a {
	color: #1c1819;
	background: #fff;
}

/* Dropdown styles */

nav .dropdown-toggle::after{
    display: none;
}

/* .nav .wrpadrp {
    display: none;
    padding-top: 5px;
} */

.nav .dropdown-menu {
    position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	min-width: 200px;
	padding: 8px;
	margin: 0;
	background: var(--primary-bg-color);;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	list-style: none;
    display: none;
}

/* .nav li:hover .wrpadrp, */
.nav li:hover .wrpadrp .dropdown-menu {
	display: block;
}

.nav .dropdown-menu li {
	display: block;
}

.nav .dropdown-menu a {
	display: block;
	padding: 8px 20px;
	border-radius: 0;
	white-space: nowrap;
}

/* .nav .dropdown-menu a:hover {
	background: #ad928c4d;
} */

.nav .dropdown-menu a:hover {
    background: #fff;
    /* margin-bottom: 10px; */
    border-radius: 8px;
}
.nav .caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 5px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Search and Cart Icons */


.search-icon,
.cart-icon {
	color: #fff;
	font-size: 18px;
	padding: 8px;
	border-radius: 8px;
	transition: 0.3s ease;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    text-decoration: none !important;
}

.cart-icon svg{
    height: 25px;
    width: 25px;
}

.search-icon .icon-search{
    margin: -1px 5px 0 0 !important;
}

.search-icon:hover{
    color: #fff;
    opacity: 0.8;
}

/* .cart-icon:hover {
	color: #1c1819;
	background: #fff;
} */

.cart-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #f2e9e3;
	color: #181516;
	font-size: 11px;
	font-weight: 600;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
}

.login {
	background-color: transparent !important;
    border-color: transparent !important;
    color: #fff !important;
    
}

.login:hover {
	background-color: #fff !important;
	color: #181516 !important;
}

.btn-primary,
.login {
	background: #fff;
	color: #181516;
	padding: 11px 16px;
	border-radius: 8px;
	text-decoration: none !important;
	font-weight: 500;
    font-size: 15px;
	transition: 0.3s ease;
	display: inline-block;
    border: 1px solid #fff;
}

.btn-primary:hover {
	background: transparent;
	color: #fff;
	text-decoration: none;
    border: 1px solid #fff;
}

/* User Menu */
.user-menu {
	position: relative;
}

.user-name {
	color: #dac6bd;
	padding: 11px 16px;
	border-radius: 8px;
	transition: 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	text-decoration: none;
}

.user-name:hover {
	color: #fff;
	background: #ad928c4d;
	text-decoration: none;
}

.user-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1000;
	display: none;
	min-width: 180px;
	padding: 8px 0;
	margin: 5px 0 0;
	background: #181516;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	list-style: none;
}

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

.user-dropdown li a {
	display: block;
	padding: 8px 20px;
	color: #dac6bd;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s ease;
}

.user-dropdown li a:hover {
	background: #ad928c4d;
	color: #fff;
}

.header-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background: transparent;
    padding: 0;


         transform: translateX(40px);   /* zyada door se nahi aayega */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 
        transform 0.3s ease,
        opacity 0.25s ease,
        visibility 0.3s;
    /* display: none; */
}

.header-search.active {
    /* display: block; */

       transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-search input {
    width: 100%;
    padding: 11px 16px 11px 46px;
    border: 1px solid rgb(255 255 255 / 80%);
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #fff;
    background: var(--primary-bg-color);
    transition: 0.3s ease-in-out;
    font-family: "Pathway Extreme", sans-serif;
}

.header-search input:focus {
    border-color: #fff;
}

.header-search input::placeholder{
    color: #fff;
    opacity: 1 !important;
}

.search-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon .icon {
    position: absolute;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.search-icon.active .icon-search {
    opacity: 0;
    transform: rotate(90deg);
}

.search-icon.active .icon-close {
    opacity: 1;
    transform: rotate(0);
}


.srchcl{
    margin-bottom: 20px;
}


.srchcl .search-form,
.header-search form{
    position: relative;
    width: 100%;
}

.srchcl .search-form i,
.header-search form i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
    pointer-events: none;
}

.header-search form i {
    font-size: 18px !important;
}

.srchcl .search-form input {
    width: 100%;
    padding: 10px 16px 10px 36px;
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.3s ease;
    background-color: rgb(0 0 0 / 20%);
    color: #fff;
}

.srchcl .search-form input:focus {
    border-color: #fff;
    /* box-shadow: 0 0 0 2px rgba(0,0,0,0.05); */
}

.srchcl .search-form input::placeholder{
    color: #fff !important;
    opacity: 90% !important;
}









.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle:focus{
    outline: none !important;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}


.mobile-menu .mobile-inner{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 20px;
}


/* Mobile nav */
.mobile-menu .mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-menu .mobile-submenu{
    list-style: none;
    display: none;
    padding: 5px;
}

.has-submenu:has(.mobile-submenu.active) {
    background-color: rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.mobile-nav li {
    margin-bottom: 8px;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    background: rgb(0 0 0 / 20%);
}

.has-submenu .mobile-submenu a{
    background: transparent;
}

.mobile-nav li:hover > a,
.has-submenu .mobile-submenu li:hover > a {
    background: #fff;
    color: #1c1819;
}

.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 25px;

}

.has-submenu > a::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: 0.3s ease;
}



/* Bottom section */
.mobile-bottom {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-login {
    text-align: center;
    color: #fff;
    text-decoration: none;
    width: 50%;
}

.mobile-btn {
    background: #fff;
    color: #181516;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
     width: 50%;
}




/* Top line */
.mobile-toggle span:nth-child(1) {
    top: 0;
}

/* Bottom line */
.mobile-toggle span:nth-child(2) {
    bottom: 0;
}

/* ========= CROSS STATE ========= */

/* Move both lines to center */
.mobile-toggle.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    bottom: 2px;
    transform: rotate(-45deg);
}

/* Stop body scroll when menu open */
body.menu-open {
    overflow: hidden;
}


/* header Code end */







/* banner section code start */

#main-body {
	margin-top: -60px !important;
	padding: 0 !important;
}

#main-body .container {
	max-width: unset !important;
	padding: 0 !important;
	margin: 0 !important;
}

.hero {
	background: #f5f3f1;
	padding: 150px 20px 80px;
}

.banner_glbs {
    position: relative;
}

.hero-container {
	max-width: 1344px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

/* LEFT CONTENT */
.hero-content {
	flex: 1;
	padding: 0 0 0 40px;
}

.hero-content h1 {
	font-family: "Reckless-Neue" !important;
	font-size: 64px;
	font-weight: 400;
	line-height: 1.1;
	color: #1c1819;
	margin-bottom: 16px;
}

.hero-content p {
	font-size: 20px;
	color: #1c1819;
	line-height: 1.6;
	max-width: 600px;
	margin-bottom: 40px;
    font-family: "Pathway Extreme", sans-serif;
}

/* BUTTONS */
.hero-buttons {
	display: flex;
	gap: 16px;
}

.bntss {
	padding: 13px 20px;
	border-radius: 8px;
	text-decoration: none !important;
	font-weight: 500;
	transition: 0.3s ease;
	background: var(--primary-bg-color);
	color: #fff;
	font-size: 16px;
	border: 1px solid var(--primary-bg-color);
    font-family: "Pathway Extreme", sans-serif;
    cursor: pointer;
}

.btn-dark,
.btn-outline:hover {
	background: var(--primary-bg-color);
	color: #fff;
	border: 1px solid var(--primary-bg-color) !important;
}

.btn-dark:hover,
.btn-outline {
	background: #fff;
	color: var(--primary-bg-color);
}

/* RIGHT IMAGE */
.hero-image {
	flex: 1;
	position: relative;
}

.vd_link {
	display: flex;
	justify-content: end;
	padding: 0 40px 0 0;
}

.hero-image img {
	width: 100%;
	border-radius: 24px;
	display: block;
	max-width: 500px;
}

/* PLAY BUTTON */
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgb(255 87 24 / 50%);
	color: #fff;
	font-size: 30px;
	padding: 24px 48px;
	border-radius: 20px;
	cursor: pointer;
	transition: 0.3s ease;
	line-height: 1;
	border: 1px solid #ff5718;
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.05);
}

/* Grid Background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

/* Make content stay above */
.hero-container {
  position: relative;
  z-index: 2;
}





.banner_glb {
    overflow: hidden;
    position: relative;
}

.banner_glb.hero{
    padding: 150px 20px 100px;
}



.z99{
    position: relative;
    z-index: 99;
}



.wrapercss h1 {
	font-family: "Reckless-Neue" !important;
	font-size: 64px;
	font-weight: 400;
	line-height: 1.1;
	color: #1c1819;
	margin-bottom: 16px;
    text-align: center;
}

.wrapercss p {
    text-align: center;
	font-size: 20px;
	color: #1c1819;
	line-height: 1.6;
	max-width: 650px;
	margin: 0 auto 40px;
    font-family: "Pathway Extreme", sans-serif;
    display: block;
}
/* banner section code end */





/* Trusted Brands section Code start */

.trusted-section {
  background: #f5f3f1;
  padding: 60px 0 80px 0;
  text-align: center;
}

.trusted-text {
  font-size: 16px;
  color: #4c4243;
  margin-bottom: 32px;
  font-weight: 400;
  font-family: "Pathway Extreme", sans-serif;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.brand-logos img {
  max-height: 50px;
  width: auto;
  max-width: 200px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brand-logos img:hover {
  filter: grayscale(0%);
}

/* Trusted Brands section Code End */









/* Why Us Section code start */


.why-section {
  padding: 80px 0px;
}


.why-title {
  text-align: center;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 70px;
  color: #1e1e1e;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eaddd5;
  transition: all 0.3s ease;
}
/* 
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
} */

.card-image {
  background: #efe6e2;
  text-align: center;
  padding: 0;
}

.card-image img {
  max-width: 100%;
  height: auto;
}

.card-content {
  padding: 32px;
}

.card-content p {
font-size: 20px;
  line-height:28px;
  color: #1c1819;
  font-family: "Pathway Extreme", sans-serif;
  margin-bottom: 20px !important;
  font-weight: 500 !important;
}

/* Why Us Section code End */
.Customers-hero
 {
    padding: 80px 40px;
    overflow: hidden;
    max-width: 1344px;
    margin: 0 auto;
    box-shadow: 0 5px 100px #643fcce0;
    border-radius: 2rem;
	margin-top: 80px;
	margin-bottom: 80px;
    position:relative;
	overflow:hidden;
	background:#4519c2;
}
.Customers-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(to right, rgb(255 255 255 / 11%) 1px, #4519c2ad 1px), linear-gradient(to bottom, rgb(255 255 255 / 34%) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgb(0 0 0 / 53%) 60%, rgba(0, 0, 0, 0) 100%);
}
.hero-container{
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-wrap:nowrap;
	gap:40px;
}


.hero-left{
	width:50%;
}

.hero-left h1{
	color:#fff;
	font-size:40px;
	line-height:1.2;
	margin-bottom:20px;
}

.badge-row{
	display:flex;
	gap:10px;
	flex-wrap:wrap;
 margin-bottom: 50px;
    margin-top: 50px;}

.badge{
	background:#fff;
	color:#4519c2;
	padding:10px 15px;
	border-radius:6px;
	border:1px solid #2b2b30;
	font-size:13px;
}

a.btn-dark.bntss.primary-btnn
 {
    background: #4519c2;

}
a.btn-dark.bntt {
    padding: 13px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 500;
    transition: 0.3s ease;
    background: #ffffff;
    color: #4519c2;
    font-size: 16px;
    border: 1px solid var(--primary-bg-color);
    font-family: "Pathway Extreme", sans-serif;
}
.hero-btn{
	background:#F36F45;
	color:#fff;
	padding:14px 24px;
	border-radius:6px;
	text-decoration:none;
}

.hero-right{
	width:50%;
	position:relative;
	}

.float-img{
	width:100%;
	animation:float 6s ease-in-out infinite;
	position:relative;
	z-index:2;
}

.glow{
	position:absolute;
	width:400px;
	height:400px;
	background: radial-gradient(circle, #4419c0 0%, transparent 70%);
	filter: blur(100px);
	top:100px;
	right:0;
	z-index:1;
}

@keyframes float{
	0%{transform:translateY(0)}
	50%{transform:translateY(-20px)}
	100%{transform:translateY(0)}
}

/* ===== REVIEW SECTION ===== */

.review-section{
margin-top:60px;
}

/* TOP TEXT + ARROWS */

.review-top{
display:flex;
align-items:center;
margin-bottom:25px;
color:#aaa;
font-size:14px;
gap: 15px;
}

.review-nav button{
width:23px;
height:23px;
border:none;
border-radius:8px;
background:#1A1A1D;
color:#fff;
margin-left:8px;
cursor:pointer;
transition:.3s;
}

.review-nav button:hover{
  background:#000000;
}

/* SLIDER */

.review-slider{
overflow:hidden;
width:100%;
position:relative;
}

.review-track{
display:flex;
gap:16px;
transition:transform .5s ease-in-out;
}

/* CARD */

.review-card-new{
flex:0 0 calc(100% / 3);
max-width:calc(100% / 3);
padding:30px;
border-radius:20px;
background:linear-gradient(145deg,#1a1a1d,#101013);
border:1px solid #2b2b30;
position:relative;
overflow:hidden;
transition:.3s;
}

/* GRADIENT BORDER */

.review-card-new:before{
content:'';
position:absolute;
inset:0;
border-radius:20px;
padding:1px;
-webkit-mask-composite:xor;
mask-composite:exclude;
pointer-events:none;
}

/* HOVER GLOW */


/* REMOVE MOBILE HORIZONTAL SCROLL */


/* TEXT */

.review-card-new p{
color:#ccc;
font-size:14px;
line-height:1.6;
margin-bottom:25px;
}

/* USER */

.review-user{
display:flex;
align-items:center;
gap:12px;
}

.review-user img{
width:45px;
height:45px;
border-radius:50%;
}

.review-user h4{
color:#fff;
margin:0;
font-size:16px;
}

.review-user span{
font-size:12px;
color:#aaa;
}

.business-hosting{
padding:100px 0;
text-align:center;
}

.business-title{
font-size:56px;
margin-bottom:60px;
color:#1b1b2f;
}

.business-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1344px;
margin:0 auto;
}

.business-card{
background:#fff;
border-radius:20px;
overflow:hidden;
transition:.3s;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.business-card:hover{
box-shadow:0 20px 60px rgba(106,92,255,0.15);
}

.card-img{
overflow:hidden;
border-radius:20px 20px 0 0;
}

.card-img img{
width:100%;
display:block;
transition:.4s;
height: 400px;
object-fit: cover;
}

.business-card:hover img{
transform:scale(1.05);
}

.card-content{
padding:25px;
text-align:left;
}

.card-content h3{
margin-bottom:10px;
}

.card-content p{
font-size:14px;
margin-bottom:15px;
color:#555;
}

.card-btn{
display:inline-block;
padding:10px 18px;
border:1px solid #ddd;
border-radius:8px;
text-decoration:none;
color:#333;
transition:.3s;
}

.card-btn:hover{
background:linear-gradient(90deg,#4f2bd6,#6a5cff);
color:#fff;
border:none;
text-decoration: none;
}

.primary-btnn{
    position: relative;
        display: inline-flex;
    align-items: center;
    gap:8px;
    padding:12px 28px;
    background: transparent;
    border:1px solid #7b61ff;
    overflow: hidden;
    z-index: 1;
    transition: all .35s ease;
}

/* sliding background layer */
.primary-btnn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(120deg,#7b61ff,#a855f7);
    transition: all .4s ease;
    z-index:-1;
}

/* hover swipe */
.primary-btnn:hover::before{
    left:0;
}

/* lift effect */
.primary-btnn:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
	    color: #fff !important;
}

.cta-strip{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 40px;
    background:#f2eeec;
    border-radius:16px;

    width:100%;
    max-width:1344px;
    margin:40px auto;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.cta-left img{
    width:48px;
    height:48px;
    border-radius:12px;
}

.cta-left p{
    font-size:32px;
    color:#1d1d1d;
    margin:0;
}

.cta-right{
    display:flex;
    gap:12px;
}
/*---tab-section---*/
.value-wrapper{
    width:100%;
    padding:100px 0;
	margin-top: 100px;	
	margin-bottom: 100px;

}
.value-head{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:40px;
margin-bottom:40px;
}

.value-left{
flex:0 0 60%;
}

.value-right{
flex:0 0 40%;
margin-top:20px;
}

.value-right p{
margin:0;
opacity:.8;
}

.highlight{
color:#00ff6a;
margin-top:6px;
}



/* THIS is 1244px */
.value-inner{
    max-width:1244px;
    margin:auto;
    padding:0 20px;
    color:#fff;
}

.value-head h2{
    font-size:54px;
    font-weight:500;
}

.value-head span{
    color:#4519c2;
}
p.highlight {
    color: #4519c2;
}
.tab-switch{
    position:relative;
    display:flex;
    width:320px;
    background:#2a2a2a;
    padding:4px;
    border-radius:12px;
    margin:40px 0;
}
.tab-pane{
display:none;
}
.card-tab.success img
 {
     width: 58px;
    height: 66px;
}
.card-tab.success {
    min-height: 156px;
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: -1px -1px 5px 2px #4519c21f;
}
.card-tab.success p {
    text-align: center;
}
.tab-pane.active{
display:block;
}

span.price {
    color: #4519c2;
}
.tab{
    flex:1;
    background:none;
    border:none;
    color:#fff;
    padding:10px;
    z-index:2;
    cursor:pointer;
}

.tab-pill{
    position:absolute;
    top:4px;
    left:4px;
    width:50%;
    height:calc(100% - 8px);
    background:#000;
    border-radius:10px;
    transition:.35s ease;
}

.tab-switch.active .tab-pill{
    left:50%;
}

.grid-tab{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card-tab{
    background:#fff;
    padding:28px;
    border-radius:16px;
	color:#000;
}

.card-tab.active{
    border:1px solid #00ff6a;
}

section.value-wrapper
 {
    background-image: url(/templates/twenty-one-child/img/ppt-v2.png);
    background-position: center;
    background-repeat: no-repeat;
	background-size: cover;
}
/* ================= MIGRATE SECTION ================= */

/* BREAK WHMCS CONTAINER */

.migrate-sec{
    position:relative;
    padding:160px 0;
    overflow:hidden;
        background-image: url(/templates/twenty-one-child/img/ppt-v2.png);
    background-position: center;
    background-repeat: no-repeat;
	margin-top: 100px;
	background-size: cover;
}

/* CENTER CONTENT */

.migrate-wrap{
    max-width:900px;
    margin:0 auto;
    padding:0 32px;
    text-align:center;
    position:relative;
    z-index:5;
}

/* ================= CUBE BG ================= */


/* DARK CENTER FADE */


/* ================= TEXT ================= */

.migrate-title{
    font-size:56px;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
}

.migrate-desc{
    color:#bbb;
    font-size:16px;
    margin-bottom:30px;
}

button.tab.active.hosts
 {
    background: #4519c2;
}

button.tab.our-host.active {
    background: #4519c2;
}

/* ================= BUTTONS ================= */

.migrate-btns{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.migrate-btn{
    padding:14px 24px;
    border-radius:8px;
    text-decoration:none;
    font-size:15px;
    border:1px solid #444;
    color:#fff;
}

.migrate-btn.primary{
    background:#f3efec;
    color:#111;
}

.migrate-btn.secondary{
    background:transparent;
}

/* ================= SECTION ================= */

.hs-dual-sec{
    padding:100px 0;
}

.hs-dual-wrap{
    max-width:1344px;
    margin:0 auto;
    padding:0 32px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* ================= CARD ================= */

.hs-card{
    background:linear-gradient(135deg, #4519c2ad, #4519c2);
    border-radius:22px;
    padding:40px;
    color:#fff;
    position:relative;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hs-card .btn-outline:hover{
    border: 1px solid #fff !important;
}

.hs-card h3{
    font-size:32px;
    margin-bottom:20px;
}

.hs-desc{
    font-size:15px;
    opacity:.85;
    margin-bottom:40px;
}

/* ================= LEFT ================= */

.hs-price{
    font-size:22px;
}

.hs-price .old{
    text-decoration:line-through;
    opacity:.6;
    margin-right:8px;
}


.hs-percent
 {
    position: absolute;
    right: 86px;
    bottom: 40px;
    font-size: 56px;
    transform: rotate(25deg);
    background: #c7ff00;
    color: #000;
    padding: 0px 15px;
    font-weight: bold;
    border-radius: 6px;
}

/* ================= RIGHT ================= */

.hs-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hs-badge{
    background:rgba(255,255,255,0.2);
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
}


/* OUTER WHITE PILL */

.hs-search-wrap{
    position:relative;
    background:#fff;
    border-radius:60px;
    padding:6px;
    margin-top:20px;
    display:flex;
    align-items:center;
}

.hs-search-wrap form{
    margin: 0 !important;
    display:flex;
    align-items:center;
    width: 100% !important;
}

.hs-search-wrap form input{
    width: 100% !important;
}

/* SEARCH ICON */

.hs-icon{
    padding:0 12px;
    color:#666;
}

/* INPUT */

.hs-search-wrap input{
    border:none;
    outline:none;
    flex:1;
    padding:12px 10px;
    font-size:15px;
}

/* INNER DARK CAPSULE */

.hs-search-btn{
    background:#0f0f0f;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:40px;
    cursor:pointer;
}
/*--Logo slider ---*/
/* ===== LOGO SLIDER ===== */

.logo-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

/* DESKTOP STATIC */
.logo-track{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:48px;
  flex-wrap:nowrap;
}

/* hide duplicate logos on desktop */
.logo-track img:nth-child(n+7){
  display:none;
}

.logo-track img{
  max-height:50px;
  width:auto;
  max-width:200px;
  filter:grayscale(100%);
  transition:.3s;
  flex:0 0 auto;
}

.logo-track img:hover{
  filter:grayscale(0%);
}


/* ===== MOBILE SLIDER ===== */
.tpl-announcements {
    width: 1344px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
     padding-bottom: 100px;
   
}
.tpl-announcements-left.col-lg-4.col-xl-3 {
    max-width: 30% !important;
}
.tpl-announcements-right.col-lg-8.col-xl-9.primary-content
 {
    max-width: 70%;
}
.tpl-knowledgebase-right.col-lg-8.col-xl-9.primary-content {
    max-width: 65%;
}
.tpl-knowledgebase-left.col-lg-4.col-xl-3 {
    width: 30%;
}

.tpl-knowledgebasecat {
    display: flex;
    width: 100%;
    max-width: 1344px;
    margin: 0 auto;
    padding-bottom: 100px;

}
.tpl-knowledgebase {
    width: 1344px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;

}

/* ===== ANIMATION ===== */
.tpl-login
 {
    max-width: 500px;
    margin: 0 auto;
}
/* KB Search */
.kb-search {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.kb-search input {
    border: none !important;
    box-shadow: none !important;
    font-size: 16px;
}

.kb-search input:focus {
    outline: none;
}

.kb-search .btn {
    border-radius: 8px !important;
    padding: 10px 24px;
    font-weight: 500;
    background: linear-gradient(135deg, #5f2eea, #4c1dbe);
    border: none;
    color:#fff;
}

/* ===============================
   FULL WIDTH UNIQUE SECTION
=============================== */

.unique-power-section {
    width: 100%;
    padding: 90px 0;
}

/* Inner content centered */
.unique-power-section .unique-inner {
    max-width: 1344px;
    margin: 0 auto;
}

/* Header */
.unique-power-section .unique-header h2 {
     font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 900px;  
    margin: 0 auto 20px;
}

.unique-power-section .unique-header p {
    max-width: 750px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 16px;
}

/* Cards */
.unique-power-section .unique-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.unique-power-section .unique-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(69, 25, 194, 0.15);
}

.unique-power-section .unique-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.unique-power-section .unique-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* =================================
   BUSINESS HOSTING SECTION DESIGN
================================= */

/* ================================
   FEATURE LIST STYLE
================================ */

/* =====================================
   HOSTING PRICING DESIGN (CURVED STYLE)
===================================== */

.hosting-pricing-section {
    background: #f5f3f1;
    padding: 100px 0;
}

.section-title {
    font-size: 56px;
    font-weight: 500;
}

.subtitle {
    color: #666;
    margin-bottom: 60px;
}

/* Card */
.modern-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Curved Purple Header */
.modern-card .plan-name {
    background: linear-gradient(135deg, #5f2eea, #7b4dff);
    color: #fff;
    padding: 35px 20px 0px;
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    border-bottom-left-radius: 100px 40px;
    border-bottom-right-radius: 100px 40px;
    margin-bottom: 30px;

}

.modern-card .btn-wrapper{
    margin-top: auto;
}

/* Price */
.Price-sec {
    align-items: baseline;
    margin-bottom: 25px;
}

.Price-sec h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 5px;
}

.Price-sec .usd {
    font-size: 42px;
    font-weight: 700;
}

.Price-sec .year {
    font-size: 18px;
    color: #fff;
        font-weight: 400;
}

/* Feature List */
.feature-list ul {
    list-style: none;
    padding: 0 25px;
    margin: 0 0 30px;
}

.feature-list li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #555;
}

.feature-list li i {
    color: #5f2eea;
    margin-right: 8px;
}

/* Button */
.modern-btn {
    display: block;
    margin: 0 25px;
    padding: 11px 16px;
    text-align: center;
    background: #4519c2;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: 1px solid transparent;
}


.modern-btn:hover {
    
    color: #fff;
        text-decoration: none;
}

/* Hover Card */
.modern-card:hover {
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.modern-card:hover .modern-btn
 {
    background: #fff  !important;
    color: #181516  !important;
    border: 1px solid #4519c2  !important;
}


/* Featured Card */
.modern-card.featured {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(95,46,234,0.2);
}

/* Purple header layout */
.modern-card .plan-name {
    background: linear-gradient(135deg, #4519c2, #6d28ff);
    color: #fff;
    padding: 40px 20px 40px 20px;
    border-bottom-left-radius: 100px 40px;
    border-bottom-right-radius: 100px 40px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-name h4 {
    font-size: 16px;
}
/* Centered badge below title */
.popular-badge {
    display: inline-flex;          /* keeps natural width */
    align-self: center;            /* center inside flex column */
    padding: 5px 14px;
    background: #ffb800;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
    width: auto;                   /* prevent stretching */
    max-width: max-content;        /* ensure it stays tight */
}

.unique-power-section {
    width: 100%;
    padding: 90px 0;
    max-width: 1344px;
    margin: 0 auto;
}
section.hosting-pricing-section {
    width: 100%;
    padding: 90px 0;
    max-width: 1344px;
    margin: 0 auto;
}

.tpl-knowledgebasecat-right.col-lg-8.col-xl-9.primary-content {
    max-width: 68%;
}
.tpl-knowledgebasecat   .tpl-knowledgebasecat-left.col-lg-4.col-xl-3 {
    max-width: 30% !important;
}

@keyframes scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* ===== ANNOUNCEMENT PAGE LAYOUT ===== */

.tpl-knowledgebasearticle {
    max-width: 1344px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding-bottom: 100px;
    width:100%;
}

.tpl-knowledgebasearticle-right.col-lg-8.col-xl-9.primary-content
 {
    max-width: 68% !important;
}
.tpl-knowledgebasearticle-left.col-lg-4.col-xl-3 {
    max-width: 30% !important;
}

/* ===============================
   RIGHT SECTION DESIGN (ARTICLE)
================================= */

.tpl-knowledgebasearticle-right .card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    padding: 10px 10px 20px;
}

/* Article Title */
.tpl-knowledgebasearticle-right h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Print Button */
.tpl-knowledgebasearticle-right .btn-sm {
    border-radius: 8px;
    font-size: 13px;
    padding: 6px 14px;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    transition: 0.3s ease;
}

.tpl-knowledgebasearticle-right .btn-sm:hover {
    background: #5f2eea;
    color: #fff;
    border-color: #5f2eea;
}

/* Meta Info (likes + tags) */
.tpl-knowledgebasearticle-right .list-inline {
    margin-bottom: 10px;
}

.tpl-knowledgebasearticle-right .badge-info {
    background: linear-gradient(135deg, #5f2eea, #7b4dff);
    font-weight: 500;
    padding: 6px 12px;
}

/* Divider */
.tpl-knowledgebasearticle-right hr {
    margin: 20px 0;
    opacity: 0.1;
}

/* Article Content */
.tpl-knowledgebasearticle-right article {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* Headings inside article */
.tpl-knowledgebasearticle-right article h2,
.tpl-knowledgebasearticle-right article h3 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Lists */
.tpl-knowledgebasearticle-right article ul {
    padding-left: 20px;
}

.tpl-knowledgebasearticle-right article li {
    margin-bottom: 8px;
}

/* Helpful Section */
.tpl-knowledgebasearticle-right h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Vote Buttons */
.tpl-knowledgebasearticle-right form button {
    border-radius: 8px;
    transition: 0.3s ease;
}

.tpl-knowledgebasearticle-right form button:hover {
    background: #5f2eea;
    color: #fff;
    border-color: #5f2eea;
}

/* Related Articles Card */
.tpl-knowledgebasearticle-right .list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 14px 20px;
    transition: 0.3s ease;
}

.tpl-knowledgebasearticle-right .list-group-item:hover {
    background: #f9f7ff;
}
/* ================= MOBILE ================= */
@media (min-width:1025px) and (max-width:1300px){

    .logo-track {
        justify-content: flex-start;
        width: max-content;
        animation: scroll 18s linear infinite;
    }
.hs-percent {
    position: absolute;
    right: 39px;
}

/* styles here */
.value-right
 {
    flex: 0 0 30%;
    margin-top: 20px;
}
}

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


@media(max-width: 1350px){
.nav ul,
.header-right{
    gap: 2px;
}
.nav a, .login{
    padding: 8px 10px;
}

.header-search input{
    padding: 8px 16px 8px 46px;
}
}


@media (max-width:1200px){

    .logo-track {
        justify-content: flex-start;
        width: max-content;
        animation: scroll 18s linear infinite;
    }

    .nav,
    .header-right .search-icon,
    .login,
    .register_tbn  {
        display: none;
    }

    .mobile-toggle {
        display: flex !important;
    }

.mobile-menu {
        position: absolute;
        top: calc(100% - 7px);  /* appears below header */
        left: 20px;
        width: calc(100% - 40px);
        background: var(--primary-bg-color);
        padding: 20px 20px 0 20px;
        border-radius: 0 0 8px 8px;
        z-index: 9999;
        height: calc(100vh - 100px);
        overflow-y: auto;
         box-sizing: border-box;
    }

}



@media(max-width:1024px){

     #order-standard_cart .sidebar-collapsed
 {
    margin-top: 20px;
    padding: 0px !important;
    border-radius: 4px;
}

    .custom-left-sidebar.card-sidebar {
    padding: 0px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

    .hero-content h1 {
    font-size: 50px;
    }
    .why-title {
    text-align: center;
    font-size: 50px;}
    .wrapercss h1{
    font-size: 50px;
  }
   .value-head h2
 {
    font-size: 50px;
    font-weight: 500;
}
.migrate-title
 {
    font-size: 50px;
    
}
.business-title
 {
    font-size: 50px;
    margin-bottom: 60px;
    color: #1b1b2f;
}
    .wrapercss p{
    font-size: 18px;
  }

    .logo-track {
        justify-content: flex-start;
        width: max-content;
        animation: scroll 18s linear infinite;
    }

	.hs-dual-wrap{
    grid-template-columns:1fr;
}
.review-card-new{
flex:0 0 50%;
max-width:50%;
}
.business-grid{
grid-template-columns:repeat(2,1fr);
}
.value-right
 {
    flex: 0 0 30%;
    margin-top: 20px;
}
.sidebar.sidebar-secondary
 {
    clear: left;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 25px;;
}

.modern-card.featured {
        transform: none;
    }

  .business-hosting-section .section-title {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

    .business-hosting-section .col-md-6,
    .business-hosting-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hosting-card {
        margin-bottom: 25px;
    }

    .hosting-header {
        padding: 25px 20px 50px;
        border-bottom-left-radius: 80px 30px;
        border-bottom-right-radius: 80px 30px;
        text-align: center;
    }

    .hosting-header h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .hosting-body {
        padding: 20px;
        text-align: center;
    }

    .unique-power-section {
        padding: 0px 20px;
    }

    .unique-power-section .unique-header h2 {
        font-size: 50px;
    }

}

/* MOBILE */

/* Tablet Fix */
@media (min-width: 768px) and (max-width: 1024px) {

    .grid-tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

      .logo-track {
        justify-content: flex-start;
        width: max-content;
        animation: scroll 18s linear infinite;
    }


      /*--.card-image img {
        max-width: 100%;
        object-fit: cover;
        height: 150px;
    } */
    .card-content {
    padding: 8px;
    text-align: left;
}
.card-img img {
        width: 100%;
        display: block;
        transition: .4s;
        height: 150px;
        object-fit: cover;
    }
    .card-content h3
 {
    margin-bottom: 10px;
    font-size: 19px;
}
  .why-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
      .business-grid
 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .hs-dual-wrap{
  grid-template-columns:1fr 1fr !important;
}
button.hs-search-btn
 {
    position: relative;
    right: 24px;
}
.hs-percent {
    position: absolute;
    right: 50px;
    bottom: 40px;
}
.cta-right
 {
    display: flex;
    gap: 12px;
    flex-direction: row !important;
    margin-top: 10px;
}
.cta-left p {
    font-size: 32px;
    color: #1d1d1d;
    margin: 0;
    width: 500px;
}
.review-track{
  gap:16px;
}

.review-card-new{
  flex:0 0 calc(50% - 8px) !important;
  max-width:calc(50% - 8px) !important;
}

    .Price-sec h2 {
        font-size: 28px !important;
    }

    .Price-sec .usd {
        font-size: 14px !important;
    }

    .Price-sec .year {
        font-size: 12px !important;
    }

    .Price-sec {
        flex-wrap: wrap;
        justify-content: center;
    }
/* Center entire price block */


/* Dollar sign */
.Price-sec .usd {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

/* Main price */
.Price-sec h2 {
    margin: 0;
}

/* Monthly text */
.Price-sec .year {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #fff;
}
}

/* Mobile responsive */
@media (max-width: 768px) {

    .tpl-knowledgebasearticle-left.col-lg-4.col-xl-3 {
    max-width: 100% !important;
}

    .card-body.extra-padding h1
 {
    font-size: 32px !important;
}

    .section-title {
    font-size: 32px;
    font-weight: 500;
}
section.hosting-pricing-section {
    width: 100%;
    padding: 50px 0;
    max-width: 1344px;
    margin: 0 auto;
}
    .tpl-viewannouncement {
    display: block !important;
}
.tpl-viewannouncement-left.col-lg-4.col-xl-3
 {
    max-width: 100% !important;
}
    .tpl-knowledgebasecat {
    display: block;
    width: 100%;
    max-width: 1344px;
    margin: 0 auto;
}
.tpl-knowledgebasecat   .tpl-knowledgebasecat-left.col-lg-4.col-xl-3
 {
    max-width: 100% !important;
}
    .Customers-hero {
    padding: 80px 40px;
    overflow: hidden;
    max-width: 1344px;
    margin: 0 auto;
    box-shadow: 0 5px 100px #643fcce0;
    border-radius: 2rem;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    background: #4519c2;
}
.card-image img {
    max-width: 100%;

}
.card-img img {
    width: 100%;
    display: block;
    transition: .4s;
   
}
.review-nav
 {
    width: auto;
    display: flex;
}
.business-hosting {
    padding: 0px 0;
    text-align: center;
}
.value-head h2 {
    font-size: 32px;
    font-weight: 500;
}
.migrate-title {
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.value-wrapper {
    width: 100%;
    padding: 100px 0;
    margin-top: 50px;
    margin-bottom: 50px;
}

.why-section {
    padding: 50px 0px;
}
    .cta-strip {
       
        margin: 0px auto !important;
        flex-direction: column;
    }
.migrate-sec {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-image: url(/templates/twenty-one-child/img/ppt-v2.png);
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 50px;
    background-size: cover;
}
  .badge-row{
  display:grid !important;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

/* FULL WIDTH BADGES */
.badge:nth-child(1),
.badge:nth-child(2){
  grid-column:1 / -1;   /* BETTER THAN span 2 */
}

/* 2 IN ROW */
.badge:nth-child(3),
.badge:nth-child(4),
.badge:nth-child(5),
.badge:nth-child(6){
  grid-column:auto;
}

/* TEXT WRAP FIX */
.badge{
  white-space:normal !important;
  word-break:break-word;
  text-align:center;
  height:auto !important;
  padding:12px 10px !important;
  line-height:1.3;
}

 


.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
    flex-direction: column;
}
.hero-content
 {
    flex: 1;
    padding: 0 0 0 0px;
}
    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-direction: row !important;
                justify-content: center;
    }
        .hs-percent {
        right: 20px;
        bottom: 20px;
        font-size: 40px;
        padding: 3px 8px !important;
    }
    
    .footer-container {
    width: 100%;
    max-width: 1344px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 60px;
}
/* HERO STACK */
.hero-container{
  flex-direction:column !important;
  gap:30px !important;
}

/* LEFT FULL */
.hero-content{
  width:100% !important;
  padding:0 !important;
  text-align:center;
}

/* IMAGE FULL WIDTH */
.hero-image{
  width:100% !important;
}

/* REMOVE RIGHT ALIGN */
.vd_link{
  justify-content:center !important;
  padding:0 !important;
}

/* IMAGE FULL */
.hero-image img{
  width:100% !important;
  height:auto;
  display:block;
  border-radius:24px;
}
.hero-content p {
    font-size: 20px;
    color: #1c1819;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 40px;
    font-family: "Pathway Extreme", sans-serif;
}
/* CENTER PLAY BTN */
.play-button{
  top:50% !important;
  left:50% !important;
  transform:translate(-50%,-50%) !important;
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
    .cta-left p {
       
        text-align: center;
    }
  .cta-left img {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    object-fit: contain;
}
.payment-images {
    display: flex;
    gap: 0px !important;
    justify-content: space-between;
}
.hs-dual-sec
 {
    padding: 0px 0;
}


   #order-standard_cart .sidebar-collapsed
 {
    margin-top: 20px;
    padding: 0px !important;
    border-radius: 4px;
}

    .tpl-clientregister {
    width: 1344px;
    max-width: 100%;
    display: block !important;
}
.tpl-clientregister-left.col-lg-4.col-xl-3 {
    width: 100% !important;
    max-width: 100% !important;
}

    #registration {
        padding: 40px 0px !important;
    }
#registration form
 {
    width: 100% !important;
    max-width: 100% !important;
}
    .tpl-knowledgebase {
    width: 1344px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    justify-content: center;
     padding-left: 20px;
    padding-right: 20px;
}
.tpl-knowledgebase-left.col-lg-4.col-xl-3
 {
    max-width: 100% !important;
    width: 100%;
    padding: 0px;
}
.tpl-knowledgebase-right.col-lg-8.col-xl-9.primary-content
 {
    max-width: 100%;
        padding: 0px;

}
.card.d-block.d-md-none.bg-light
 {
    background: linear-gradient(135deg, #5b2be0, #3b1bb3);
    color: #fff;
    border-radius: 8px;
}

    .tpl-announcements {
    width: 1344px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}
.tpl-announcements-left.col-lg-4.col-xl-3
 {
    width: 100%;
    max-width: 100% !important;
    padding: 0px;
}
.tpl-announcements-right.col-lg-8.col-xl-9.primary-content
 {
    max-width: 100%;
        padding: 0px;

}

.custom-left-sidebar.card-sidebar {
    background: linear-gradient(135deg, #5b2be0, #3b1bb3);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.announcement.cs_container h1 a
 {
    font-size: 32px;
}
    .cs_container{
        padding: 0 16px !important;
        max-width: 1376px !important;
    }

    .banner_glb.hero{
        padding: 120px 16px 40px;
    }

    
    .wrapercss h1{
    font-size: 32px;
  }

  .wrapercss p{
    font-size: 16px;
    margin-bottom: 20px !important;
  }

    .logo-track {
        justify-content: flex-start;
        width: max-content;
        animation: scroll 18s linear infinite;
    }
   
    /* show duplicates for loop */
.logo-track img{
  display:block !important;
}

.logo-track{
  justify-content:flex-start;
  width:max-content;
  animation:scroll 18s linear infinite;
}

.logo-track img{
  margin-right:40px;
}

/* left fade */
.logo-slider::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:60px;
  height:100%;
  z-index:2;
  background:linear-gradient(to right,#f5f3f1,transparent);
}

/* right fade */
.logo-slider::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:60px;
  height:100%;
  z-index:2;
  background:linear-gradient(to left,#f5f3f1,transparent);
}

    .header{
        padding: 12px 16px 0 16px;
    }

    .mobile-menu{
        left: 16px;
        width: calc(100% - 32px);
    }

	.value-right
 {
    flex: 0 0 30%;
    margin-top: 20px;
}

		.review-card-new{
	flex:0 0 100%;
	max-width:100%;
	}
	.review-top{
	flex-direction:column;
	gap:10px;
	align-items:flex-start;
	}
.business-grid{
grid-template-columns:1fr;
}
		.value-head{
	flex-direction:column;
	}

	.value-left,
	.value-right{
	flex:100%;
	}

	.announcement-content {
		padding: 0 20px;
	}

	.announcement-text {
		font-size: 12px;
	}

	/* .header {
		padding: 12px 20px;
	}

	.nav {
		display: none;
	}

	.hdrcontainer {
		padding: 8px 16px;
	}

	.logo {
		font-size: 20px;
	}

	.logo img {
		max-height: 25px;
	}

	.header-right {
		gap: 8px;
	}

	.login,
	.btn-primary {
		padding: 8px 12px;
		font-size: 14px;
	} */

	body {
		padding-top: 98px;
	}

	.hero-left,.hero-right{
		width:100%;
		text-align:center;
		}
		.hero-left h1{
		font-size:30px;
		}
		.float-img{
		width:100%;
		}
		.why-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}
/* STACK CARDS */

.hs-dual-wrap{
    grid-template-columns:1fr;
    gap:20px;
}

/* CARD PADDING SMALL */

.hs-card{
    padding:24px;
    border-radius:18px;
}

/* HEADING SMALL */

.hs-card h3{
    font-size:22px;
}

/* DESCRIPTION SMALL */

.hs-desc{
    font-size:13px;
}

/* PRICE TEXT */

.hs-price{
    font-size:18px;
}

/* % BADGE FIX */

.hs-percent{
    right:20px;
    bottom:20px;
    font-size:40px;
    padding:12px 18px;
}

/* DOMAIN SEARCH FULL */

.hs-search-wrap{
    width:100%;
}

/* INPUT SMALL */

.hs-search-wrap input{
    padding:10px;
    font-size:14px;
}

/* BUTTON AUTO */

.hs-search-btn{
    padding:10px 18px;
    font-size:13px;
}

/* BADGE FIX */

.hs-badge{
    font-size:11px;
    padding:4px 10px;
}
.grid-tab {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
.cta-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
    background: #f2eeec;
    border-radius: 16px;
    width: 100%;
    max-width: 1344px;
    margin: 40px auto;
    flex-direction: column;
}
.cta-left p {
    font-size: 17px;
    color: #1d1d1d;
    margin-bottom: 23px;
}
.hero-content h1 {
    font-size: 40px;
}
.why-title {
    text-align: center;
    font-size: 33px;
    font-weight: 500;
    margin-bottom: 70px;
    color: #1e1e1e;
}
.business-title
 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #1b1b2f;
}
.payment-images {
    display: flex;
    gap: 1px;
    justify-content: stretch;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.cta-right {
    flex-direction: column;
}
.footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }


  .footer-inner{
    width:100% !important;
    max-width:100% !important;
    padding:18px 20px;

  }

  .footer-copy{
    width:100% !important;
    max-width:100% !important;
          margin-bottom: 20px;
  }


  .footer-inner{
    flex-direction:column;
    align-items:center;
    gap:18px;
    text-align:center;
  }

section.btn_scl {
   
    gap: 20px;
    flex-direction: column;
}

}

@media (max-width: 767px) {

.hosting-pricing-section .row > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
     
     .modern-card,
    .modern-card.featured {
        transform: none !important;
    }
   .business-hosting-section   .section-title {
    font-size: 32px;
    font-weight: 700;
        text-align: center;
}

    .business-hosting-section .row {
        display: flex;
        flex-direction: column;
    }

    .business-hosting-section .col-md-6,
    .business-hosting-section .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

}

@media (max-width: 576px) {

    .unique-power-section .unique-header h2 {
        font-size: 32px;
    }

    .business-hosting-section {
        padding: 50px 0;
    }

    .hosting-header {
        padding: 20px 15px 40px;
        border-bottom-left-radius: 60px 25px;
        border-bottom-right-radius: 60px 25px;
    }

    .hosting-header h4 {
        font-size: 16px;
    }

    .hosting-features {
        font-size: 14px;
        line-height: 1.6;
    }

    .hosting-body .btn-primary {
        width: 100%;
        height: 48px;
    }
}

@media(max-width:480px){

    .tab-switch {
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
  }

    .mobile-menu{
        height: calc(100vh - 80px) !important;
    }

.hs-percent{
    transform:rotate(-12deg) scale(.8);
}

.hs-card{
    padding:20px;
}

.hs-card h3{
    font-size:20px;
}

}
/* HEADER code End */

/* New FOoter CSS */

.footer_{
  background:#f1ede8;
  border-top:1px solid #e2ddd7;
  padding:70px 20px 0px 20px;
}

.footer-container{
      width:100%;
  max-width:1344px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:60px;
}

.footer-column h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:20px;
  color:#4519c2;
  font-family:'Pathway Extreme', sans-serif;
}

.footer-column ul{
  list-style:none;
}

.footer-column ul li{
  margin-bottom:12px;
  text-align:left;
}

.footer-column ul li a{
  text-decoration:none;
  color:#212529;
  font-size:14px;
  transition:all .2s ease;
  font-family:'Pathway Extreme', sans-serif;
}

.footer-column ul li a:hover{
  color:#4519c2;
}



.footer-column ul li a {
  display: inline-block;   
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}


.footer-column ul li a:hover {
  color:#4519c2;
}

.footer-column ul li a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#4519c2;
  transition:width 0.3s ease;
}

.footer-column ul li a:hover::after {
  width:100%;
}


.footer-bottom{
      width:100%;
  max-width:1344px;
  margin:50px auto 0;
  padding-top:20px;
  border-top:1px solid #ddd6cf;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:#212529;
}




.footer-inner{
    width:100%;
  max-width:1344px;
  margin:0 auto;
  background:#4519c2;       
     padding: 8px 16px 8px 20px;
  border-radius:8px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Logo */

.footer-logo img{
  height:48px;
}



.footer-social{
  display:flex;
  gap:8px;
}

button.btn.advance_btn {
    background: white !important;
    padding: 11px 16px;
    border-radius:8px !important;
}

button.btn.advance_btn:hover{
    background:none !important;
    color:white;
    border:1px solid white;
    border-radius:8px;
}


.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    transition: 0.3s ease;
    font-family: 'Pathway Extreme', sans-serif;
}

.footer-social a:hover{
  background:#ffffff;
  color:#000;
  border-radius:8px;
}



.footer-copy {
   
    padding: 20px 0px;
    font-size: 13px;
    color: #212529;
    font-family: 'Pathway Extreme', sans-serif;
    width: 100%;
    max-width: 1344px !important;
    margin: 0 auto;
        text-align: center;
}
section.btn_scl {
    display: flex;
    gap: 25px;
    align-items: center;
}

  

/* NEW Footer Css Ended here */



/* Announcement CSS  Staretd here*/

/*#main-body .cstmrow {
    /* display: flex;
    align-items: flex-start;
    justify-content :center;
    width:100%;
    max-width:1344px;
    margin:0 auto; */
       /* margin-top: 150px; */

#main-body .col-lg-4,
#main-body .col-xl-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

/* Content column width */
/* #main-body .primary-content {
    flex: 0 0 66.666%;
    max-width: 66.666%;
} */

/* Make card full width inside content */
.primary-content .card {
    width: 100%;
    border-radius: 8px;
}



/* ===== Sidebar Card Style ===== */



.custom-left-sidebar .list-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}



.custom-left-sidebar.card-sidebar {
    background: linear-gradient(135deg, #5b2be0, #3b1bb3);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Header */
.custom-left-sidebar .card-header {
    background: transparent;
    border-bottom: none;
    padding: 18px 20px;
}

.custom-left-sidebar .card-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

/* Chevron icon */
.custom-left-sidebar .card-minimise {
    color: #ffffff;
}

/* List container */
.custom-left-sidebar .list-group {
    background: transparent;
}

/* List item */
.custom-left-sidebar .list-group-item {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius:8px;
}

/* Icon */
.custom-left-sidebar .sidebar-menu-item-icon {
    color: #ffffff;
    opacity: 0.9;
}

/* Hover par icon black */
.custom-left-sidebar .list-group-item:hover .sidebar-menu-item-icon {
    color: #000000;
}

/* Active par icon black */
.custom-left-sidebar .list-group-item.active .sidebar-menu-item-icon {
    color: #000000;
}
/* Hover */
.custom-left-sidebar .list-group-item:hover {
    background: #fff !important;
    padding-left: 24px;
    Color:#000 !important;
}

/* Active item */
.custom-left-sidebar .list-group-item.active {
    background: #fff;
    font-weight: 600;
     Color:#000 !important;
}

/* Badge */
.custom-left-sidebar .badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Remove default card spacing */
.sidebar .card {
    margin-bottom: 20px;
}

/* Announcement css ended here */



/* Login Page css started here */
/* ===============================
LOGIN PAGE CSS (Scoped Properly)
=============================== */

/* Add spacing top & bottom */
form.login-form{
    padding-bottom: 100px;
}

/* Card Style (only inside login form) */
form.login-form .card{
    border-radius:16px !important;
    background:#f5f3f1 !important;
    box-shadow:0 8px 40px rgba(0,0,0,.05) !important;
}
button#login
 {
    background: #4519c2;
    display: block;
}
/* Title */
form.login-form .card-body h6{
    font-size:32px !important;
    text-align:center;
    margin-bottom:8px;
}

/* Subtext */
form.login-form .card-body p{
    text-align:center;
    color:#777;
    margin-bottom:25px;
}

/* Inputs */
form.login-form .form-control{
    height:48px !important;
    border-radius:10px !important;
    border:1px solid #d6d3d1 !important;
    padding:12px 14px !important;
}

/* Password toggle */
form.login-form .pw-toggle-btn{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    color:#555;
}

/* Forgot password */
form.login-form .forgot-pass{
    font-size:13px;
    display:block;
    margin-top:8px;
    color:#4b5563;
}

/* Login button */
form.login-form .login-btn{
    width:100%;
    height:48px;
    border-radius:10px !important;
    background:linear-gradient(90deg,#1c1819,#000);
    color:#fff !important;
    border:none !important;
    margin-top:15px;
}

/* Mobile side padding */
@media (max-width: 767px){
    form.login-form{
        padding-left:20px;
        padding-right:20px;
        padding-top:60px;
        padding-bottom:60px;
    }
}

/* Login page css ended here */


/* Orderfroms css started here */

/* ===== Page Background ===== */
.cardssd {
    background: #f6f7fb;
    padding: 60px 0;
}

#order-standard_cart {
    font-family: "Pathway Extreme", sans-serif;
}

/* ===== Page Heading ===== */
.header-lined h1 {
    font-family: "Reckless-Neue" !important;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

/* ===== Hide Old Borders ===== */
.view-cart-items-header {
    display: none;
}

/* ===== Cart Item Card ===== */
.view-cart-items .item {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 25px 30px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.view-cart-items .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ===== Item Title ===== */
.item-title {
    font-weight: 600;
    font-size: 18px;
    color: #111;
    display: block;
}

.item-group {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
    display: block;
}

.item-domain {
    font-size: 14px;
    color: #4519c2;
    margin-top: 6px;
    display: block;
}

/* ===== Price Section ===== */
.item-price {
    text-align: right;
}

.item-price span:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    display: block;
}

.item-price .cycle {
    font-size: 13px;
    color: #777;
}

/* ===== Remove Button ===== */
.btn-remove-from-cart {
    color: #999;
    transition: 0.3s;
}

.btn-remove-from-cart:hover {
    color: #ff4d4d;
}

/* ===== Empty Cart Button ===== */
.empty-cart {
    margin-top: 20px;
    text-align: right;
}

#btnEmptyCart {
    color: #999;
}

#btnEmptyCart:hover {
    color: #ff4d4d;
}

/* ===== Order Summary Sidebar ===== */
.order-summary {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-family: "Reckless-Neue" !important;
    font-size: 28px;
    margin-bottom: 30px;
}

/* ===== Summary Rows ===== */
.summary-container div {
    font-size: 15px;
    margin-bottom: 12px;
}

.total-due-today {
    margin-top: 25px;
    padding: 25px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4519c2, #6a3df0);
    color: #fff;
    text-align: center;
}

.total-due-today .amt {
    font-size: 30px;
    font-weight: 700;
    display: block;
}

/* ===== Checkout Button ===== */
.btn-checkout {
    background: #4519c2;
    border: none;
    border-radius: 12px;
    padding: 14px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-checkout:hover {
    background: #2f0ea3;
    transform: translateY(-2px);
}

/* Continue Shopping */
.btn-continue-shopping {
    font-size: 14px;
    color: #777;
}

.btn-continue-shopping:hover {
    color: #4519c2;
}

/* ===== Promo Box ===== */
.view-cart-tabs {
    margin-top: 40px;
}

.tab-pane {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* ===== Input Styling ===== */
.form-control {
    border-radius: 10px;
    height: 45px;
    border: 1px solid #eaeaea;
}

.form-control:focus {
    border-color: #4519c2;
    box-shadow: 0 0 0 2px rgba(69,25,194,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .order-summary {
        margin-top: 40px;
        position: relative;
        top: 0;
    }
    .tpl-knowledgebasearticle
 {
    padding-bottom: 0px;
}
.tpl-announcements
 {
    padding-bottom: 0px;
}
.tpl-knowledgebase {
    padding-bottom: 0px;
}
.tpl-knowledgebasecat
 {
    padding-bottom: 0px;
}
}



.rowsd .secondary-cart-body{
    margin-top: 20px !important;
}

.rowsd .secondary-cart-body,
.rowsd .secondary-cart-sidebar{
    width: 100% !important;
    padding: 0 !important;
}

.rowsd .secondary-cart-sidebar .order-summary{
    position: unset !important;
    margin: 0 !important;
}


















.cardssd {
    min-height: 100vh;
    background: #f5f3f1;
    padding: 20px 0px 100px;
}

#order-standard_cart {
    padding: 0 !important;
}

#order-standard_cart .cstmrow {
    display: flex;
    align-items: stretch;
    gap: 0 !important;
}

#order-standard_cart .cart-sidebar {
    width: 350px !important;
    height: calc(100vh - 5vh) !important;               
    position: sticky !important;
    top: 20px !important;                     

    background: #ffffff !important;
    padding: 30px 25px !important;
    box-shadow: 8px 0 30px rgba(0,0,0,0.04) !important;
    font-family: "Pathway Extreme", sans-serif !important;
    border-radius: 12px !important;
    display: flex;
    flex-direction: column;

    overflow-y: auto;           
    overflow-x: hidden;
}

.cart-sidebar::-webkit-scrollbar {
    width: 6px;
}

.cart-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-bg-color);
    border-radius: 10px;
}

.cart-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

/* Panel Card (Dropdown Box) */
.cart-sidebar .panel.card {
    background: var(--primary-bg-color) !important;
    border: none !important;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.cart-sidebar .panel-heading {
    background: var(--primary-bg-color) !important;
    border: none !important;
    padding: 16px 18px;
}

.cart-sidebar .panel-title {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}


.cart-sidebar .collapsable-card-body {
    padding: 8px 10px 15px 10px;
     overflow-y: hidden;
}

.cart-sidebar .collapsable-card-body:hover {
    overflow-y: auto;
}

.cart-sidebar .collapsable-card-body::-webkit-scrollbar {
    width: 4px; /* very thin */
}

.cart-sidebar .collapsable-card-body::-webkit-scrollbar-track {
    background: transparent;
}

.cart-sidebar .collapsable-card-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.cart-sidebar .collapsable-card-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Hide scrollbar arrows */
.cart-sidebar .collapsable-card-body::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}


.cart-sidebar .list-group-item {
    margin: 6px 12px;
    padding: 10px 15px;
    font-size: 14px;
    border: none !important;
    transition: 0.25s ease;
    color: #fff !important;
    background: transparent !important;
    border-radius: 8px !important;
}

.cart-sidebar .list-group-item:hover {
    color: #1c1819 !important;
    background: #fff !important;
}

.cart-sidebar .list-group-item i {
    margin-right: 8px;
    font-size: 13px;
}

.cart-sidebar .panel,
.cart-sidebar .panel-body {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}


#order-standard_cart .cart-body {
    flex: 1;
    padding: 0px 0 0 40px !important;
}

#order-standard_cart .cart-body .header-lined h1{
    font-family: "Reckless-Neue" !important;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    color: #1c1819;
    margin-bottom: 0 !important;
    text-align: start;
}


@media (max-width: 1024px) {

   
  #order-standard_cart .cstmrow{
    flex-direction: column !important;
  }

#order-standard_cart .cart-body{
    padding: 30px 0 0 0 !important;
}

#order-standard_cart .cart-sidebar{
    width: 100% !important;
    position: relative !important;
    height: auto !important;
    padding: 20px 20px 4px 20px !important;
    top: 0 !important;
}

#order-standard_cart .cart-body .header-lined h1{
    font-size: 32px;
}

}


@media (max-width: 768px) {

    .tpl-clientregister-left.col-lg-4.col-xl-3 {
    max-width: 100% !important;
}
.col-lg-8.col-xl-9.primary-content
 {
    max-width: 100% !important;
}
 
#order-standard_cart .cart-body .header-lined h1{
    font-size: 28px;
}


.sub_div_wrp{
    padding: 60px 20px !important;
}


}





/* Order forms css ended here  */