/*
  =================================================================================== Global Variables
*/

:root {
  --base-color: #7c3bed;
  --primary-color: #108DA7;
  --red-color: #BD1215;
  --white: #fafafa;
  --black: #000;
  --font-primary: "Space Grotesk", "Inter", "SF Pro Display", system-ui, sans-serif;
  --font-heading: "Space Grotesk", "Inter", "SF Pro Display", system-ui, sans-serif;
  --font-accent: "DM Sans", "Inter", "SF Pro Display", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
}

/*
  =================================================================================== Global Style
*/

* {
  padding: 0px;
  margin: 0px;
}

html {
  font-size: 100%;
}

body,
html {
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--black);
  font-size: 1.8rem;
  padding: 0;
  background-color: var(--black);
}

a {
  text-decoration: none;
  color: var(--base-color);
}

a:focus {
  outline: none;
}

a:hover {
  color: var(--base-color);
  transition: var(--transition4s);
}

button {
  font-family: var(--font-primary);
}

strong {
  font-weight: 600;
}

video {
  width: 100%;
  display: block;
}

*:focus {
  outline: 0;
}

:focus-visible {
  outline: 0;
}

::-webkit-input-placeholder {
  color: #767676;
}

::-moz-placeholder {
  color: #767676;
}

:-ms-input-placeholder {
  color: #767676;
}

:-moz-placeholder {
  color: #767676;
}

p {
  font-size: 1.6rem;
  line-height: 1.333;
  font-weight: 400;
  color: var(--black);
}

p a {
  font-weight: 700;
}

ul {
  padding-left: 0px;
  margin-left: 0px;
}

li {
  list-style-type: none;
}

/*
  =================================================================================== Common Style
*/

