/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}


:root {
  --primary: #6208b1;
  /* Purple */
  --secondary: #ffd700;
  /* Gold */
  --dark: #121212;
  /* Black */
  --light: #f8f9fa;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

.text-primary {
  color: var(--primary) !important;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light);
  overflow-x: hidden;
  position: relative;
}

/* Border Container */
.border-container {
  position: relative;
  /* padding: 1px ;  */
}

.border-container::after {
  background: url("../images/hero-bg.png") no-repeat center center/cover;
  width: 800px;
  height: 100%;
  top: 0;
  rotate: 180deg;
  position: absolute;
  content: "";
  right: 0;
  opacity: 0.5;
  z-index: -1;
}

/* Navbar Styles */

/* logo */
.site-logo {
  width: 150px;
  height: 85px;
  object-fit: contain;
}

/* Existing Navbar Styles */
.navbar {
  /* padding: 1rem 0; */
  transition: all 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 15px 30px;
  z-index: 999;
}

/* Sticky state styling */
.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: 0.5s ease;
}

/* Smooth header slide-down animation */
.navbar {
  transition: 0.5s;
}

.navbar.main-bar{
  animation: headerSlideDown 0.5s linear;
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

/* end */
.mobile-top-bar.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: top 0.5s, background 0.5s;
  margin: 0 !important;
  transform: none !important;
}

.navbar-nav {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.nav-item {
  margin: 0 1rem;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  top: 49%;
  left: 0%;
  transform: translate(-12%, -49%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  opacity: 0.2;
  visibility: visible;
  width: 2rem;
  height: 2rem;
}

.btn-contact {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 2.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(250, 246, 0, 0.6);
  color: #000;
  background: var(--secondary);
}

/* Mobile Header */
.mobile-header {
  display: none;
}

.mobile-top-bar {
  background: transparent;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 30px;
  transition: 1s;
}

.menu-toggle {
  color: white;
  font-size: 1.5rem;
  background: var(--primary);
  border: none;
}

.menu-toggle:focus-within,
.menu-toggle:hover {
  color: #000;
  font-size: 1.5rem;
  background: var(--secondary);
  border: none;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  padding: 2rem;
  transition: 0.5s ease;
  box-shadow: 0 4px 32px rgba(98, 8, 177, 0.08);
}

.mobile-nav.active {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--dark) !important;
  background-color: var(--secondary) !important;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav .nav-link {
  color: var(--dark);
  font-size: 1.2rem;
  padding: 1rem 0;
  display: block;
  border-bottom: 1px solid rgba(98, 8, 177, 0.08);
  background: none;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  color: var(--primary);
  border-radius: 8px;
}

.mobile-nav .nav-link {
  position: relative;
  overflow: hidden;
}

.mobile-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0.5;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.mobile-nav .nav-link:not(:hover):not(.active)::before {
  width: 0;
  left: calc(100% - 80%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav .nav-link:hover::before,
.mobile-nav .nav-link.active::before,
.mobile-nav .nav-item.active .nav-link::before {
  width: calc(100% - 60%);
  left: 0;
}

/* Main Content Styling */
.main-content {
  margin-top: 30px;
  padding: 50px 0;
  position: relative;
}

.content-text {
  padding-right: 20px;
}

.main-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--primary);
}

.description {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.shop-now-btn.active {
  background-color: var(--secondary);
}

.shop-now-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.shop-now-btn:hover {
  background-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Furniture Image Styling */
.furniture-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.chair-img {
  max-width: 100%;
  transform: scale(1.5) translateX(-60px) !important;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.subtitle {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  /* Soft purple/gold combo */
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 10%);
  box-shadow: 0 0 15px rgba(217, 167, 255, 0.3);
  animation: floatSubtitle 4s ease-in-out infinite;
}

@keyframes floatSubtitle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* .title-animation
{
    border-radius: 3rem;
    box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.10);
    padding: 0.8rem 3.7rem;
    animation: dt_bounce ease 2s infinite;
    -webkit-animation: dt_bounce ease 2s infinite;
    transform-origin: bottom;
    -webkit-transform-origin: bottom;
}
@keyframes dt_bounce {
    0% {
        transform: scale(1, 1) translateY(0);
    }
    10% {
        transform: scale(1.1, .9) translateY(0);
    }
    30% {
        transform: scale(.9, 1.1) translateY(-1.375rem);
    }
    50% {
        transform: scale(1, 1) translateY(0);
    }
    57% {
        transform: scale(1, 1) translateY(-0.1875rem);
    }
    64% {
        transform: scale(1, 1) translateY(0);
    }
    100% {
        transform: scale(1, 1) translateY(0);
    }
} */
/* Discount Badge Styling */
.discount-badge {
  position: absolute;
  top: 20%;
  left: 0%;
  width: 100px;
  height: 100px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
}

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.up-to {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}

.percent {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.off {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* Social Media Sidebar */
.social-sidebar {
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background-color: var(--primary);
  padding: 15px 10px;
  border-radius: 30px;
  z-index: 100;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  animation: sidebarFloat 4s ease-in-out infinite;
}

@keyframes sidebarFloat {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-60%);
  }
}

.social-icon {
  color: var(--primary);
  font-size: 18px;
  margin: 10px 0;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: #fff;
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

/* Responsive Styles */
@media (max-width: 1198px) {
  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .main-heading {
    font-size: 36px;
  }

  .social-sidebar {
    display: none;
  }

  .content-text {
    text-align: center;
    margin-bottom: 40px;
    padding: 10px;
  }

  .site-logo {
    width: 118px;
    height: 70px;
  }

}

@media (max-width: 767.98px) {
  .main-heading {
    font-size: 28px;
  }

  .discount-badge {
    width: 80px;
    height: 80px;
  }

  .percent {
    font-size: 20px;
  }
}
@media (max-width:576px) {
    .site-logo {
        width: 105px;
        height: 45px;
    }
}
.dt_service--sixteen .dt_item_inner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 15px 30px;
  border: 1px solid #f6f4f1;
  background-color: #f6f4f1;
  transition: var(--transition);
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  border: 3px solid rgba(0, 0, 0, 10%);
  height: 520px;
}

.dt_service--sixteen .dt_item_inner:hover,
.dt_service--sixteen .dt_item_inner:focus-within {
  border-color: var(--primary);
}

.dt_service--sixteen .dt_item_inner .dt_item_image {
  overflow: hidden;
  border-radius: 15px;
  margin-top: -15px;
  margin-right: -15px;
  margin-bottom: 27px;
  margin-left: -15px;
}

.dt_service--sixteen .swiper-slide:nth-child(odd) .dt_item_inner .dt_item_image {
  order: 1;
  margin-top: 27px;
  margin-bottom: 0;
}

.dt_service--sixteen .dt_item_inner .dt_item_holder {
  position: relative;
}

.dt_service--sixteen .dt_item_inner .number {
  position: absolute;
  top: -15px;
  right: -9px;
  background: linear-gradient(to bottom, #2121213d 0%, #00000000 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #dadada;
  opacity: calc(7 / 10);
  font-size: 100px;
  font-weight: 700;
  line-height: 1em;
}

.dt_service--sixteen .dt_item_inner .dt_item_icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  font-size: 64px;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.dt_service--sixteen .dt_item_inner:hover .dt_item_icon {
  transform: rotate3d(15, 15, 15, 360deg);
  transition: all 0.3s ease;
}

.dt_service--sixteen .dt_item_inner .dt_item_title a:not(:hover, :focus) {
  text-decoration: none;
  color: var(--dark);
}

.dt_service--sixteen .dt_item_inner .dt_item_title a:hover,
.dt_service--sixteen .dt_item_inner .dt_item_title a:focus-within {
  color: var(--primary);
  text-decoration: underline;
  transition: var(--transition);
}

.dt_service--sixteen .dt_item_inner .dt_item_content {
  margin-top: 12px;
}

.dt_service--sixteen .dt_item_inner .dt_item_readmore {
  margin-top: 20px;
}

.dt_service--sixteen .dt_item_inner .dt_item_readmore .dt-btn-plustext {
  display: inline-block;
  font-size: 15px;
  line-height: 1.065;
  padding: 8px 13px 6px 15px;
  border-radius: 30px;
  text-align: center;
  color: var(--primary);
  background-color: #ffffff;
  border: 1px solid var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.dt_service--sixteen .dt_item_inner .dt_item_readmore .dt-btn-plustext:after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-left: 5px;
  display: inline-block;
  vertical-align: -0.1rem;
}

.dt_service--sixteen .dt_item_inner .dt_item_readmore .dt-btn-plustext:hover,
.dt_service--sixteen .dt_item_inner .dt_item_readmore .dt-btn-plustext:focus-within {
  color: #ffffff;
  background-color: var(--primary);
}

.dt_item_image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.dt_service--sixteen .dt_item_inner .dt_item_readmore .dt-btn-plustext {
  display: inline-block;
  font-size: 15px;
  line-height: 1.065;
  padding: 8px 13px 6px 15px;
  border-radius: 30px;
  text-align: center;
  color: var(--primary);
  background-color: #ffffff;
  border: 1px solid var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.service-wrap .owl-nav {
  display: none;
}

.cta-banner-section {
  padding-top: 0;
  padding-bottom: 80px;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .cta-banner-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 20px;
    padding: 70px 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;

    .book-shape,
    .book-shape-2 {
      position: absolute;
      z-index: -1;

      img {
        max-width: 300px;
        height: auto;
      }
    }

    .book-shape {
      top: 0;
      left: 0;

      @media (max-width: 992px) {
        display: none;
      }

      @media (max-width: 1200px) {
        img {
          width: 250px;
        }
      }
    }

    .book-shape-2 {
      bottom: 0;
      right: 0;

      @media (max-width: 992px) {
        display: none;
      }

      @media (max-width: 1200px) {
        img {
          width: 250px;
        }
      }
    }

    .cta-content {
      color: #fff;
      margin: 0 20px;

      span {
        position: relative;
        font-size: 24px;
        font-weight: 600;
        background-color: #fff;
        padding: 5px 25px;
        color: var(--primary);
        border-radius: 100px;

        img {
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 100px;

          @media (max-width: 576px) {
            width: 80px;
          }
        }

        @media (max-width: 992px) {
          font-size: 25px;
        }

        @media (max-width: 576px) {
          font-size: 20px;
        }
      }

      h2 {
        font-size: 40px;
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 40px;

        @media (max-width: 992px) {
          font-size: 40px;
        }

        @media (max-width: 576px) {
          font-size: 25px;

          br {
            display: block;
          }
        }
      }

      .theme-btn {
        display: inline-block;
        padding: 14px 36px;
        font-weight: 700;
        border-radius: 40px;
        background: var(--secondary);
        color: #000;
        text-decoration: none;
        border: none;
        font-size: 18px;
        box-shadow: 0 4px 18px rgba(98, 8, 177, 0.18);
        position: relative;
        overflow: hidden;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
          box-shadow 0.25s, background 0.25s;
      }

      .theme-btn i {
        margin-left: 10px;
        transition: transform 0.3s;
      }

      .theme-btn:hover {
        transform: translateY(-4px) scale(1.04) rotate(-1deg);
        box-shadow: 0 8px 32px rgba(98, 8, 177, 0.28),
          0 2px 8px rgba(255, 215, 0, 0.12);
        background: var(--primary);
        color: #fff;
      }

      .theme-btn:hover i {
        transform: translateX(4px) scale(1.2) rotate(8deg);
      }

      .theme-btn::before {
        content: "";
        position: absolute;
        left: -75%;
        top: 0;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.18);
        transform: skewX(-25deg);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        pointer-events: none;
      }

      .theme-btn:hover::before {
        left: 120%;
      }
    }
  }
}

.offer-title {
  border-radius: 3rem;
  box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.1);
  padding: 0.8rem 3.7rem;
  animation: dt_bounce ease 2s infinite;
  -webkit-animation: dt_bounce ease 2s infinite;
  transform-origin: bottom;
  -webkit-transform-origin: bottom;
  display: inline-block;
}

@keyframes dt_bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }

  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }

  30% {
    transform: scale(0.9, 1.1) translateY(-1.375rem);
  }

  50% {
    transform: scale(1, 1) translateY(0);
  }

  57% {
    transform: scale(1, 1) translateY(-0.1875rem);
  }

  64% {
    transform: scale(1, 1) translateY(0);
  }

  100% {
    transform: scale(1, 1) translateY(0);
  }
}

