@import url("https://fonts.googleapis.com/css2?family=Anek+Bangla:wdth,wght@81.9,100..800&display=swap");
body {
  font-family: "Anek Bangla", sans-serif;
  background-color: #f1f5f9;
}
.container {
  width: 1100px;
}
.navbar {
  background: #fff;
}
.navbar-brand {
  color: white !important;
}
a.navbar-brand > img {
  width: 104px;
}
.footer {
  background: linear-gradient(90deg, #040c18, #133022);
  color: white;
  padding: 20px 0;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Sticky Menu Styles */
#stickyMenu {
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

#stickyMenu.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

/* Animation for sticky menu appearance */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Optional: Style adjustments for sticky state */
#stickyMenu.sticky .navbar-brand img {
  max-height: 40px; /* Make logo slightly smaller when sticky */
  transition: max-height 0.3s ease;
}

/* Ensure navbar has a background color */
#stickyMenu {
  background: linear-gradient(90deg, #afafaf, #ffffff, #afafaf);
  padding: 5px 0px;
}

/* Optional: Add backdrop blur effect for modern look */
#stickyMenu.sticky {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}
.hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at center,
    rgb(0 37 13 / 90%) 0%,
    rgba(2, 6, 23, 1) 100%
  );
  top: -4px;
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(rgb(111 246 59 / 30%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(139 195 74 / 29%) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 60px 0px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 7px;
  background: linear-gradient(135deg, #ffeba3, #ffffff, #ffeba3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.5));
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  animation: fadeInUp 1s ease-out 1s both;
}

.blur-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.blur-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(59 246 75 / 80%),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.blur-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(1deg, #25636c 0%, #3b956f 60%, #14a058 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  margin: 0px auto;
  margin-bottom: 20px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgb(61 246 59 / 25%);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.card-description {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta-button {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(1deg, #25636c 0%, #3b956f 60%, #14a058 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgb(59 246 77 / 40%);
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgb(255 120 0 / 82%);
  border-radius: 50%;
  animation: float 6s infinite linear;
}

.particle:nth-child(odd) {
  background: rgb(25 255 0 / 60%);
  animation-duration: 8s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}
a.navbar-brand {
  box-sizing: border-box;
  padding: 10px;
  background: linear-gradient(90deg, #040c18, #133022);
  border-radius: 10px;
}
a.loginmebtn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 6px 22px;
  background: linear-gradient(90deg, #040c18, #133022);
  color: #fff;
  gap: 5px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 7px;
}
.dubblecolups_navmenus {
  display: flex;
  align-items: center;
  justify-content: right;
  width: 100%;
  gap: 10px;
}
.header_topMain_wrapper {
  background: linear-gradient(90deg, #040c18, #133022);
  box-sizing: border-box;
  padding: 5px 0px;
}
.topleft_details > ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 0px;
  padding: 0px;
  gap: 20px;
}
.topSocial_wrapper {
  display: flex;
  align-items: center;
  justify-content: right;
  color: #fff;
  font-size: 14px;
}
.topSocial_wrapper > ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  padding: 0px;
  margin: 0px;
  gap: 12px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #00431d;
}
.topleft_details > ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 7px;
  font-size: 14px;
  color: #b7b7b7;
}
.topSocial_wrapper > ul li a {
  font-size: 14px;
  color: #b7b7b7;
}
.topleft_details > ul li a i {
  color: #ffffff;
}
.topleft_details > ul li a:hover {
  color: #fff;
}
.topSocial_wrapper > ul li a:hover {
  color: #fff;
}
span.mainTitleDefarent {
  background: linear-gradient(180deg, #ffe8a5, #ff5e00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.herocardWrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 20px;
  margin-top: 30px;
}
.customHero_readymate {
  box-sizing: border-box;
  padding: 20px;
  background: linear-gradient(89deg, #00000038, #ffffff12);
  border-radius: 10px;
  backdrop-filter: blur(2px);
  position: relative;
  box-shadow: 0px 0px 13px 0px #0e211e;
}
a.cardHeroitems {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  padding: 10px 15px;
  overflow: hidden;
  border: 1px solid #ffffff2e;
  border-radius: 10px;
  position: relative;
  transition: all 0.1s ease-in;
}
a.cardHeroitems > img {
  width: 100px;
}
.customHeroCard_Wrapper {
  width: 100%;
  display: grid;
  gap: 20px;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
a.cardHeroitems > img {
  width: 66px;
  margin-bottom: 5px;
}

.customHero_readymate > span {
  position: absolute;
  top: -15px;
  left: 193px;
  font-weight: 500;
  box-sizing: border-box;
  padding: 3px 15px;
  font-size: 14px;
  background: linear-gradient(45deg, #ff8d388f, #fcc07c26);
  backdrop-filter: blur(40px);
  border-radius: 10px;
  box-shadow: 0px 0px 0px 1px #ff8d388f;
}
span.cardTitleleft,
span.cardTitleright {
  font-size: 26px;
  margin-bottom: 20px;
  display: block;
}
a.cardHeroitems:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(183deg, #c1d7ca00, #ffffff38);
  z-index: -1;
}
a.cardHeroitems:hover {
  transform: translateY(-10px);
}
span.cholsetext {
  margin-top: 20px;
  display: flex;
  text-align: center;
  font-size: 25px;
  color: #cddc39;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.counter-wrapper {
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.rightHerowrapper_section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}
span.cardTitleleft > span {
  background: linear-gradient(180deg, #ffe8a5, #8bc34a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.customHero_readymateMain > ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  text-align: left;
  font-size: 18px;
  font-weight: 300;
}
.customHero_readymateMain > ul li {
  position: relative;
  padding-left: 20px;
}
.customHero_readymateMain > ul li:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  width: 15px;
  height: 15px;
  background: #8bc34a52;
  border-radius: 50%;
  box-shadow: 0px 0px 6px -1px #8bc34a;
}
.customHero_readymateMain > ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #8bc34a9c;
  border-radius: 50%;
}
.counter-wrapper > span {
  color: #fff;
  font-weight: 500;
}
.dubblecolups_navmenus > ul li ul {
  background: linear-gradient(90deg, #040c18, #133022) !important;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}
.dubblecolups_navmenus > ul li ul li a {
  color: #fff !important;
  box-sizing: border-box;
  padding: 7px 10px !important;
}
.dubblecolups_navmenus > ul li ul li a:hover {
  color: #fff !important;
  background: linear-gradient(268deg, #8bc34a3b, transparent) !important;
}
.footer_cradits {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
}
.footer_cradits > ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 15px;
  margin: 0px;
  padding: 0px;
}
.footer_cradits > p {
  margin: 0px;
}
.footer_cradits > ul li a {
  text-transform: uppercase;
  color: #fff;
}
.widgets_card {
  width: 100%;
  text-align: left;
}
.widgets_card > img {
  width: 150px;
}
.footerMaingrid_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  box-sizing: border-box;
  padding: 30px 0px;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff12;
}
.detailsFotter_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detailsFotter_list > span {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 6px;
}
.widgets_card > p {
  font-size: 18px;
  color: #d9d9d9;
}
.productsCards_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.products_thubmnailWrapper > img {
  width: 100%;
}
.products_thubmnailWrapper {
  width: 100%;
  position: relative;
}
.productsDetails_wrapper {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  padding: 7px 14px;
  position: relative;
}
.prodcutInfo_table {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #000000;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 15px;
}
span.product_rowDetails {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 3px 0px;
  border-bottom: 1px dashed #ffffff38;
}
.prodcutAction_btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
}
.prodcutAction_btn > a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  background: red;
  box-sizing: border-box;
  padding: 6px 20px;
  border-radius: 6px;
  width: 100%;
  justify-content: center;
}
a.homeBuy_noneBtn {
  background: linear-gradient(91deg, #a17900, #ffeb35, #a17900);
  font-size: 18px;
  color: #000;
  cursor: pointer;
  border: 2px solid #aa8405;
}
a.homeDemo_noneBtn {
  background: linear-gradient(91deg, #a9a9a9, #ffffff, #a9a9a9);
  font-size: 18px;
  color: #000;
  cursor: pointer;
  border: 2px solid #a9a9a9;
}
.widgets_card > h3 {
  font-size: 22px;
  border-bottom: 1px dashed #ffffff33;
  padding-bottom: 5px;
}
.widgets_card > ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widgets_card > ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #aba7a7;
}
.widgets_card > ul li a > i {
  color: #43c300;
  font-size: 10px;
}
.widgets_card > ul li a:hover {
  color: #fff;
}
.footerSupport_cardWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-sizing: border-box;
  padding: 5px;
  border: 1px dashed #ffffff2e;
  border-radius: 6px;
  column-gap: 10px;
}
.support_card {
  background: #ffffff0a;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px;
  width: 100%;
  border-radius: 6px;
  font-size: 18px;
}
.paymentMethod_wrapper {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 5px;
  background: #ffffff;
}
.paymentMethod_wrapper > img {
  width: 100%;
}
.priceingCard_wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0px;
    margin-bottom: 20px;
}
.pricingCard {
    width: 100%;
    background: linear-gradient(90deg, #272727, #161616, #272727);
    box-sizing: border-box;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}
span.prcieing_Title {
    background: #f1f5f9;
    font-size: 18px;
    color: #000;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 17px;
    border-radius: 15px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translate(-50%, -50%);
}
span.prcieing_Title> span {
    background: linear-gradient(91deg, #a17900, #ffeb35, #a17900);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 76%;
    z-index: -1;
    transform: translate(-50%, -50%);
}
span.prcieing_Title:after {
    content: '';
    position: absolute;
    background: transparent;
    width: 21px;
    height: 21px;
    top: 5px;
    left: -21px;
    border-radius: 50%;
    box-shadow: 6px -11px 0px #f1f5f9;
}

span.prcieing_Title:before {
    content: '';
    position: absolute;
    background: transparent;
    width: 21px;
    height: 21px;
    top: 5px;
    right: -20px;
    border-radius: 50%;
    box-shadow: -5px -12px 0px #f1f5f9;
}
.prcoecardHeader {
    width: 100%;
    text-align: center;
    margin-top: 26px;
    font-size: 26px;
    color: #CDDC39;
    letter-spacing: 1px;
}
span.pricingProduct> del {
    font-size: 19px;
    opacity: 0.4;
}
.features_details {
    box-sizing: border-box;
    padding: 10px 0px;
    margin: 10px 0px;
    border-top: 1px dashed #ffffff3d;
}
.features_details> ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    color: #fff;
    font-size: 17px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.features_details> ul li{
    position: relative;
    padding-left: 23px;
}
.features_details> ul li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 3px;
    width: 9px;
    height: 9px;
    background: #8bc34a9c;
    border-radius: 50%;
}
.features_details> ul li:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 0px;
    width: 15px;
    height: 15px;
    background: #89ff0052;
    border-radius: 50%;
    box-shadow: 0px 0px 6px -1px #89ff00;
}
a.variantproductbuy {
    font-size: 18px;
    color: #000;
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    padding: 11px 10px;
    text-decoration: none;
    text-align: center;
    position: absolute;
    border-radius: 15px;
    width: 83%;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f1f5f9;
}
.features_details {
    box-sizing: border-box;
    padding: 10px 0px;
    margin: 10px 0px;
    border-top: 1px dashed #ffffff3d;
    margin-bottom: 30px;
}
.single_productDetails_wrapper {
    margin-top: 20px;
    width: 100%;
    margin-bottom: 20px;
}
.productSingle_thubmnail {
    width: 100%;
    overflow: hidden;
}
.productSingle_thubmnail> img {
    width: 100%;
    border-radius: 15px;
}
a.viewLivedemo_Btn {
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    padding: 7px 15px;
    background: linear-gradient(89deg, #132f22, #074300, #132f22);
    color: #ffffff;
    text-decoration: none;
    font-size: 19px;
    border-radius: 5px;
}
.productSingle_featuresBox {
    background: #ffffff;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 5px;
}
.metaProductbar {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    margin-bottom: 10px;
}
span.product_date {
    color: #0600ff;
    font-weight: 500;
}
h1.single_productTitle {
    font-size: 30px;
    margin-bottom: 3px;
}
.productSingle_featuresBox> ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 18px;
}
.productSingle_featuresBox> ul li {
    display: grid;
    grid-template-columns: 1fr 0fr 2.6fr;
    gap: 10px;
}
span.pDetailb {
    font-weight: 500;
    color: #434343;
}
.priceDetails_Meta> ul {
    list-style-type: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
}
.priceDetails_Meta> ul li {
    display: flex;
    background: #ffffff;
    box-sizing: border-box;
    padding: 3px 10px;
    font-size: 17px;
    border-radius: 5px;
    align-items: center;
    gap: 5px;
}
span.priceColorsp {
    font-weight: 500;
    color: #006938;
}
.singlep_viewNotebtn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
span.buyingguide_notice {
    font-weight: 500;
    font-size: 17px;
    color: #e94300;
}
.pricingCard:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgb(255 255 255 / 6%) 2px, transparent 2px);
    background-size: 25px 25px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
.bredcrumb_wrapper> ul {
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    gap: 5px;
}
.bredcrumb_wrapper> ul li a {
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    color: #3b3b3b;
}
.bredcrumb_wrapper {
    width: 100%;
    margin-top: 20px;
}
.bredcrumb_wrapper> ul li a:hover{
    color: blue;
}
.dubblecolups_navmenus> ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    color: #000;
    font-weight: 400;
}
.dubblecolups_navmenus> ul li a i {
    font-size: 14px;
    color: #122f21;
}
a.variantproductbuy:after {
    content: '';
    position: absolute;
    width: 96%;
    height: 78%;
    background: linear-gradient(91deg, #a9a9a9, #ffffff, #a9a9a9);
    border: 2px solid #afafaf;
    border-radius: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
a.variantproductbuy> span:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -23px;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    box-shadow: 4px 4px 0px #f1f5f9;
}
a.variantproductbuy> span:before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: -23px;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    box-shadow: -4px 4px 0px #f1f5f9;
}
a.variantproductbuy:hover:after {
    background: linear-gradient(91deg, #790000, #ff0000, #790000);
    border: 2px solid #920000;
}
a.variantproductbuy:hover{
    color: #fff;
}
.checkout_infoWrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.orderSummery_mainWrapper {
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    background: #fff;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
}

.card-itemsWrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
    padding: 10px 0px;
    margin: 10px 0px;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}
.cart_items_card {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    gap: 5px;
}
button.remove-cart-item {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 14px;
    border-radius: 5px;
    color: red;
    background: #ffeaea;
    cursor: pointer;
}
.cards_itemsremovebtn {
    display: flex;
    align-items: center;
    justify-content: right;
}

span.orderSummer_title {
    font-weight: 500;
    font-size: 22px;
}
.card_btnsWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px 0px;
}
.card_btnsWrapper> a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    background: transparent;
    box-sizing: border-box;
    padding: 3px 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all 0.1s ease-in;
}
.card_btnsWrapper> a span {
    margin-left: 9px;
}
.card_btnsWrapper> a i{
  font-size: 13px;
}
.card_btnsWrapper> a:hover{
  background: #f0f0f0;
}
.total.totalAmount_wrapper {
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    background: #fff;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
    margin: 13px 0px;
}
.miniProduct_Invoice {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 17px;
}
.miniInvoice_row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}
.miniInvoice_row.finalAmount {
    background: #c0ff7c;
    box-sizing: border-box;
    padding: 4px 10px;
    border-radius: 5px;
}
span.minivoiceMaintext {
    font-weight: 600;
}
span.discountAmounttext{
    font-weight: 500;
    color: #ff0073;
}
form#coupon_form {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    overflow: hidden;
}
form#coupon_form> .form-group input {
    box-sizing: border-box;
    padding: 6px 15px;
    width: 50%;
    border: none;
    outline: none;
    background: transparent;
    color: #000;
}
form#coupon_form> .form-group button.cuoponsSubmit_btn {
    border: none;
    width: 103px;
    box-sizing: border-box;
    padding: 6px 0px;
    background: linear-gradient(90deg, #040c18, #133022);
    color: #e5e5e5;
}
form#coupon_form> .form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
p#coupon_message {
    text-align: left;
    margin-top: 3px;
    margin-left: 15px;
}
.checkOut_mainForm {
    width: 100%;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    background: #fff;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
}
.checkOut_formWrapper> div label {
    display: block;
    font-size: 17px;
    font-weight: 500;
}
.checkOut_formWrapper> div input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border: 2px solid #575757;
    border-radius: 5px;
}
.checkOut_formWrapper> div textarea#address {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    border: 2px solid #575757;
    border-radius: 5px;
}
.checkoutBtn_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}
button.checkOutbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 6px 22px;
    background: linear-gradient(90deg, #040c18, #133022);
    color: #fff;
    gap: 5px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 7px;
    border: none;
    outline: none;
    width: 100%;
}
.checkOut_formWrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 7px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}
.checkoutMain_wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 50px 0px;
}
.checkoutMain_wrapper> h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 35px;
    color: #122e22;
}
.loginCart_btn_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
a.checkoutCart {
    text-decoration: none;
    color: #797979;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
a.checkoutCart> i {
    font-size: 22px;
}
span#Countcart_Items {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    top: -9px;
    right: -10px;
    color: #000000;
}
.singIn_Mainwrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 60px 0px;
}
.singupNoticebar {
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
    background: linear-gradient(45deg, #871300, #b92b00, #871300);
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 20px;
}
.singinForm_check {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
}
div.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
div.login-form> .form-group label {
    font-size: 18px;
    margin-bottom: 5px;
}
button.loginGroups_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 6px 22px;
    background: linear-gradient(90deg, #040c18, #133022);
    color: #fff;
    gap: 5px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 7px;
    border: none;
    outline: none;
}
div.login-form> a {
    display: block;
    text-align: center;
    color: blue;
    font-size: 16px;
    cursor: pointer;
}
.singIn_Mainwrapper> h1{
    text-align: center;
    display: block;
    font-size: 35px;
}
.singleProducts_LeftMain {
    box-sizing: border-box;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0px 0px 11px -9px #000;
}
a.viewLivedemo_Btn.wanttoBuy {
    background: linear-gradient(89deg, #831e00, #d33100, #831e00);
    color: #ffffff;
}
.video-container {
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 11px -9px #000;
}



.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}



.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgb(255 255 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid #ff4757;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
    transition: border-color 0.3s ease;
}



.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.video-info {
    padding: 10px;
    background: #fff;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container {
        border-radius: 6px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        border-left: 18px solid #ff4757;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .video-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-icon {
        border-left: 15px solid #ff4757;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
    
    .video-info {
        padding: 15px;
    }
}

/* Animation for video load */
.video-container.loading .video-thumbnail {
    filter: blur(2px);
}
main.single_productsMaincontent {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 10px;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: 0px 0px 11px -9px #000;
}
a.SetupTutorials {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    background: #ffe0e0;
    box-sizing: border-box;
    padding: 5px 5px;
    border-radius: 6px;
    text-decoration: none;
    color: #ff005c;
    font-weight: 400;
}

a.SetupTutorials> i{
  font-size: 14px;
}
.updateLog-container {
    box-sizing: border-box;
    padding: 15px;
    background: #fff;
    margin-top: 20px;
    border-radius: 6px;
    position: relative;
}
.updateLog-container> h2 {
    position: absolute;
    top: -12px;
    left: 15px;
    font-size: 18px;
    background: #fff;
    box-sizing: border-box;
    padding: 2px 11px;
    border-radius: 10px;
}
.updateLog_cardWrapper> .update-item {
    box-sizing: border-box;
    padding: 10px 0px;
    margin-top: 10px;
    border-top: 1px dashed #ddd;
}
.update-item> h3 {
    font-size: 24px;
    margin: 0px;
}
.update-item> p {
    margin-bottom: 10px;
    color: #007915;
}
.update-item> p strong{
  color: #000;
}
.update-item> ul {
    margin: 0px;
}
.zyx-invoice-wrapper-premium {
    max-width: 1200px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: zyx-slide-up-entrance 0.6s ease-out;
    margin: 30px 0px;
}

@keyframes zyx-slide-up-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zyx-invoice-masthead-gradient {
    background: linear-gradient(90deg, #040c18, #133022);
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.zyx-invoice-masthead-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.zyx-invoice-masthead-gradient h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.zyx-invoice-reference-number {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.zyx-invoice-content-area {
    padding: 20px;
}

.zyx-details-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.zyx-info-panel-elevated {
    background: #122c211a;
    border-radius: 12px;
    padding: 15px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #1029201f;
}

.zyx-info-panel-elevated:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.zyx-info-panel-elevated h3 {
    color: #122c21;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zyx-info-panel-elevated p {
    margin-bottom: 2px;
    color: #555;
    font-size: 17px;
}

.zyx-info-panel-elevated strong {
    color: #333;
    font-weight: 600;
}

.zyx-items-showcase-section h3 {
    color: #112c21;
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zyx-table-frame-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.zyx-data-table-responsive {
    width: 100%;
    border-collapse: collapse;
}

.zyx-data-table-responsive thead {
    background: linear-gradient(90deg, #040c18, #133022);
    color: white;
}

.zyx-data-table-responsive th,
.zyx-data-table-responsive td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.zyx-data-table-responsive th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.zyx-data-table-responsive tbody tr {
    transition: background-color 0.3s ease;
}

.zyx-data-table-responsive tbody tr:hover {
    background-color: #f8f9ff;
}

.zyx-data-table-responsive tbody tr:nth-child(even) {
    background-color: #fbfcff;
}

.zyx-download-action-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.zyx-download-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    color: white;
    text-decoration: none;
}

.zyx-financial-summary-zone {
    background: linear-gradient(135deg, #f8f9ff 0%, #e7e9e8 100%);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #cdd2d0;
}

.zyx-total-calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #cdd2d0;
}

.zyx-total-calculation-row:last-child {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: bold;
    color: #122d21;
    padding-top: 20px;
    border-top: 2px solid #cdd2d0;
}

.zyx-amount-label-text {
    font-weight: 600;
    color: #555;
}

.zyx-amount-value-display {
    font-weight: 700;
    color: #122d21;
    font-size: 1.1rem;
}

.zyx-currency-indicator {
    color: #666;
    font-size: 0.9em;
}

.zyx-license-key-display {
    background: #f1f3f4;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: monospace;
}

.zyx-status-unavailable {
    color: #999;
    font-style: italic;
}

.zyx-payment-status-paid {
    color: #28a745;
    font-weight: bold;
}

.zyx-discount-negative {
    color: #dc3545;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .zyx-invoice-masthead-gradient {
        padding: 20px;
        text-align: center;
    }

    .zyx-invoice-masthead-gradient h1 {
        font-size: 2rem;
    }

    .zyx-invoice-content-area {
        padding: 20px;
    }

    .zyx-details-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zyx-info-panel-elevated {
        padding: 20px;
    }

    /* Mobile table styles */
    .zyx-table-frame-modern {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .zyx-data-table-responsive {
        min-width: 800px;
    }

    .zyx-data-table-responsive th,
    .zyx-data-table-responsive td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .zyx-financial-summary-zone {
        padding: 20px;
    }

    .zyx-total-calculation-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .zyx-total-calculation-row:last-child {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .zyx-invoice-masthead-gradient h1 {
        font-size: 1.8rem;
    }

    .zyx-invoice-content-area {
        padding: 15px;
    }

    .zyx-info-panel-elevated {
        padding: 15px;
    }

    .zyx-info-panel-elevated h3 {
        font-size: 1.2rem;
    }

    .zyx-data-table-responsive th,
    .zyx-data-table-responsive td {
        padding: 8px 6px;
        font-size: 0.8rem;
    }

    .zyx-download-action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Print styles */
@media print {
    .zyx-invoice-wrapper-premium {
        box-shadow: none;
        border-radius: 0;
    }

    .zyx-invoice-masthead-gradient {
        background: #2a5298 !important;
    }

    .zyx-download-action-btn {
        display: none;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .zyx-invoice-wrapper-premium {
        border: 2px solid #000;
    }

    .zyx-info-panel-elevated {
        border: 1px solid #000;
    }
}
.dashboard_linkWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.dashboard_linkWrapper> a {
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    background: linear-gradient(45deg, #0d6efd, #003b93);
    color: #fff;
    box-sizing: border-box;
    padding: 5px 20px;
    border-radius: 10px;
    border: 2px solid #0059dd;
}
.pTitlecat {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #000000;
}
span.product_cardTitle {
    font-size: 26px;
    font-weight: 500;
}
span.product_cardCategory {
    display: inline-block;
    background: #165f00;
    color: #fff;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 500;
}
.productsCard_items{
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    border-radius: 10px;
    overflow: hidden;
}















@media (max-width: 768px) {
  .container {
    width: 100%;
  }
  .cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-content {
    padding: 1rem;
  }
  .herocardWrapper {
    grid-template-columns: 1fr;
  }
  h1.hero-title {
    margin-top: 30px;
  }
  .customHeroCard_Wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .footerSupport_cardWrapper {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .footerMaingrid_wrapper {
    grid-template-columns: 1fr;
  }
  .footer_cradits {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .footer_cradits > ul {
    justify-content: center;
  }
  .footer_cradits > p {
    text-align: center;
  }
  .topleft_details > ul,
  .topSocial_wrapper {
    justify-content: center;
  }
  .dubblecolups_navmenus {
    display: block;
  }
  .priceingCard_wrapper {
    flex-direction: column;
  }
.priceDetails_Meta> ul {
    flex-direction: column;
    align-items: unset;
}
.productSingle_featuresBox> ul li {
    grid-template-columns: 1fr 0fr 1.5fr;
}
.singlep_viewNotebtn {
    flex-direction: column;
}
}