.container {
  display: block;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.text-center {
  text-align: center;
}

.btn-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.justify-center {
  justify-content: center;
}

.text-purple-200 {
  color: #e9d5ff;
}

/*
  =================================================================================== Button Style
*/

a:focus {
  color: var(--base-color);
}

/*
  =================================================================================== Header Style
*/

header.site-header {
  width: 100%;
}

.topstripe {
  background-color: var(--black);
  padding: 11px 20px;
}

.topstripe-outer {
  font-size: .875rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.36;
}

.topstripe-outer .text-purple-200 {
  margin-left: 16px;
  font-weight: 500;
}

.header-main {
  padding: 11px 0;
  background-color: var(--white);
  transition: all ease 0.4s;
}

.header-outer {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.mobile-contact {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
}

.mobile-contact svg {
  width: 20px;
  height: 20px;
}

.top-btn a {
  border-radius: 6px;
  background-image: linear-gradient(135deg, #c564fa 0%, #c564fa 50%, #c564fa 100%);
  background-position: 90% center;
  font-size: 1.125rem !important;
  padding: 7px 32px !important;
  color: var(--white) !important;
  font-weight: 500;
  text-align: center;
}

.menu-toggle {
  border: 0;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background-color: var(--base-color);
  transition: all ease 0.3s;
}

.menu-toggle.active span:nth-child(2) {
  display: none;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.main-logo {
  order: 1;
}

.main-logo .site-branding a {
  display: flex;
}

.header-right-part {
  order: 2;
  display: flex;
  margin-left: auto;
  gap: 15px;
  align-items: center;
}

.main-menu {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 0;
}

.main-navigation ul.menu {
  background-color: var(--black);
  display: none;
  margin: 0;
  position: absolute;
  z-index: 3;
  left: 0px;
  width: 100%;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition4s);
  box-shadow: 2px 0px 15px 7px #0000000A;
  border-radius: 0px;
  top: 100%;
}

.main-menu .main-navigation.openMenu .menu {
  display: block;
  height: calc(100vh - 58px);
  transition: var(--transition4s);
  margin-top: 12px;
  overflow: auto;
  padding-bottom: 120px;
}

.main-navigation ul.menu li,
.main-navigation ul.menu li a {
  font-family: var(--global-font);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
}

.main-navigation ul.menu li {
  position: relative;
}

.main-navigation ul.menu>li ul.sub-menu {
  display: block;
  margin-left: 0;
  padding-left: 20px;
  margin-bottom: 20px;
}

.mobile-active .main-navigation ul.menu>li ul.sub-menu{
  display: block !important;
}

.main-navigation ul.menu li a {
  display: block;
  padding: 10px 15px;
}

.main-navigation ul.menu li.pod-ai a{
  background: linear-gradient(to right, #A855F7 0%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-navigation ul.menu>li>a {
  border-top: none;
}

.main-navigation ul.menu>li:first-child>a {
  border-top: none;
}

.main-navigation ul.menu>li>ul.sub-menu li a {
  font-size: 1rem;
}

.main-navigation ul.menu>li>ul.sub-menu li a:hover {
  color: var(--base-color);
}

.main-navigation ul.menu>li>a:hover,
.main-navigation ul.menu>li.current-menu-item>a {
  color: var(--base-color);
}

.main-navigation ul.menu li.menu-item-has-children>a:after {
  position: absolute;
  content: '';
  width: 15px;
  height: 6px;
  right: -8px;
  top: 18px;
  background: url('../images/down-arrow.svg') no-repeat;
  background-position: center center;
  background-size: 100%;
  display: none;
}

.menu-icon {
  position: absolute;
  background: url('../images/select-down.svg') no-repeat;
  background-position: center;
  width: 26px;
  height: 26px;
  right: 20px;
  top: 10px;
  z-index: 1;
  transition: var(--transition4s);
  display: none;
}

.focus>.menu-icon {
  transform: rotate(180deg);
}

.main-navigation ul.menu li.focus>ul.sub-menu {
  display: block !important;
}

.header-main.nav-fixed {
  position: fixed;
  top: 0;
  background: var(--black);
  width: 100%;
  z-index: 99;
}

.header-main.nav-fixed .main-navigation ul.menu li a {
  color: var(--white);
}

.header-main.nav-fixed .main-navigation ul.menu li.menu-item-has-children>a:after {
  filter: brightness(0) invert(1);
}

.mobile-active .main-navigation ul.menu>li ul.sub-menu{
  display: block !important;
}

.active-menu{
  overflow: hidden;
}

.active-menu, .active-menu .site-main {
    background: #000 !important;
}

.active-menu .site-main,.active-menu .site-footer {
    display: none !important;
}

/*
  =================================================================================== Footer style
*/

.site-footer {
  background-color: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.footer-top {
  display: grid;
  grid-gap: 30px;
  margin-bottom: 45px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo a{
  display: block;
}

.footer-logo img{
  max-width: 272px;
  width: 100%;
  display: block;
  height: 40px;
}

.short-detail {
  margin-top: 0;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #4b5563;
}

.footer-contact-details ul {
  margin: 0;
  padding: 0;
}

.footer-contact-details ul li {
  margin-bottom: 10px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
}

.footer-contact-details ul li:last-child{
  margin-bottom: 0;
}

.footer-contact-details ul li svg {
  color: #9ca3af;
  width: 20px;
}

.footer-menu h3 {
  font-weight: 600;
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  margin-bottom: 15px;
  display: block;
}

.footer-menu ul li:last-child{
  margin-bottom: 0;
}

.footer-menu ul li a {
  font-size: 1rem;
  color: #4b5563;
  display: block;
}

.footer-review {
  margin-top: 2rem;
}

.footer-review img {
  height: 48px;
  width: auto;
}

.social-media {
  margin-top: 1.5rem;
}

.social-media ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-media ul li {
  margin-bottom: 0;
}

.social-media ul li a,
.social-media ul li a svg {
  color: #9ca3af;
  display: block;
}

.social-media ul li a svg{
  width: 20px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: solid 1px #e5e7eb;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.copyright-msz p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.other-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  gap: 23px;
  color: #6b7280;
}

.other-brands label {
  font-weight: 500;
  color: #9ca3af;
}

.other-brands a {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.other-brands a svg {
  width: 12px;
}

.blog-listing-wrap {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.blog-listing-head {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 51px;
}

.heading-wrap {
  text-align: center;
}

.heading-wrap h1 {
  color: var(--white);
  margin-bottom: .5rem;
  margin-top: 0;
  font-size: 1.875rem;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.heading-wrap p {
  color: #a1a1a1;
  font-size: 1rem;
}

.search-filter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input.searchField {
  background-color: var(--black);
  width: calc(232px - 60px);
  visibility: visible;
  border: solid 1px hsl(0 0% 14% / 1);
  border-radius: .5rem;
  overflow: hidden;
  padding: 10px;
  color: var(--white);
}

.search-form button {
  background-color: var(--black);
  width: 40px;
  height: 40px;
  border: solid 1px hsl(0 0% 14% / 1);
  border-radius: .5rem;
  overflow: hidden;
  cursor: pointer;
}

.search-form button:hover {
  background-color: var(--base-color);
}

.search-form button svg {
  color: var(--white);
  width: 16px;
}

.search-form input.searchField.active {
  width: calc(232px - 60px);
  visibility: visible;
}

.cat-filter-wrap {
  width: 200px;
}

.cat-filter-wrap select {
  background-color: #000;
  width: 100%;
  height: 40px;
  border: solid 1px hsl(0 0% 14% / 1);
  border-radius: .5rem;
  overflow: hidden;
  color: var(--white);
  padding: 8px 12px;
}

.blog-card {
  border: solid 2px rgb(36 36 36 / 50%);
  border-radius: 0.5rem;
  overflow: hidden;
  display: grid;
  transition: all ease 0.3s;
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.catbtn {
  background-color: #7c3bed;
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: .75rem;
  line-height: 1.7;
  color: var(--white);
  padding-top: .125rem;
  padding-bottom: .125rem;
  padding-left: .625rem;
  padding-right: .625rem;
  font-weight: 600;
  border-radius: 9999px;
}

.blog-image img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.4s;
}

.blog-content-wrap {
  padding: 24px;
}

.blog-meta {
  margin-bottom: 8px;
}

.blog-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #a1a1a1;
  font-size: 0.9rem;
}

.blog-meta ul li {
  color: #a1a1a1;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta ul li svg {
  width: 12px;
}

.blog-meta ul li img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.blog-content-wrap h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--white);
  transition: all ease 0.4s;
}

.blog-description {
  margin-bottom: 1.5rem;
}

.blog-description p {
  color: var(--white);
  margin: 0;
  font-size: 0.875rem;
}

.author-detail {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  color: #a1a1a1;
  gap: 10px;
}

.author-detail img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.btn-group .readmore {
  font-size: 0.875rem;
  align-items: center;
  display: flex;
  font-weight: 500;
  transition: all ease 0.4s;
  gap: 3px;
}

.btn-group .readmore svg {
  width: 16px;
  display: block;
  transition: all ease 0.4s;
}

.blog-grid {
  margin-top: 3rem;
  display: grid;
  grid-gap: 20px;
}

.blog-grid .blog-content-wrap h3 {
  font-size: 1.125rem;
  letter-spacing: -.01em;
}

.blog-grid .blog-description p {
  color: #a1a1a1;
  line-height: 1.5;
}

.blog-card:hover h3 {
  color: var(--base-color);
}

.blog-card:hover .blog-image img{
  transform: scale(1.1);
}

.blog-card:hover .btn-group .readmore svg{
  padding-left: 5px;
}

.blog-card:hover .btn-group .readmore svg{
  margin-right: -5px;
}

.loadMore-btn-wrap {
  margin-top: 3rem;
  text-align: center;
}

.loadMore-btn-wrap .loadmore {
  border-radius: 6px;
  background-image: linear-gradient(135deg, #c564fa 0%, #c564fa 50%, #c564fa 100%);
  background-position: 90% center;
  font-size: 0.875rem;
  color: var(--white) !important;
  font-weight: 500;
  border: none;
  padding: 0.81rem 32px;
  cursor: pointer;
}

.no-posts-found {
  text-align: center;
  margin-top: 40px;
  color: var(--white);
}

.no-posts-found p {
  color: inherit;
}

.blog-featured-wrap{
  border-color: rgb(124 59 237 / 20%);
  align-items: center;
}

.blog-featured-wrap .blog-content-wrap{
  padding: 32px;
}

.blog-featured-wrap .blog-description p{
  color: #a1a1a1;
  line-height: 1.625;
  font-size: 1rem;
}

.blog-featured-wrap .btn-group .readmore{
  font-size: 1rem;
}

.blog-featured-wrap .blog-meta ul li{
  font-size: 0.9rem;
}

.blog-featured-wrap .blog-meta ul li svg{
  width: 16px;
}

.blog-featured-wrap .blog-meta {
  margin-bottom: 14px;
}

.blog-featured-wrap .blog-content-wrap h3{
  margin-bottom: 1rem;
  line-height: 1.2;
}


/* Single Page Style ===================================================================== */

.blog-content-main {
  display: grid;
  align-items: start;
  grid-gap: 40px;
  margin-top: 2rem;
}

.backBtn {
  margin-bottom: 24px;
}

.backBtn .button {
  background-color: #000;
  border: solid 1px hsl(0 0% 14% / 1);
  border-radius: .5rem;
  overflow: hidden;
  color: #a1a1a1;
  padding: .5rem 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 5px;
  cursor: pointer;
  width: fit-content;
}

.backBtn .button:hover{
  background-color: var(--base-color);
  color: var(--white);
}

.backBtn .button svg {
  width: 16px;
}

.slingle-title{
  color: #fafafa;
  line-height: 1.25;
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: 24px;
  margin-bottom: 24px;
}

.blog-detail-wrap .blog-image {
  height: auto;
}

.blog-detail-wrap .blog-image img{
  border-radius: 1rem;
}

.blog-sidebar-wrap{
  display: flex;
  flex-direction: column;
  gap: 20px
}

.blog-sidebar-card {
  padding: 1.25rem;
  border: solid 1px rgb(36 36 36 / 50%);
}

.blog-sidebar-card h3 {
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.blog-sidebar-card.author-sidebar h3{
  text-transform: none;
}

.blog-sidebar-card.author-sidebar .blog-meta {
  margin: 0;
}

.blog-sidebar-card.author-sidebar .blog-meta ul li{
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.blog-sidebar-card.author-sidebar .blog-meta ul li img {
  width: 48px;
  height: 48px;
}

.blog-sidebar-card.toc-wrap h3{
  color: #a1a1a1;
  text-transform: uppercase;
}

.blog-sidebar-card ul li {
  line-height: 1;
  list-style-type: disc;
  line-height: 1.625;
  color: #fafafa;
  font-size: .75rem;
  margin-bottom: 8px;
}

.blog-sidebar-card ul li a{
  color: #fafafa;
}

.blog-content{
  overflow: hidden;
}

.blog-content p {
  color: #a1a1a1;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-content a {
  color: var(--base-color);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.blog-content a:hover {
  opacity: 0.8;
}

.blog-content blockquote {
  border-left: 4px solid var(--base-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #a1a1a1;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.blog-content blockquote p {
  margin-bottom: 0;
}

.blog-content ul,
.blog-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: #a1a1a1;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.blog-content li strong {
  color: #a1a1a1;
  font-weight: 600;
}

.blog-content ol li{
  list-style-type: decimal;
}

.blog-content img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.blog-content pre {
  background: #171717;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-content code {
  background: transparent;
  padding: 0;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: monospace;
  color: var(--base-color);
}

.blog-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #242424, transparent);
  margin: 3rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border: 1px solid #242424;
  border-radius: 0.5rem;
  overflow: hidden;
}

.blog-content table th,
.blog-content table td {
  border: 1px solid #242424;
  padding: 0.75rem;
  text-align: left;
}

.blog-content table th {
  background: #171717;
  font-weight: 600;
  color: #a1a1a1;
  font-size: 0.875rem;
}

.blog-content table td {
  color: #a1a1a1;
  font-size: 0.875rem;
}

.blog-content strong {
  color: #a1a1a1;
  font-weight: 600;
}

.blog-content em {
  font-style: italic;
}

.no-results.not-found,
.no-results.not-found p,
.no-results.not-found form {
  color: var(--white);
}

.no-results.not-found {
  text-align: center;
}

.no-results.not-found h1, 
.error-404 h1 {
  font-size: 2rem;
  color: var(--white);
  text-align: center;
}