.cta-product-img {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  margin: auto;
  display: flex;
  box-shadow: rgba(141, 141, 141, 0.1) 0px 10px 50px;
  align-items: center;
  justify-content: center;
}

.cta-product-img img {
  max-width: 300px;
  width: 250px;
}

.testimonial-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  background-size: cover !important;
  background-position: center !important;
  color: white;
  position: relative;
  z-index: 0;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #e0e0e0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  margin: 15px 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid #fff;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h5 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}

.client-details p {
  margin: 0;
  color: #e0e0e0;
  font-size: 14px;
}

.rating {
  color: #ffc107;
  margin-bottom: 15px;
}

.custom-nav {
  text-align: center;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  border: 1px solid;
  border-radius: 100%;
  z-index: 10;
}

.custom-nav::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 250px;
  background: #ffffff60;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-nav button {
  background-color: transparent;
  border: unset;
  color: white;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.custom-nav button:hover {
  /* background-color: white; */
  /* color: #333; */
  transform: scale(1.8);
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.1);
}

.progress-ring {
  transform: rotate(-90deg);
  position: absolute;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.3s;
}

.progress-text {
  position: relative;
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

/* Footer */

.dt_footer_top .dt_features_cta_area {
  padding-top: 2rem;
}

.pattern-layer+.dt_footer_middle {
  padding-top: 12rem;
}

.dt_footer_top .dt_footer .widget_social li a {
  color: #fff;
  background: rgba(189, 189, 189, 0.2);
  border: 0.1rem solid rgba(189, 189, 189, 0.2);
}

.dt_footer_top .dt_footer .widget .wp-block-image a {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.625rem;
  font-weight: 500;
}

.dt_footer_top .dt_footer .widget .wp-block-image a:not(:hover, :focus) {
  text-decoration: none;
}

/* Footer Top */

.dt_footer_top .widget {
  position: relative;
}

.dt_footer_top .widget:before {
  position: absolute;
  content: "";
  left: 1.5rem;
  top: -1rem;
  right: 1.5rem;
  bottom: -10px;
  background: #e7e7e7;
  opacity: 0.3;
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}

.dt_footer_top .widget .contact__list {
  position: relative;
  padding: 4rem 4rem 3.2rem;
  min-height: 16rem;
  color: var(--dark);
  background-color: #fff;
  box-shadow: 0 0 5rem 0 rgba(0, 0, 0, 0.1);
}

.dt_footer_top .widget .contact__list i {
  font-size: 6rem;
  margin-right: 2.35rem;
  width: 5.2rem;
}

.dt_footer_top .widget .contact__list .title {
  font-size: 2.2rem;
}

.dt_footer_top .widget .contact__list .description {
  margin-top: 0.8rem;
  line-height: 1.4;
}

.apps_screen img {
  max-width: 300px;
  height: 400px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(2px 4px 10px gray);
  animation: apps-float 5s ease-in-out infinite;
}

@keyframes apps-float {

  0%,
  100% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.dt_footer_top {
  position: relative;
  z-index: 0;
  background-position: left !important;
  background-size: cover !important;
  padding: 50px 30px !important;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* .dt_footer_top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.6;

  z-index: -1;
  pointer-events: none;
} */

/* Container */
.stylish-newsletter {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 30px auto 0;
  margin-left: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Email Input */
.stylish-newsletter input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  border: none;
  border-radius: 50px 0 0 50px;
  outline: none;
  background: #ebebeb;
  color: #222;
}

.stylish-newsletter input::placeholder {
  color: #888;
  font-style: italic;
}

/* Button */
.stylish-newsletter .dt-btn {
  padding: 14px 25px;
  border: none;
  border-radius: 0 50px 50px 0;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stylish-newsletter .dt-btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
  color: #000;
}

.stylish-newsletter .dt-btn-text {
  position: relative;
  display: inline-block;
}

/* Responsive */
@media (max-width: 576px) {
  .stylish-newsletter {
    flex-direction: column;
    border-radius: 20px;
    background: #fff;
  }

  .stylish-newsletter input[type="email"],
  .stylish-newsletter .dt-btn {
    border-radius: 20px;
    width: 100%;
    margin: 5px 0;
  }
}

/* 
.newslettterSection::before {
    content: '';
    position: absolute;
    background: linear-gradient(to top, black, transparent);
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
} */

/* .newslettterSection .sub-title{
  background: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
} */

.product_list .product-card {
  /* max-width: 350px; */
  border-radius: 12px;
  margin-bottom: 0px;
  text-decoration: none;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  height: 100%;
}

.product_list .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product_list .card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  padding: 20px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.product_list .lightning-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  color: white;
  font-size: 16px;
}

.product_list .heart-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product_list .heart-icon:hover {
  color: #ff6b6b;
}

.product_list .logo-section {
  text-align: center;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  bottom: 0;
  inset: 0;
  z-index: -1;
}

.product_list .logo-section img {
  /* max-width: 300px; */
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.18));
}

.product_list .preview-img:nth-child(1) {
  background-color: #ff6b6b;
}

.product_list .preview-img:nth-child(2) {
  background-color: #4ecdc4;
}

.product_list .preview-img:nth-child(3) {
  background-color: #45b7d1;
}

.product_list .preview-img:nth-child(4) {
  background-color: #96ceb4;
}

.product_list .card-body {
  padding: 20px;
}

.product_list .product-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product_list .author-info {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.product_list .price {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.product_list .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.product_list .stars {
  color: #ffc107;
  font-size: 14px;
}

.product_list .rating-text {
  font-size: 13px;
  color: #666;
}

.product_list .sales-count {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.product_list .action-buttons {
  display: flex;
  gap: 10px;
}

.product_list .btn-cart {
  background: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.product_list .btn-cart:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(138, 43, 226, 0.18);
}

.product_list .btn-preview {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(138, 43, 226, 0.08);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product_list .btn-preview:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 215, 0, 0.18);
}

.product-list.layout-full .product-card {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
}

.product-list.layout-full .card-header {
  width: 30%;
}

.product-list.layout-full .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-list.layout-full .more-info {
  padding: 0 20px;
  padding-left: 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  flex-direction: column;
  align-items: start !important;
  justify-content: start !important;
}

.product-list.layout-full .product-info {
  width: 70%;
}

.layout-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(138, 43, 226, 0.08);
  padding: 3px 5px;
  margin-bottom: 20px;
  border: 1px solid var(--primary);
  transition: box-shadow 0.3s;
}

.layout-toggle button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 100%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-toggle button.active,
.layout-toggle button:hover {
  background: var(--primary);
  color: #fff;
}

.sectionTitle {
  margin: 10px 20px;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}

.sectionTitle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #6666667e;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sectionTitle::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 6px;
  background: linear-gradient(90deg, transparent, #8a2be2 60%, #ffd700 100%);
  bottom: -2px;
  left: 0;
  z-index: 0;
  animation: sectionTitleBeforeMove 2.5s linear infinite;
  will-change: transform;
}

@keyframes sectionTitleBeforeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(233%);
  }
}

.footer_main .footer {
  background: #0e1422;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 60px 0 0 0;
  /* padding-top: 150px; */
}

.footer_main .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 40%,
      rgba(120, 119, 198, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.footer_main .footer-content {
  position: relative;
  z-index: 2;
}

.footer_main .footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer_main .footer h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer_main .about-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.footer_main .about-section p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer_main .btn-quote {
  background: var(--primary);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer_main .btn-quote:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: white;
}

.footer_main .social-icons {
  margin-top: 25px;
}

.footer_main .social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_main .social-icon:hover {
  background: #138496;
  transform: translateY(-3px);
  color: white;
}

.footer_main .quick-links ul {
  list-style: none;
  padding: 0;
}

.footer_main .quick-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.footer_main .quick-links li::before {
  content: "♦";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

.footer_main .quick-links li:hover::before,
.footer_main .quick-links li:focus-within::before {
  transform: scale(1.8);
  transition: transform 0.3s ease;
}

.footer_main .quick-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer_main .quick-links a:hover {
  color: var(--primary);
}

.footer_main .post-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer_main .post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer_main .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_main .post-content h6 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.footer_main .post-content a {
  color: #ffffff;
  text-decoration: none;
}

.footer_main .post-content a:hover {
  color: var(--primary);
}

.footer_main .post-date {
  font-size: 0.8rem;
  color: #95a5a6;
}

.footer_main .hours-table {
  background: none;
  border: none;
}

.footer_main .hours-table td {
  padding: 8px 0;
  border: none;
  color: #bdc3c7;
}

.footer_main .hours-table td:first-child {
  font-weight: 500;
}

.footer_main .hours-table td:last-child {
  text-align: right;
  color: #ffffff;
}

.footer_main .btn-contact {
  background: var(--primary);
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.footer_main .btn-contact:hover {
  background: #138496;
  transform: translateY(-2px);
  color: white;
}

.footer_main .footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_main .footer-bottom-links a {
  color: #bdc3c7;
  text-decoration: none;
  margin: 0 15px;
  position: relative;
}

.footer_main .footer-bottom-links a::before {
  content: "♦";
  color: var(--primary);
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer_main .footer-bottom-links a:hover {
  color: var(--primary);
}

.footer_main .copyright {
  color: #95a5a6;
  margin: 0;
}

.footer_main .copyright a {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer_main .footer {
    padding: 40px 0 0 0;
  }

  .footer_main .footer h5 {
    margin-top: 30px;
  }

  .footer_main .footer h5:first-child {
    margin-top: 0;
  }
 
}

.footer_main {
  position: relative;
  z-index: 1;
}

.footer_main .footer-shape {
  position: absolute;
  top: 0;
  left: -5%;
  z-index: 0;
}

.newslettterSection {
  margin: 50px 0;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.apps_screen {
  position: absolute;
  top: -10px;
  right: 150px;
}

.footer_main {
  position: relative;
  z-index: 0;
}

.contact-details .contact-info {
  display: flex;
  align-items: baseline;
  justify-content: start;
  gap: 20px;
  text-decoration: none;
  margin-bottom: 20px;
}

.contact-details .contact-info .text {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.contact-details .contact-info i {
  display: inline-block;
  text-align: center;
  color: #fff;
  transition: 0.5s;
}

.contact-details .contact-info:hover i,
.contact-details .contact-info:focus-within i {
  transform: scale(1.4) rotate(20deg);
  color: var(--primary);
}

.countdown-item {
  text-align: center;
  margin: 0 25px;
  position: relative;
}

.countdown-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  animation: timer_animation 1s infinite;
}

@keyframes timer_animation {
  0% {
    transform: translateX(-50%) scaleX(0);
  }

  50% {
    transform: translateX(-50%) scaleX(1.2);
  }

  100% {
    transform: translateX(-50%) scaleX(0);
  }
}

.countdown-number {
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

.countdown-label {
  color: var(--secondary);
  font-size: 1.1rem;
  margin: 10px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.Detail_page .product-image-section {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 10%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 10px;
  border-radius: 20px;
}

.Detail_page .latest-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.Detail_page .latest-badge i {
  margin-right: 6px;
}

.Detail_page .product-image-section img {
  width: 100%;
  height: auto;
  height: 400px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.Detail_page .product-details-page .product-image-section img {
  height: 100%;
}

.Detail_page .preview-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.Detail_page .btn-preview {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.Detail_page .btn-preview:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #000;
}

.Detail_page .custom-tabs {
  border-bottom: 2px solid rgba(0, 0, 0, 10%);
  margin-bottom: 2rem;
}

.Detail_page .custom-tabs .nav-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  position: relative;
}

.Detail_page .custom-tabs .nav-link:hover {
  color: var(--primary);
  background-color: rgba(99, 102, 241, 0.05);
}

.Detail_page .custom-tabs .nav-link.active {
  color: var(--primary);
  background-color: white;
  border-bottom: 3px solid var(--primary);
}

.Detail_page .custom-tabs .nav-link.active::after {
  opacity: 0.2;
  visibility: visible;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

.Detail_page .content-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.Detail_page .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.Detail_page .feature-list {
  list-style: none;
  padding: 0;
}

.Detail_page .feature-list li {
  padding: 8px 0;
  font-size: 1rem;
}

.Detail_page .feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.Detail_page .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
  border: 1px solid rgba(0, 0, 0, 10%);
}

.Detail_page .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.Detail_page .feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.Detail_page .feature-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.Detail_page .feature-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.Detail_page .comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.Detail_page .comparison-table thead th {
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.Detail_page .comparison-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.Detail_page .comparison-table td {
  padding: 1rem;
  border-color: var(--border-color);
  vertical-align: middle;
}

.Detail_page .plugin-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.Detail_page .plugin-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.Detail_page .plugin-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin-right: 1rem;
  object-fit: cover;
}

.Detail_page .plugin-info h6 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.Detail_page .plugin-info p {
  margin: 0;
}

.Detail_page .sidebar-sticky {
  position: sticky;
  top: 100px;
  /* Adjust based on your header/nav height */
  z-index: 10;
  /* Make sure it's above background content if needed */
}

.Detail_page .pricing-card,
.Detail_page .info-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.Detail_page .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.Detail_page .pricing-option {
  margin-bottom: 1rem;
}

.Detail_page .pricing-option input[type="radio"] {
  display: none;
}

.Detail_page .pricing-option label {
  display: block;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Detail_page .pricing-option input[type="radio"]:checked+label {
  border-color: var(--primary);
  background-color: rgb(99 102 241 / 10%);
}

.Detail_page .option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.Detail_page .license-name {
  font-weight: 600;
  color: var(--text-dark);
}

.Detail_page .price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.Detail_page .option-details {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.Detail_page .purchase-buttons {
  margin-top: 1.5rem;
}

.Detail_page .btn-purchase {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.Detail_page .btn-purchase:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.Detail_page .btn-preview-sidebar {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  border-color: var(--primary);
  color: var(--primary);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
}

.Detail_page .btn-preview-sidebar:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.Detail_page .info-list {
  list-style: none;
  padding: 0;
}

.Detail_page .info-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.Detail_page .info-list span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.Detail_page .info-list span:last-child {
  color: var(--text-muted);
}

.Detail_page .payment-methods {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.Detail_page .payment-methods i {
  font-size: 2rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.Detail_page .payment-methods i:hover {
  color: var(--primary);
}

.Detail_page .review-stats .stars {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .Detail_page .container-fluid {
    padding: 1rem;
  }

  .Detail_page .custom-tabs .nav-link {
    padding: 8px 12px;
    font-size: 0.875rem;
  }

  .Detail_page .content-section {
    padding: 1.5rem;
  }

  .Detail_page .pricing-card,
  .Detail_page .info-card {
    padding: 1rem;
  }

  .Detail_page .latest-badge {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .Detail_page .preview-overlay {
    bottom: 10px;
    right: 10px;
  }

  .Detail_page .btn-preview {
    padding: 8px 16px;
    font-size: 0.875rem;
  }

}

@media (max-width:400px) {
  .Detail_page .custom-tabs .nav-link {
    padding: 7px 7px;
    font-size: 12px;
  }


}

@media (max-width:360px) {
  .Detail_page .custom-tabs .nav-item {
    margin: 0 15px 4px 0;
  }
}

.Detail_page #loadMoreFeatures {
  transition: all 0.3s ease;
}

.Detail_page #loadMoreFeatures:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.Detail_page .tab-pane {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*------ 11. BreadCrumb Area
=======================================*/
.breadcrumb-area {
  position: relative;
  z-index: 2;
  margin-bottom: 130px;
}

.breadcrumb-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  opacity: 0.6;
  background-position: bottom !;
}

.breadcrumb-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  height: 130px;
  border-radius: 4px;
  padding: 50px 30px;
  box-shadow: 0px 0px 24.96px 1.04px rgba(159, 158, 158, 0.41);
  -webkit-transform: translateY(65px);
  transform: translateY(65px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.breadcrumb-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.breadcrumb-content:after {
  content: "";
  position: absolute;
  right: 40%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 4px solid #e4e4e4;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation: rectangle 0.5s cubic-bezier(0.245, 0.325, 0.51, 1.305) infinite alternate;
  animation: rectangle 0.5s cubic-bezier(0.245, 0.325, 0.51, 1.305) infinite alternate;
  z-index: -1;
}

.breadcrumb-area ul:after {
  content: "";
  position: absolute;
  left: -40%;
  top: 100%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #f6f6f6;
  -webkit-animation: rectangle 0.5s cubic-bezier(0.245, 0.325, 0.51, 1.305) infinite alternate;
  animation: rectangle 0.5s cubic-bezier(0.245, 0.325, 0.51, 1.305) infinite alternate;
  z-index: -1;
}

@-webkit-keyframes rectangle {
  to {
    -webkit-transform: scale(1.2) rotate(30deg);
    transform: scale(1.2) rotate(30deg);
  }
}

@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2) rotate(30deg);
    transform: scale(1.2) rotate(30deg);
  }
}

@keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2) rotate(30deg);
    transform: scale(1.2) rotate(30deg);
  }
}

.breadcrumb-area h2 {
  position: relative;
  color: #242424;
  padding-left: 56px;
}

.breadcrumb-area h2:before {
  background: #5c2ede;
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 46px;
  height: 4px;
  transform: translate(-50%, -50%);
}

.breadcrumb-area ul {
  position: relative;
}

.breadcrumb-area ul li {
  display: inline-block;
  color: #242424;
}

.breadcrumb-area li a:after {
  font-weight: 900;
  margin: 0 10px;
  content: "\f054";
  font-family: "fontawesome";
}

.breadcrumb-area ul li a {
  color: #242424;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-area ul li.active {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* About Section */

/* Play Button 2 */

.dt-btn-play2,
a.dt-btn-play2 {
  width: 8rem;
  height: 8rem;
  line-height: 8rem;
  display: inline-block;
  position: relative;
  text-align: center;
  border-radius: 100%;
  font-size: 2rem;
  -webkit-transition: var(--dt-transition);
  transition: var(--dt-transition);
  box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.07);
}

.dt-btn-play2.dt-btn-primary {
  background: linear-gradient(55deg, var(--primary) 0%, var(--primary) 100%);
  color: #fff;
}

.dt-btn-play2::before,
.dt-btn-play2::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(214, 214, 214, 0.486);
  z-index: -1;
  border-radius: 100%;
}

.dt-btn-play2::before {
  width: 10rem;

  height: 10rem;
  top: calc(50% - 5rem);
  left: calc(50% - 5rem);
  -webkit-animation: dt_videoBtnAnim 3s ease-in-out infinite;
  animation: dt_videoBtnAnim 3s ease-in-out infinite;
}

.dt-btn-play2::after {
  width: 140px;
  height: 140px;
  top: calc(50% - 70px);
  left: calc(50% - 70px);
  -webkit-animation: dt_videoBtnAnim 5s ease-in-out infinite;
  animation: dt_videoBtnAnim 5s ease-in-out infinite;
}

@keyframes dt_videoBtnAnim {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.dt-btn-play2:hover,
.dt-btn-play2:focus {
  background-color: var(--dark);
  color: #fff;
}

.dt_image_block {
  position: relative;
}

.dt_image_block .dt_image_box {
  display: inline-block;
  position: relative;
}

.dt_image_block .dt_image_box img {
  border-radius: inherit;
}

.dt_image_block .dt_image_box.image-2 {
  padding-left: 2.2rem;
  margin-top: -5rem;
}

@media (min-width: 36em) {
  .dt_image_block .dt_image_box.image-2 {
    position: absolute;
    right: -0.2rem;
    bottom: -10rem;
    padding-left: 0;
    margin-top: 0;
  }

  .dt_image_block .dt_image_box.image-2 figure img {
    max-width: 330px;
    height: 330px;
    object-fit: contain;
    border-radius: 10px;
  }

  .dt_image_block .dt_image_box.image-1 figure img {
    max-width: 400px;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .dt_image_block .dt_image_box.image-2 {
    position: static;
    right: unset;
    bottom: unset;
    padding-left: 0;
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
  }

  .dt_image_block .dt_image_box.image-2 figure img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    padding: auto;
  }

  .dt_image_block .dt_image_box.image-1 figure img {
    max-width: 100%;
   height: 405px;
    object-fit: cover;
    border-radius: 10px;
  }
}
@media (max-width: 576px) {
  .dt_image_block .dt_image_box.image-1 figure img{
    height:  260px;
  }
  .dt_image_block .dt_image_box.image-2 figure img{
    height: 195px;
  }
   
}
.dt_image_block .dt_image_video {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1;
}

aside .dt_event_img .image,
.single-post .content .wp-block-image,
.dt_image_block .dt_image_box .image {
  position: relative;
  overflow: hidden;
}

.dt_image_block .dt_image_box .image,
.dt_image_block .dt_image_box .image img {
  height: 100%;
  display: block;
}

aside .dt_event_img .image:after,
.single-post.dt_post_item .image:after,
.single-post .content .wp-block-image:after,
.dt_image_block .dt_image_box .image:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(255, 255, 255, 0)),
      to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

aside .dt_event_img .image:hover:after,
.single-post.dt_post_item .image:hover:after,
.single-post .content .wp-block-image:hover:after,
.dt_image_block .dt_image_box .image:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.dt_image_block.style2 .image-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(55deg, var(--primary) 0%, var(--primary) 100%);
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  z-index: -1;
}

.dt_image_block.style3 .image-1:after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  bottom: 3rem;
  right: -3rem;
  background: linear-gradient(55deg, var(--primary) 0%, var(--primary) 100%);
  z-index: -1;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.dt_image_block .dt_image_text {
  position: absolute;
  z-index: 1;
}

.dt_about .dt_image_block .dt_image_text {
  width: 200px;
  font-size: 18px;
  font-weight: bold;
  /* line-height: 1.33em; */
  background-color: #fff;
  box-shadow: 0 0 4.3rem 0 rgba(0, 0, 0, 0.07);
  border-right: 1rem solid var(--primary);
  padding: 24px;
  border-top-left-radius: 5.5rem;
  /* padding-left: 40px; */
  border-bottom-left-radius: 5.5rem;
  height: 200px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 20px !important;
  right: -5px !important;
}

.dt_about--one .dt_image_block::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 3rem;
  width: 10.9rem;
  height: 6.6rem;
  background-color: var(--primary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 159 66' width='159' height='66' fill='none'%3E%3Cpath fill='currentColor' d='M30.43.145c.233.104 1.127.805 1.982 1.557 11.857 10.475 28.87 19.432 50.2 26.454 15.874 5.218 33.808 9.164 50.601 11.124 7.503.87 12.051 1.168 18.88 1.259 5.145.065 5.637.09 6 .311.583.364.907.974.907 1.74 0 .843-.363 1.427-1.076 1.752-.492.234-.881.26-4.444.26-21.64.013-51.535-5.413-75.352-13.681C57.59 23.794 41.56 15.123 29.768 4.765c-1.749-1.532-2.034-1.934-2.034-2.843 0-1.298 1.53-2.31 2.695-1.778ZM11.316 4.026c.285.104.635.298.778.441 1.917 1.713 6.103 5.114 8.539 6.957 1.633 1.234 1.918 1.61 1.918 2.584 0 1.05-.907 1.908-2.022 1.908-.401 0-.712-.117-1.218-.455-1.84-1.246-8.526-6.646-9.874-7.995-.648-.65-.842-1.208-.7-1.986.208-1.13 1.49-1.844 2.58-1.454ZM2.479 25.002c.194.052 1.27.74 2.397 1.531 8.462 5.88 20.007 12.072 32.641 17.484 22.159 9.515 46.105 16.109 64.765 17.835 2.035.195 2.799.312 3.11.493.454.26.998 1.207.998 1.727-.013.545-.479 1.401-.933 1.7-.389.247-.557.26-2.047.195-3.149-.143-9.421-.974-14.89-1.973C62.437 59.23 31.454 47.613 9.658 34.438 5.33 31.816.561 28.571.224 28.013c-.311-.545-.298-1.662.039-2.207.272-.441 1.14-.934 1.62-.921.142 0 .414.052.596.117ZM44.774 26.832c5.442 2.92 12.777 6.425 18.958 9.073 2.203.947 2.54 1.13 2.825 1.544.622.922.324 2.285-.622 2.87-.778.466-1.31.362-4.147-.858-4.717-1.998-8.656-3.842-13.515-6.282-6.363-3.206-7.62-3.92-7.97-4.491-.816-1.324.13-3.037 1.672-3.037.505 0 .946.194 2.799 1.18ZM89.09 45.225c.143.026 1.828.506 3.759 1.064a301.513 301.513 0 0 0 18.232 4.725c1.762.39 3.356.817 3.537.934.428.273.843 1.078.843 1.61 0 .921-.752 1.856-1.633 2.025-.531.09-4.237-.701-10.548-2.285-5.96-1.492-14.617-3.933-15.433-4.361-1.205-.623-1.335-2.505-.22-3.336.362-.273 1.075-.454 1.464-.376ZM140.794 55.894c1.944.22 5.779.52 9.537.753 1.827.117 2.242.299 2.631 1.116.479 1.026.129 2.181-.83 2.7-.414.234-.635.247-2.267.169-3.719-.156-10.691-.753-11.728-.987-.997-.233-1.555-.96-1.555-2.05 0-.546.065-.727.402-1.117.739-.83 1.05-.882 3.81-.584Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 159 66' width='159' height='66' fill='none'%3E%3Cpath fill='currentColor' d='M30.43.145c.233.104 1.127.805 1.982 1.557 11.857 10.475 28.87 19.432 50.2 26.454 15.874 5.218 33.808 9.164 50.601 11.124 7.503.87 12.051 1.168 18.88 1.259 5.145.065 5.637.09 6 .311.583.364.907.974.907 1.74 0 .843-.363 1.427-1.076 1.752-.492.234-.881.26-4.444.26-21.64.013-51.535-5.413-75.352-13.681C57.59 23.794 41.56 15.123 29.768 4.765c-1.749-1.532-2.034-1.934-2.034-2.843 0-1.298 1.53-2.31 2.695-1.778ZM11.316 4.026c.285.104.635.298.778.441 1.917 1.713 6.103 5.114 8.539 6.957 1.633 1.234 1.918 1.61 1.918 2.584 0 1.05-.907 1.908-2.022 1.908-.401 0-.712-.117-1.218-.455-1.84-1.246-8.526-6.646-9.874-7.995-.648-.65-.842-1.208-.7-1.986.208-1.13 1.49-1.844 2.58-1.454ZM2.479 25.002c.194.052 1.27.74 2.397 1.531 8.462 5.88 20.007 12.072 32.641 17.484 22.159 9.515 46.105 16.109 64.765 17.835 2.035.195 2.799.312 3.11.493.454.26.998 1.207.998 1.727-.013.545-.479 1.401-.933 1.7-.389.247-.557.26-2.047.195-3.149-.143-9.421-.974-14.89-1.973C62.437 59.23 31.454 47.613 9.658 34.438 5.33 31.816.561 28.571.224 28.013c-.311-.545-.298-1.662.039-2.207.272-.441 1.14-.934 1.62-.921.142 0 .414.052.596.117ZM44.774 26.832c5.442 2.92 12.777 6.425 18.958 9.073 2.203.947 2.54 1.13 2.825 1.544.622.922.324 2.285-.622 2.87-.778.466-1.31.362-4.147-.858-4.717-1.998-8.656-3.842-13.515-6.282-6.363-3.206-7.62-3.92-7.97-4.491-.816-1.324.13-3.037 1.672-3.037.505 0 .946.194 2.799 1.18ZM89.09 45.225c.143.026 1.828.506 3.759 1.064a301.513 301.513 0 0 0 18.232 4.725c1.762.39 3.356.817 3.537.934.428.273.843 1.078.843 1.61 0 .921-.752 1.856-1.633 2.025-.531.09-4.237-.701-10.548-2.285-5.96-1.492-14.617-3.933-15.433-4.361-1.205-.623-1.335-2.505-.22-3.336.362-.273 1.075-.454 1.464-.376ZM140.794 55.894c1.944.22 5.779.52 9.537.753 1.827.117 2.242.299 2.631 1.116.479 1.026.129 2.181-.83 2.7-.414.234-.635.247-2.267.169-3.719-.156-10.691-.753-11.728-.987-.997-.233-1.555-.96-1.555-2.05 0-.546.065-.727.402-1.117.739-.83 1.05-.882 3.81-.584Z'/%3E%3C/svg%3E");
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  animation: dt_rotate_hanger 3s infinite alternate;
  transform-origin: 0 -20rem;
  z-index: 0;
}

.dt_about--one .dt_btn-group {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 0.1rem solid rgba(189, 189, 189, 0.35);
}

.dt_about--one .dt_btn-group>* {
  margin-bottom: 1rem;
}

.dt_about--one .dt_btn-group .widget.widget_contact {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 1.8rem;
}

.dt_about--one .dt_btn-group .widget.widget_contact .contact__list img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  margin-right: 1.5rem;
  border-radius: 50%;
  border: 0.2rem solid rgba(189, 189, 189, 0.35);
}

@media (min-width: 62em) {
  .dt_about--one .dt_btn-group .widget.widget_contact+.dt-btn {
    float: right;
  }
}

@keyframes dt_rotate_hanger {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(15deg);
  }
}

.dt_image_block .dt_image_text .dt_count_box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.dt_image_block .dt_image_text .dt_count_box .dt_count_text {
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
  font-size: 60px;
  color: var(--primary);
  /* margin-right: 2rem; */
  letter-spacing: -0.02em;
}

.dt_about--one .parallax-scene .pattern-3,
.dt_about--one .parallax-scene .pattern-4 {
  width: 9.5rem;
  height: 9.5rem;
  background-repeat: no-repeat;
}

.dt_about--one .parallax-scene .pattern-1 {
  left: 8% !important;
  top: 6% !important;
  margin-left: -11rem;
  background: #f8f8f8;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
}

.dt_about--one .parallax-scene .pattern-2 {
  width: 8rem;
  height: 8rem;
  top: 14% !important;
  left: 90% !important;
}

.dt_about--one .parallax-scene .pattern-3 {
  top: 90% !important;
  left: -3rem !important;
}

.dt_about--one .parallax-scene .pattern-4 {
  left: 92% !important;
  top: 80% !important;
}

@media (min-width: 36em) {
  .dt_about--one .dt_content_box {
    margin-left: 3rem;
  }
}

.dt_about .marquee_wrap .marquee_items,
.dt_about .marquee_wrap {
  overflow: hidden;
  position: relative;
}

.dt_about .marquee_wrap .marquee_items {
  width: 100%;
  white-space: nowrap;
}

.dt_about .marquee_wrap .marquee_items:before {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  z-index: 9;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 1%,
      rgba(255, 255, 255, 1) 98%);
}

.dt_about .marquee_wrap .marquee_items:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  content: "";
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 99%,
      rgba(255, 255, 255, 0) 100%);
}

.dt_about .marquee_wrap .marquee_items .marquee_item {
  position: relative;
  overflow: hidden;
}

.dt_about .marquee_wrap .marquee_items .marquee_item .marquee_text {
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-size: 5rem;
  line-height: 1.15;
  font-family: var(--dt-title-font);
  font-weight: 900;
  animation: dt_marquee 17s linear infinite;
  color: var(--dark);
}

@media (min-width: 36em) {
  .dt_about .marquee_wrap .marquee_items .marquee_item .marquee_text {
    font-size: 8rem;
  }
}

@keyframes dt_marquee {
  0% {
    text-indent: 5%;
  }

  100% {
    text-indent: -80%;
  }
}

.dt_about .marquee_wrap .marquee_items .marquee_item:hover .marquee_text {
  animation-play-state: paused;
}

.dt_content_about_info {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 3rem;
}

.dt_content_about_info .contact__list ul li {
  position: relative;
  padding-left: 1.5rem;
}

.dt_content_about_info .contact__list ul li:after {
  content: "\f111";
  margin-right: 1rem;
  color: var(--primary);
  display: block;
  font-size: 0.6rem;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0.9rem;
  left: 0;
  z-index: 1;
  font-weight: 900;
}

.dt_content_about_info.style4,
.dt_content_about_info.style3,
.dt_content_about_info.style1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 36em) {

  .dt_content_about_info.style4,
  .dt_content_about_info.style3,
  .dt_content_about_info.style1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48em) {
  .dt_content_about_info {
    margin-top: 4rem;
  }
}

@media (min-width: 62em) {

  .dt_content_about_info.style4,
  .dt_content_about_info.style3,
  .dt_content_about_info.style1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 75em) {

  .dt_content_about_info.style4,
  .dt_content_about_info.style3,
  .dt_content_about_info.style1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dt_content_about_info.style1 .widget_contact {
  padding: 2.6rem 3rem;
  color: var(--dt-base-color);
  background-color: var(--dt-gray-color);
}

.dt_content_about_info.style1 .widget_contact .contact__list {
  position: relative;
  z-index: 0;
}

.dt_content_about_info.style1 .widget_contact .contact__list a {
  color: var(--dark);
  text-decoration: none;
}

.dt_content_about_info.style1 .widget_contact .contact__list:before {
  position: absolute;
  content: "";
  left: -1rem;
  top: -1.5rem;
  height: 5.4rem;
  width: 5.4rem;
  background: rgba(189, 189, 189, 0.25);
  border-radius: 50%;
  z-index: -1;
}

.dt_content_about_info.style1 .widget_contact .contact__list i {
  color: var(--primary);
  font-size: 4.8rem;
  margin-right: 2rem;
  width: 4.8rem;
}

.dt_content_about_info.style1 .widget_contact .contact__body .title {
  color: var(--dark);
}

.dt_content_block .dt-btn-text {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(98, 8, 177, 0.18);
  position: relative;
  overflow: hidden;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s,
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.dt_content_block .dt-btn-text::before {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-25deg);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.dt_content_block .dt-btn-text:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(98, 8, 177, 0.28),
    0 2px 8px rgba(255, 215, 0, 0.12);
}

.dt_content_block .dt-btn-text:hover::before {
  left: 120%;
}

.dt_content_block .dt-btn-text span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.3s;
}

.dt_content_block .dt-btn-text:hover span {
  animation: btn-bounce 0.5s;
}

@keyframes btn-bounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}

.dt_content_block .title-shape {
  display: inline-block;
  position: relative;
  z-index: 0;
}

.dt_siteheading .title {
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.dt_siteheading .title.about-title {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.dt_siteheading .title.overlay-anim-white-bg {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.dt_content_block .title-shape {
  font-weight: 800;
  color: var(--primary);
}

.dt_content_block .title-shape:before {
  content: "";
  position: absolute;
  bottom: -3.2rem;
  left: 0;
  width: 100%;
  height: 3.1rem;
  opacity: 0.9;
  background-color: var(--primary);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='137' height='18' viewBox='0 0 137 18'%3E%3Cpath fill='currentColor' d='M42.91 2.3C17.876-2.492 5.835 1.569 1.03 10.093c-1.067 1.894-1.642 6.401.882 6.936 1.073.228 1.781-.388 1.924-.96.5-2 2.098-4.493 5.996-7 9.495-4.5 12.7-4 27.983-3 15.282 1 46.923 10.439 68.074 11.083 22.369.682 27.088-6.366 29.463-9.17 2.374-2.804.723-5.502-.924-2.65-13.735 20.188-66.632 1.736-91.52-3.03Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='137' height='18' viewBox='0 0 137 18'%3E%3Cpath fill='currentColor' d='M42.91 2.3C17.876-2.492 5.835 1.569 1.03 10.093c-1.067 1.894-1.642 6.401.882 6.936 1.073.228 1.781-.388 1.924-.96.5-2 2.098-4.493 5.996-7 9.495-4.5 12.7-4 27.983-3 15.282 1 46.923 10.439 68.074 11.083 22.369.682 27.088-6.366 29.463-9.17 2.374-2.804.723-5.502-.924-2.65-13.735 20.188-66.632 1.736-91.52-3.03Z'/%3E%3C/svg%3E");
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.dt_heading_inner {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  letter-spacing: 1px;
  backdrop-filter: blur(6px);
  margin-bottom: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 12px rgba(98, 8, 177, 0.12);
  animation: floatSubtitle 4s ease-in-out infinite;
}

@keyframes floatSubtitle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.about-circle {
  position: absolute;
  max-width: 216px;
  width: 100%;
  height: 188px;
  top: 70%;
  left: -1px;
  transform: translateY(-50%);
  mask-image: url(../images/h5-about-mask.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #f8f9fa;
  mask-position: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .about-circle {
    display: none;
  }

  .dt_about .dt_image_block .dt_image_text {
    position: absolute;
    width: min-content;
    border-radius: 20px;
    height: 120px;
    top: calc(100% - 30%) !important;
  }

  .dt_image_block .dt_image_text .dt_count_box {
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
  }

  .dt_image_block .dt_image_box.image-2 {
    display: inline-block;
    width: fit-content;

  }

  .dt_about--one .dt_image_block::after {
    display: none;
  }
}

@media (max-width: 767px){
  .dt_image_block .dt_image_box {
  display: block;
  position: relative;
}
}
@media (max-width: 576px){
  .dt_image_block .dt_image_box.image-2 {
    display: block;
    width: 100%;
  }
.dt_image_block .dt_image_box.image-2 figure img{
  object-fit: cover;
}
.dt_about .dt_image_block .dt_image_text{
top: calc(100% + 20px) !important;
    left: 0;
    width: 100%;
}
.dt_image_block .dt_image_text .dt_count_box .dt_count_text{
  font-size: 45px;
}
}

.contact-section {
  padding-bottom: 80px;
  background-color: var(--bg-color);
}

.contactus-widget .widget-contact .contact-area {
  background-color: #2a2f35;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 25px;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: 0.65s;
}

.contactus-widget .widget-contact .contact-area:hover,
.contactus-widget .widget-contact .contact-area:focus-within {
  background-color: var(--primary);
}

.contactus-widget .widget-contact .contact-area::after,
.contactus-widget .widget-contact .contact-area::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background-color: var(--primary);
  right: -55px;
  transform: rotate(45deg);
  transition: 0.65s;
}

.contactus-widget .widget-contact .contact-area::before {
  right: -40px;
  opacity: 0.5;
}

.contactus-widget .widget-contact .contact-area:hover::before,
.contactus-widget .widget-contact .contact-area:focus-within::before,
.contactus-widget .widget-contact .contact-area:hover::after,
.contactus-widget .widget-contact .contact-area:focus-within::after {
  transform: rotate(225deg);
  background-color: #e1e1e1;
}

.contactus-widget .widget-contact .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  line-height: 60px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  font-size: 25px;
  margin-right: 15px;
  transition: 0.65s;
}

.contactus-widget .widget-contact .contact-info .text {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactus-widget .widget-contact .contact-info .text span {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.contactus-widget .widget-contact .contact-info .text a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.contactus-widget .widget-contact .contact-area:hover .contact-icon,
.contactus-widget .widget-contact .contact-area:focus-within .contact-icon {
  background-color: #fff;
  color: var(--primary);
}

.contactus-widget .widget-contact .contact-area:hover .contact-info .text span,
.contactus-widget .widget-contact .contact-area:focus-within .contact-info .text span,
.contactus-widget .widget-contact .contact-area:hover .contact-info .text a,
.contactus-widget .widget-contact .contact-area:focus-within .contact-info .text a {
  color: #fff;
}

.send-your-enquiry .wpcf7-form p input[type="text"],
.send-your-enquiry .wpcf7-form p input[type="email"],
.send-your-enquiry .wpcf7-form p .wpcf7-textarea {
  width: 100%;
  outline: none;
  box-shadow: none;
  padding: 10px 15px;
  color: var(--dark);
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 10%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

.send-your-enquiry .wpcf7-form p label {
  width: 100%;
  font-weight: 500;
  color: var(--dark);
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  border: none;
  outline: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(98, 8, 177, 0.18);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s,
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit::before {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-25deg);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(98, 8, 177, 0.28),
    0 2px 8px rgba(255, 215, 0, 0.12);
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit:hover::before {
  left: 120%;
}

.contact-wrap {
  padding: 50px;
  background: #fff;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
.send-your-enquiry{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px;
  border-radius: 20px;
}
}
@media (max-width: 768px) {
  .contactus-widget .widget-contact .contact-area::after, .contactus-widget .widget-contact .contact-area::before{
   right: -55px;
  }
  .contactus-widget .widget-contact .contact-area{
    flex-wrap: wrap;
  }
  
}
@media (max-width:576px) {
  .contact-wrap{
    padding: 24px;
  }
  .contactus-widget .widget-contact .contact-icon{
    width: 50px;
  height: 50px;
  line-height: 50px;
  }
.contactus-widget .widget-contact .contact-info .text span{
 font-size: 16px;
}
.contactus-widget .widget-contact .contact-icon{
  font-size: 20px;
  margin-bottom: 10px;
}
.contactus-widget .widget-contact .contact-info .text a{
  font-size: 14px;
}

}
@media (max-width:360px) {
.contactus-widget .widget-contact .contact-icon.sm-icon{
    margin-right: 140px;
  }
  
}
.custom-search-wrapper {
  width: 100%;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.custom-search-wrapper .search-text {
  color: var(--dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.custom-search-form {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.custom-search-input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  font-size: 18px;
  color: var(--dark);
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  outline: none;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.custom-search-input:focus {
  border-color: #8a2be2;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

.custom-search-icon {
  position: absolute;
  top: 50%;
  left: calc(100% - 35px);
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  color: #8a2be2;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  transition: 0.3s ease;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 100%;
}

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

.support-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 40px;
  flex-direction: column;
}

.support-div ul {
  margin: 0;
  padding: 20px;
  list-style: none;
  text-align: left;
  /* margin-left: 50px;
    padding-left: 30px;
    border-left: 2px solid rgba(0, 0, 0, 0.18); */
}

.support-img {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 1;
}

.support-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px dashed var(--primary);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: support-border-rotate 25s linear infinite;
  box-sizing: border-box;
}

.support-img::before {
  content: "\f590";
  position: absolute;
  font-family: fontawesome;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

@keyframes support-border-rotate {
  100% {
    transform: rotate(360deg);
  }
}

.support-img img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 100%;
  background: #6208b13d;
}

.support-div .support-link {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(98, 8, 177, 0.18);
  position: relative;
  overflow: hidden;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s,
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.support-div .support-link::before {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-25deg);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.support-div .support-link:hover {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%);
  color: #fff;
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(98, 8, 177, 0.28),
    0 2px 8px rgba(255, 215, 0, 0.12);
}

.support-div .support-link:hover::before {
  left: 120%;
}

.contact-author-box {
  background: #fff;
  border: 1px solid #eaeaea;
  transition: box-shadow 0.3s ease;
}

.contact-author-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.support-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.review_box_wrap {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.review_box_wrap .review-header h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  position: relative;
}

.review_box_wrap .review-header h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #6f42c1;
  margin-top: 6px;
  border-radius: 2px;
}

.review_box_wrap .text-warning i {
  transition: transform 0.2s ease;
}

.review_box_wrap .text-warning i:hover {
  transform: scale(1.1);
}

.review_box_wrap .form-select {
  min-width: 200px;
  border-radius: 6px;
}

.review_box_wrap .review-list .card {
  border-radius: 10px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  position: relative;
  text-align: left !important;
}

.review_box_wrap .review-list .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  border-radius: 10px;
  height: 100%;
  border-left: 5px solid #6f42c1;
  border-radius: 10px 0 0 10px;
  opacity: 1;
}

.review_box_wrap .review-list .card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.review_box_wrap .card-body {
  padding: 1.25rem 1.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.review_box_wrap .review-list .fa-star,
.review_box_wrap .review-list .fa-star-half-alt {
  color: #ffc107;
}

.review_box_wrap .review-list .far.fa-star {
  color: #ddd;
}

.review_box_wrap .review-list small a {
  color: #6c757d;
  font-weight: 500;
  text-decoration: none;
}

.review_box_wrap .review-list small a:hover {
  color: #343a40;
  text-decoration: underline;
}

.review_box_wrap .review-list p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

/* .review_box_wrap .pagination .page-link {
  border-radius: 6px;
  font-weight: 500;
  color: #6f42c1;
  border: 1px solid #ddd;
}

.review_box_wrap .pagination .page-item.active .page-link {
  background-color: #6f42c1;
  border-color: #6f42c1;
  color: #fff;
}

.review_box_wrap .pagination .page-link:hover {
  background-color: #6f42c1;
  color: #fff;
} */

/* Mobile Responsive */
@media (max-width: 576px) {
  .review_box_wrap .review-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .review_box_wrap .form-select {
    width: 100%;
  }

  .review_box_wrap .card-body {
    padding: 1rem;
  }
}

.item-header__author-details {
  position: absolute;
  background: var(--secondary);
  padding: 5px 15px;
  border-radius: 100px;
  bottom: 10px;
  right: 10px;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 10%);
}

.item-header__author-details a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  text-decoration: underline;
}

.dt_footer_top .sub-title {
  display: inline-block;
  text-transform: lowercase !important;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 6px 20px;
  border-radius: 40px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border: 1px solid rgba(65, 38, 38, 0.08);
  box-shadow: 0 0 10px rgba(98, 8, 177, 0.08);
  animation: floatSubtitle 4s ease-in-out infinite;
}

@keyframes floatSubtitle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review_modal .modal-header {
  background: var(--secondary);
}

.review_modal .custom-input {
  background: #f9f6ff;
  /* Very light purple */
  border: 1px solid #d6b3ff;
  color: #4b0082;

  border-radius: 0.5rem;
}

.review_modal .custom-input::placeholder {
  color: #999;
}

.review_modal .custom-input:focus-within {
  outline: none !important;
  box-shadow: none !important;
  border: 2px solid var(--primary);
}

.review_modal .star-rating .star {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.review_modal .star-rating {
  margin: 23px 0px;
  justify-content: space-between;
}

.review_modal .star-rating .star.active {
  color: var(--secondary);
  /* Accent purple for stars */
}

.review_modal .btn-gradient {
  background: linear-gradient(45deg, #6a0dad, #b388eb);
  /* Purple gradient */
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(106, 13, 173, 0.3);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s,
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.review_modal .btn-gradient::before {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-25deg);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.review_modal .btn-gradient:hover {
  background: linear-gradient(45deg, #b388eb, #6a0dad);
  color: #fff;
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(106, 13, 173, 0.28),
    0 2px 8px rgba(179, 136, 235, 0.12);
}

.review_modal .btn-gradient:hover::before {
  left: 120%;
}

.review_modal .btn-gradient:hover {
  opacity: 0.95;
}


.blog_page .blog-card {
  width: 100%;
  /* Let Bootstrap column control the width */
  aspect-ratio: 4 / 4;
  /* Maintain proportional height, or use a % padding trick */
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-bottom: 30px;  */
}

.blog_page .blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 50%) 100%);
  opacity: 1;
  z-index: -1;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.blog_page .horizontal-blog-card:hover .blog-card::after {
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  bottom: -100%;
  opacity: 0;
}

.blog_page .blog-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  bottom: -100%;
  background: linear-gradient(to top,
      var(--primary) 0%,
      rgba(255, 255, 255, 0.0) 100%);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog_page .horizontal-blog-card:hover .blog-card::before {
  bottom: 0;
}


.blog_page .horizontal-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.253);
}

/* 
.blog_page .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
} */

.blog_page .category-tag {
  background-color: var(--primary);
  color: white;
  padding: 4px 15px;
  padding-left: 4px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
}

.blog_page .category-tag i {
  width: 30px;
  height: 30px;
  background: var(--secondary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;

}

.blog_page .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog_page .card-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog_page .card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.blog_page .read-more-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.blog_page .read-more-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  color: #000;
}

.blog_page .design-container {
  margin: 50px 0;
}


/* Custom CSS for Blog Detail Page */
.blog_details_page body {
  background-color: #f5f5f5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.blog_details_page .blog-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.blog_details_page .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog_details_page .category-tag {
  background: var(--secondary);
  color: #000;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.blog_details_page .publish-date {
  background: var(--secondary);
  font-size: 14px;
  padding: 10px;
  border-radius: 100px;
  padding: 10px 20px;
  color: #000;
  font-weight: 500;
}

.blog_details_page .blog-title {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.blog_details_page .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.blog_details_page .author-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 16px;
}

.blog_details_page .author-title {
  color: #343434;
  font-size: 14px;
}

.blog_details_page .featured-image-container {
  position: relative;
  border-radius: 12px;
  /* overflow: hidden; */
  margin-bottom: 100px !important;
}

.blog_details_page .featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}


.blog_details_page .image-actions {
  position: absolute;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  gap: 40px;
  top: calc(100% + 4%);
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 5%);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  flex-wrap: wrap;
}

.blog_details_page .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.blog_details_page .action-btn:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

.blog_details_page .article-content {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

.blog_details_page .article-content p img {
  width: 100% !important;
  height: 730px !important;
}

.blog_details_page .intro-paragraph {
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.blog_details_page .drop-cap {
  float: left;
  font-size: 4rem;
  line-height: 3rem;
  padding-right: 8px;
  padding-top: 4px;
  color: var(--primary);
  font-weight: 700;
}

.blog_details_page .section-heading {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.blog_details_page .quote-block {
  background: #f8fafc;
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4b5563;
}

.blog_details_page .quote-block p {
  margin: 0;
  font-size: 16px;
}

.blog_details_page .benefits-list {
  padding-left: 0;
  list-style: none;
}

.blog_details_page .benefits-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #374151;
}

.blog_details_page .benefits-list li::before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.blog_details_page .share-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.blog_details_page .share-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.blog_details_page .social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.blog_details_page .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  font-size: 18px;
}

.blog_details_page .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog_details_page .facebook {
  background: #1877f2;
}

.blog_details_page .twitter {
  background: #1da1f2;
}

.blog_details_page .linkedin {
  background: #0077b5;
}

.blog_details_page .whatsapp {
  background: #25d366;
}

.blog_details_page .email {
  background: #ea4335;
}





/* Author Details */

.author-details {
  padding: 2rem 2rem;
  border-radius: 1.5rem;
  background-color: #fff;
  border: 0.1rem solid rgba(189, 189, 189, 0.2);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.author-details .media {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.author-details .media .auth-mata {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: 3rem;
  margin-top: 0;
}

.author-details .media .auth-mata img {
  border-radius: 50%;
  background-color: rgba(255, 255, 255);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.08);
  width: 10rem;
  height: 10rem;
}

.author-details .media .media-body {
  flex: 1;
}

.author-details .media .media-body .title {
  letter-spacing: 0.025rem;
  vertical-align: baseline;
}

.author-details .media .media-body a {
  text-decoration: none;
  color: var(--primary);
}

.author-details .media .media-body a:hover,
.author-details .media .media-body a:focus {
  color: var(--primary);
}

.author-details .media .media-body .title+p {
  margin-bottom: 0;
  margin-top: 0.8rem;
}



/* Comment & Form */

.comments-area {
  margin-top: 8rem;
}

.single-comments-title,
.comments-title {
  margin-bottom: 3rem;
  text-align: left;
}

.comments-title h3 {
  font-size: 3.4rem;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 30px 0;
}

.comments-area li {
  list-style: none;
}

.comments-area .comment-body {
  position: relative;
  padding: 3rem 3rem 3rem 16.5rem;
  min-height: 12rem;
  word-wrap: break-word;
  border-radius: 1.5rem;
  z-index: 0;
  margin-bottom: 6rem;
}

.comments-area .comment-body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: calc(100% - 120px);
  z-index: -1;
  border-radius: inherit;
}

.comment-list .comment .comment-body:before {
  background-color: var(--dt-gray2-color);
}

.comments-area .comment-meta .comment-awaiting-moderation {
  display: block;
  width: 100%;
  clear: both;
}

.comments-area .comment-meta .comment-author {
  font-size: 1.6rem;
}

.comments-area .comment-meta .comment-author .fn {
  font-weight: 700;
}

.comment-meta .comment-metadata>a,
.comments-area .comment-meta .comment-author a {
  text-decoration: none;
  color: var(--dt-sec-color);
}

.comment-meta .comment-metadata>a:hover,
.comment-meta .comment-metadata>a:focus,
.comments-area .comment-meta .comment-author a:hover,
.comments-area .comment-meta .comment-author a:focus {
  color: var(--dt-pri-color);
}

.comments-area .comment-meta .comment-author img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0.6rem;
  width: 9rem;
  border-radius: 10rem;
}

.comments-area .comment-meta .comment-author,
.comment-meta .comment-metadata {
  line-height: 1.5;
  font-size: 1.8rem;
  display: inline-block;
}

.comment-content {
  position: relative;
  z-index: 0;
  padding: 1.6rem 0;
  line-height: 1.5;
}

.comment-content p {
  margin-bottom: 0;
}

.comment-body .reply a,
.comment-body .edit a {
  font-weight: 600;
  letter-spacing: 0.03rem;
}

.comment-body .reply a:not(:hover, :focus),
.comment-body .edit a:not(:hover, :focus) {
  text-decoration: none;
}

.comment-list .comment .children .comment-body:before {
  border: 0.1rem solid rgba(189, 189, 189, 0.2);
  background-color: transparent;
}

.comment-reply-title {
  font-size: 3.4rem;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}

.comment-form>p.comment-notes {
  flex-basis: 100%;
  width: 100%;
}

.comment-form>p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
  flex: auto;
}

/*.comment-form > p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 3rem;
}

.comment-form p.comment-form-url:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 0;
}*/

@media (max-width: 61.938em) {

  .comment-form>p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit),
  .comment-form>p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    max-width: 100%;
    flex-basis: 100%;
    /*margin-right: 0;*/
  }
}

.comment-form-comment {
  max-width: 100%;
  flex-basis: 100%;
}

/*.comment-form > p:not(:last-child) {
    margin-bottom: 3rem;
}*/

.comment-form-cookies-consent,
.form-submit {
  width: 100%;
}

.comment-form-cookies-consent label {
  vertical-align: middle;
  margin-left: 0.3rem;
}


.blog-comment-form {
  margin-top: 47px;
  padding: 30px 35px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
}

.comment-reply-title {
  font-size: 25px;
  margin-bottom: 15px;
}

/* ------------------- [Responsive Media] --------------- */

@media (max-width: 1200px) {
  .product_list .rating {
    display: block;
  }
}
@media (max-width: 992px) {
  .blog_details_page .image-actions {
    position: unset;
    transform: unset;
    margin-top: 30px;
    background: #fff;
    gap: 20px;
  }

  .blog_details_page .featured-image-container {
    margin-bottom: 30px !important;
  }

  .dt_content_block {
    margin-top: 100px;
  }

  .Detail_page .sidebar-sticky {
    position: unset;
    margin-top: 30px;
  }

  .main-content {
    padding: 10px;
    padding-bottom: 40px;
  }

  .layout-toggle {
    display: none !important;
  }

  .chair-img {
    max-width: 100%;
    transform: scale(1.1) translateX(-30px) !important;
  }

  .discount-badge {
    left: 50px;
  }

  .cta-product-img {
    margin-bottom: 40px;
  }

  .apps_screen {
    display: none;
  }

  .testimonial-card {
    margin: 0;
  }

  .custom-nav {
    top: calc(100% - 50px);
    border-radius: 100px;
    display: inline-block;
    padding: 7px 10px;
    width: fit-content;
    height: auto;
    margin-top: 0;
  }

  .testimonial-section {
    padding-bottom: 100px !important;
  }

  .custom-nav::after {
    display: none;
  }

  /* Enable header slide-down animation for mobile header */
  .mobile-top-bar.main-bar {
    animation: headerSlideDown2 0.5s linear;
  }
@keyframes headerSlideDown2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

  .mobile-header {
    display: block;
  }

  .navbar {
    display: none;
  }

  /* Fix mobile-top-bar sticky animation jump */
  .mobile-top-bar.sticky-navbar {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    transform: none !important;
    transition: top 0.5s, background 0.5s;
  }
}


@media (max-width: 991px) {
  .blog_details_page .article-content p img {
    width: 100% !important;
    height: 500px !important;
  }
}

@media (max-width: 768px) {
  .author-details .media {
    flex-direction: column;
    justify-content: center;
    margin: auto;

    text-align: center;
  }

  .author-details .media .auth-mata {
    margin: auto;
    margin-bottom: 30px;
  }

  .blog-comment-form {
    padding: 20px;
  }

  .blog_details_page .blog-card {
    padding: 24px;
    /* margin: 0 16px; */
  }

  .blog_details_page .blog-title {
    font-size: 2rem;
  }

  .blog_details_page .featured-image {
    height: 250px;
  }

  .blog_details_page .drop-cap {
    font-size: 3rem;
    line-height: 2.5rem;
  }

  .blog_details_page .image-actions {
    width: calc(100% - 0%);
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog_details_page .blog-meta {
    gap: 5px;
  }

  .blog_details_page .category-tag {
    padding: 6px 9px;
    font-size: 12px;
  }

  .blog_details_page .publish-date {
    font-size: 12px;
    padding: 7px 12px;
  }

  .send-your-enquiry .wpcf7-form p {
    width: 100% !important;
  }

  .cta-product-img {
    border: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
  }

  .countdown-number {
    font-size: 3rem;
  }

  .countdown-item {
    margin: 0 20px;
  }

  .dt_heading_inner {
    font-size: 1rem;
  }

  .dt_siteheading .title.overlay-anim-white-bg {
    font-size: 32px;
  }

  .dt_footer_top {
    padding: 45px 20px !important;
  }
}

@media (max-width: 575px) {
 
  .blog_details_page .blog-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog_details_page .category-tag {
    padding: 5px 11px;
    font-size: 11px;
  }

  .blog_details_page .publish-date {
    font-size: 11px;
    padding: 5px 11px;
  }

  .blog_details_page .author-info {
    gap: 0;
  }

  .blog_details_page .author-name {
    font-size: 15px;
  }

  .blog_details_page .social-buttons {
    justify-content: center;
  }
.blog_details_page .article-content p img {
    width: 100% !important;
    height: 360px !important;
  }
  .countdown-number {
    font-size: 2rem;
  }

  .countdown-item {
    margin: 0 10px;
  }

  .countdown-label {
    font-size: 12px;
  }
}
@media (max-width: 576px){
   .dt_content_block {
    margin-top: 170px;
  }
}
@media (max-width: 300px) {
  .blog_details_page .author-info {
    flex-wrap: wrap;
  }
}



/* ------------------- [Responsive Media End] --------------- */

.faq-box .faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-box .faq-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.faq-box .faq-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
}

.faq-box .faq-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.faq-box .faq-decorative {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.1;
  animation: faq-float 6s ease-in-out infinite;
}

@keyframes faq-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.faq-box .faq-item {
  background: white;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-box .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-box .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-box .faq-item.active::before {
  transform: scaleY(1);
}

.faq-box .faq-question {
  padding: 15px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-box .faq-question:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.faq-box .faq-question h5 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
  flex: 1;
  padding-right: 20px;
}


.faq-box .faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.faq-box .faq-toggle i {
  transition: transform 0.3s ease;
}

.faq-box .faq-item.active .faq-toggle {
  background: var(--secondary);
  transform: rotate(180deg);
  color: #000;
}

.faq-box .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(102, 126, 234, 0.02);
}

.faq-box .faq-answer.active {
  max-height: 300px;
  padding: 20px 30px 30px 50px;
}

.faq-box .faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.faq-box .faq-answer.active p {
  transform: translateY(0);
  opacity: 1;
}

.faq-box .faq-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.faq-box .stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 150px;
}

.faq-box .stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-box .stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .faq-box .faq-title {
    font-size: 2.5rem;
  }

  .faq-box .faq-question {
    padding: 20px;
  }

  .faq-box .faq-answer.active {
    padding: 0 20px 20px 70px;
  }


}

.toc-box {
  background: linear-gradient(135deg, #fff 80%, #f3eaff 100%);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(98, 8, 177, 0.10), 0 1.5px 8px rgba(255, 215, 0, 0.08);
  margin: 32px 0;
  font-family: inherit;
  border: 1.5px solid var(--primary);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.toc-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: var(--secondary);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: toc-float 7s ease-in-out infinite;
}

@keyframes toc-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.toc-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.toc-header h3::before {
  content: "\f02d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  font-size: 1.2em;
  margin-right: 7px;
  background: #ebebeb;
  border-radius: 50%;
  padding: 4px 7px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toc-toggle {
  background: var(--primary);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #fff;
  border-radius: 100px;
  padding: 4px 14px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(98, 8, 177, 0.08);
}

.toc-toggle:hover,
.toc-toggle:focus {
  background: var(--secondary);
  color: #222;
  transform: translateY(-2px) scale(1.08);
}

.toc-content {
  margin-top: 12px;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.4s;
}

.toc-content ol {
  padding-left: 22px;
  margin: 0;
  counter-reset: toc-item;
}

.toc-content ol li {
  margin: 7px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}

.toc-content ol>li::before {
  content: counter(toc-item) ". ";
  counter-increment: toc-item;
  font-weight: 700;
  color: #000;
  margin-right: 6px;
  font-size: 1em;
  border-radius: 50%;
  padding: 2px 8px;
  margin-left: -22px;
  margin-top: 0;
  display: inline-block;
  min-width: 28px;
  text-align: center;
}

.toc-content ol li a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--primary);
  transition: color 0.2s, border-color 0.2s;
}

.toc-content ol li a:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.toc-content ol li:hover {
  color: var(--primary);
}

@media (max-width: 600px) {
  .toc-box {
    padding: 12px 7px;
    border-radius: 12px;
    margin: 18px 0;
  }

  .toc-header h3 {
    font-size: 1rem;
  }

  .toc-content ol li {
    font-size: 13px;
  }
}


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

.comment {
  background: #fff;
  border-radius: 20px;
  padding: 30px 35px;
  margin-bottom: 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: transform 0.3s ease;

  cursor: pointer;
}

.comment-box {
  height: 381px;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}

.comment-box:hover {
  transform: translateY(-4px);
}

.comment-box .comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comment-box .avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #eee;
}

.comment-box .author_info {
  display: flex;
  flex-direction: column;
}

.comment-box .fn a {
  font-weight: 700;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
}

.comment-box .fn a:hover {
  color: #6a1b9a;
}

.comment-box time {
  font-size: 0.875rem;
  color: #888;
  margin-top: 2px;
}

.border-top {
  border-top: 1px solid #80808021;
  padding-top: 15px;
}

/* .comment-box .comment-reply-link {
  font-size: 0.85rem;
  color: #6a1b9a;
  text-decoration: none;
  float: right;
  background: rgba(106, 27, 154, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.comment-box .comment-reply-link:hover {
  background: #6a1b9a;
  color: #fff;
} */

.comment-box .comment-content p {
  margin: 0;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.comment-box .comment-content {
  padding: 10px 0;
}

.related-blog-section .related-blogs {
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  margin: 50px 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.related-blog-section .related-blogs .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  border-left: 4px solid #6a1b9a;
  padding-left: 12px;
}

.related-blog-section .blog-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 10%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-bottom: 30px; */
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.related-blog-section .blog-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.related-blog-section .blog-box img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-blog-section .blog-box a {
  display: block;
  padding: 15px;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-blog-section .blog-box a:hover {
  color: #6a1b9a;
}

/* Responsive fix */
@media (max-width: 767px) {
  .related-blog-section .blog-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .related-blog-section .blog-box img {
    width: 100%;
    height: auto;
  }

  .related-blog-section .blog-box a {
    padding: 15px 10px;
  }
}





.comment-box .comment-body {
  border-radius: 10px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  position: relative;
  text-align: left !important;
}

.comment-box .comment-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  border-radius: 10px;
  height: 100%;
  border-left: 5px solid #6f42c1;
  border-radius: 10px 0 0 10px;
  opacity: 1;
}

.comment-box .comment-body:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comment-box .comment-body {
  padding: 1.25rem 1.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

/* 
.horizontal-blog-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  flex-direction: row;
}

.horizontal-blog-card:hover {
  transform: translateY(-5px);
}

.horizontal-blog-card .blog-card {
  flex: 0 0 320px;
  background-size: cover !important;
  background-position: center !important;
  min-height: 220px;
  border-radius: 0;
  margin: 0;
  position: relative;
}

.horizontal-blog-card .card-overlay {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.horizontal-blog-card .category-tag {
  font-size: 0.9rem;
  color: #6a1b9a;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.horizontal-blog-card .category-tag i {
  margin-right: 8px;
  color: #6a1b9a;
}

.horizontal-blog-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.horizontal-blog-card .card-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.horizontal-blog-card .read-more-btn {
  align-self: flex-start;
  background: #6a1b9a;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
}

.horizontal-blog-card .read-more-btn:hover {
  background: #4a1176;
} */


.horizontal-blog-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.horizontal-blog-card .blog-card {
  width: 300px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.horizontal-blog-card .card-overlay {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-blog-card .card-content {
  margin-top: 10px;
}

.horizontal-blog-card .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.horizontal-blog-card .card-description {
  color: #555;
  font-size: 1rem;
}



.horizontal-blog-card .category-tag i {
  margin-right: 6px;
}


@media (max-width:768px) {
  .horizontal-blog-card {
    flex-direction: column;
  }

  .horizontal-blog-card .blog-card {
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
    width: 100%;
    height: 230px;
  }

  .horizontal-blog-card .card-overlay {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
  }
}

/* Right-side info */
/* .horizontal-blog-card .card-action-section {
  padding: 25px;
  min-width: 180px;
  border-left: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
} */

.card-action-section .price-group {
  margin-bottom: 10px;
}

.card-action-section .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.card-action-section .new-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #6a1b9a;
}

.card-action-section .rating {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.card-action-section .rating i {
  margin-right: 2px;
}

.card-action-section .rating-value {
  font-size: 0.9rem;
  margin-left: 5px;
  color: #444;
}

.card-action-section .sales-count {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #666;
}

.card-action-section .buy-now-btn {
  background: #6a1b9a;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
}

.card-action-section .buy-now-btn:hover {
  background: #51107f;
}


/* Custom Pagination Styles */
.pagination {
  gap: 8px;
}

.page-item {
  transition: transform 0.2s ease-in-out;
}

.pagination {
  display: flex;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 10%);
  padding: 5px 10px;
  width: fit-content;
  margin: auto;
  border-radius: 100px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.page-item .page-link {
  background-color: #fff !important;
  border: none;
  border-radius: 100% !important;
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 10%);
}

.page-item .page-link:hover {
  background-color: #e5d4fa;
  color: #4a148c;
  transform: translateY(-2px);
}

.page-item.active .page-link {
  background-color: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(106, 27, 154, 0.3);
  cursor: default;
}

@media (max-width:768px)
{
     .support-div ul{
    padding: 0;
  } 
  .contact-author-box
{
  padding: 15px !important;
}
}

@media (max-width:500px) {
  .content-section .lead {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 25px;
  }
}