

:root {
  --primary-color: #009c94;
  --transition: 0.5s;
  --light-bg: #edf2f7;
  --dark-text: #1a202c;
  --light-text: #4a5568;
  --base-font: "Inter", sans-serif;
  --secondary-font: "Montserrat", sans-serif;
  --Raleway-font: "Raleway", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: var(--dark-text);
  overflow-x: hidden;
}
.btn-primary{
  background:  var(--primary-color);
  box-shadow: none;
}
.btn-primary:hover{
  background:  var(--primary-color);
  box-shadow: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

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

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

@media (min-width: 991px) {
  .mtop-lg {
    margin-top: 70px;
  }
}

@media (max-width: 991px) {
  .mtop-lg {
    margin-top: 20px;
  }
}

.mask-image {
  /* padding: 120px 0 0 0; */
  position: relative;

}
.text-primary{
  color: var(--primary-color) !important;
}
.navbar {
  background-color: transparent;
  z-index: 10;
  padding: 20px 0px;
  /* position: absolute;
  top: -18px; */
  width: 100%;
  transition: top 0.4s ease, background-color 0.3s;
  z-index: 999;
}
.navbar.fixed-nav {
  position: fixed;
  top: -100px;
  width: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.navbar.fixed-nav.show {
  top: 0;
  z-index: 1000;
  padding: 20px 0px;
  animation: headerSlideDown 0.5s linear;
}
/* Slide-down animation */
@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media (max-width: 991px) {
  .navbar {
    display: none;
  }
}

.mr-lg {
  margin-right: 80px;
}

.navbar-brand img {
  height: 40px;
  max-width: 65px;
}

.nav-link {
  color: var(--dark-text);
  padding: 0px 5px;
  font-weight: 400;
}

.nav-link:hover {
  cursor: pointer;
  color: var(--primary-color);
}

.nav-item {
  padding: 0px 20px;
  margin: 0 8px;
  line-height: 36px;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  border: 1px solid transparent;
}

.nav-item.active {
  /* background-color: #D9D9D92E; */
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #009c942e;
  box-shadow: rgb(0, 156, 148) 0px 3px 2px 0px;
}

.nav-item.active a {
  color: var(--primary-color);
}

.btn-contact {
  background-color: var(--primary-color);
  color: white;
  border-radius: 20px;
  padding: 7px 30px;
  border: none;
  margin-left: 13%;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 156, 148, 0.7);
  transition: left 0.4s ease;
  border-radius: 20px;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #fff;
}

.hero-section {
  padding: 10px 50px;
  padding-top: 10px;
  position: relative;
  padding-top: 1rem;
}



.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 100%;
}

.hero-subtitle {
  font-size: 43px;
  font-weight: 400;
  margin-bottom: 1rem;
  width: 350px;
}

.hero-text {
  color: #000;
  margin-bottom: 2rem;
  max-width: 500px;
  font-size: 15px;
  font-weight: 400;
}

.btn-view {
  background-color: transparent;
  color: var(--dark-text);
  border: 1px solid #1f2122;
  border-radius: 55px;
  padding: 5px 6px 5px 12px;
  margin-right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.btn-icon {
  background-color: #fff;
  border: 1px solid transparent;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  line-height: 30px;
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

.btn-view:hover {
  background-color: #fff;
}

.btn-view:hover .btn-icon i {
  color: #000;
}

.btn-buy {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 55px;
  padding: 5px 6px 5px 12px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
}

.btn-buy img {
  margin-left: 1px;
  height: 20px;
  width: 20px;
  text-align: center;
  margin-bottom: 4px;
}

.btn-buy:hover {
  border-color: var(--primary-color);
  background-color: transparent;
}

.offer-radius-box {
  background-color: #fff;
  border-radius: 65px 225px 65px 65px;
  padding: 80px;
  text-align: center;
}

.product-image {
  z-index: 999;
  position: relative;
  max-width: 350px;
  height: auto;
}

.offer-section {
  padding: 3rem 0;
  background-image: linear-gradient(
    180deg,
    hsl(206deg 100% 97%) 0%,
    hsl(202deg 100% 97%) 18%,
    hsl(199deg 100% 96%) 26%,
    hsl(196deg 100% 96%) 33%,
    hsl(193deg 100% 96%) 39%,
    hsl(191deg 100% 96%) 44%,
    hsl(189deg 100% 96%) 50%,
    hsl(185deg 95% 96%) 56%,
    hsl(181deg 88% 95%) 61%,
    hsl(177deg 89% 95%) 67%,
    hsl(173deg 93% 95%) 74%,
    hsl(168deg 97% 96%) 82%,
    hsl(164deg 100% 96%) 100%
  );
}

.offer-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffc800;
  margin-bottom: 4rem;
  font-family: var(--secondary-font);
  text-shadow: 2px 2px 2px rgba(74, 72, 72, 0.84);
}

.discount-bedge {
  position: absolute;
  top: -40px;
  right: -8px;
  width: 155px;
  max-width: 215px;
}

.price-tag {
  margin-left: 0.5rem;
}

.discount {
  font-size: 45px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4rem;
  font-family: var(--secondary-font);
}

.pricing-options {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: center;
  align-items: center;
}

.pricing-option {
  text-align: center;
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  width: 80px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.days {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0;
}

.days-text {
  font-size: 0.8rem;
  color: var(--light-text);
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 85px;
}

.countdown-item {
  position: relative;
  width: 85px;
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.8px dashed #6495ed;
  border-radius: 50%;
}

.countdown-number {
  font-size: 30px;
  font-weight: 700;
  color: #587ae1;
  margin-bottom: 0;
  line-height: 30px;
}

.countdown-label {
  font-size: 17px;
  color: #587ae1;
  margin-top: 0;
  font-weight: 800;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .countdown-container {
    gap: 15px;
  }

  .countdown-item {
    width: 90px;
    height: 90px;
  }

  .countdown-number {
    font-size: 28px;
  }

  .countdown-label {
    font-size: 14px;
  }
}

.btn-shake {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 26px 19px;
  width: 100%;
  max-width: 305px;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
  font-size: 17px;
}

.btn-shake.btn:before {
  display: none;
}

.btn-shake:hover {
  background-color: rgba(0, 156, 148, 0.51);
  border-color: rgba(0, 156, 148, 0.51);
  border-radius: 5px !important;
  color: #fff;
}

/* offer section end  */
.products-section {
  background-color: #d6eae9;
  border-radius: 45px;
  padding: 22px 20px 10px 22px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
}

.products-header .products-title {
  font-size: 18px;
  font-weight: 600;
}

.products-header .see-all {
  color: var(--dark-text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.product-card {
  background-color: #dedede;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.product-img {
  width: 305px;
  height: 110px;
  background-color: #fff;
  border-radius: 12px;
  margin-right: 10px;
}

.product-img img{
object-fit: contain;
padding: 10px;
}

.product-info {
  flex-grow: 1;
  margin-right: 10px;
}

.product-name {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 18px;
}

.product-neche {
  font-size: 13px;
  margin-bottom: 7px;
}

.product-desc {
  font-size: 12px;
  color: #000000c4;
  margin-bottom: 0;
  line-height: 15px;
}

.product-actions {
  display: flex;
  gap: 1.5rem;
  width: 270px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
}

.btn-view-small {
  background-color: white;
  color: var(--dark-text);
  border: 1px solid #cbd5e0;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  margin: 5px 0;
}

.btn-buy-small {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  margin: 5px 0;
}

.btn-buy-small a{
  color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 32px;
}

/* Testimonial Section Styles */
.testimonial-section {
  padding: 80px 0;
}

.testimonial-card {
  border-radius: 35px;
  padding: 25px;
  height: 100%;
  transition: all 0.5s ease;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.15) 4px 5px 3px 0px;
  background: linear-gradient(
    184deg,
    rgb(255, 255, 255) 0%,
    rgb(230, 255, 249) 50%
  );
  width: 100%;
}

.stars {
  color: #eac606;
  margin-bottom: 15px;
  font-size: 25px;
}

.swiper {
  padding-top: 30px;
  padding-bottom: 30px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
  color: #000;
}

.vendor-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease;
}

.vendor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ddd;
  margin-right: 15px;
}

.vendor-name {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 14px;
}

.vendor-title {
  font-size: 12px;
  color: #777;
}

.testimonial-card.active {
  /* width: 100%; */
  background: linear-gradient(
    7deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(230, 255, 249, 1) 50%
  );
}

.testimonial-card.active .vendor-info {
  opacity: 1;
  visibility: visible;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.service-card {
  /* background-color: #D9D9D9; */
  border-radius: 30px;
  padding: 30px 45px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  /* overflow:
  hidden; */
}

.service-card::before {
  content: "";
  position: absolute;
  background-color: #d9d9d9;
  top: 0;
  left: 0;
  border-radius: 30px;
  width: 100%;
  transition: 0.5s ease-in-out;
  height: 100%;

  z-index: -1;
}

.service-card:hover::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  background-color: #1db2ab;
  /* transform: rotate(45deg); */
  z-index: -2;
}

.service-card:hover::before {
  transform: rotate(15deg);
  background-image: linear-gradient(
    180deg,
    hsl(0deg 0% 85%) 0%,
    hsl(167deg 3% 86%) 8%,
    hsl(167deg 6% 87%) 17%,
    hsl(167deg 9% 88%) 25%,
    hsl(167deg 13% 89%) 33%,
    hsl(167deg 18% 89%) 42%,
    hsl(167deg 23% 90%) 50%,
    hsl(167deg 30% 91%) 58%,
    hsl(167deg 38% 92%) 67%,
    hsl(167deg 48% 93%) 75%,
    hsl(167deg 61% 94%) 83%,
    hsl(167deg 77% 94%) 92%,
    hsl(167deg 100% 95%) 100%
  );
}

.service-icon {
  margin-bottom: 20px;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 70px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.service-description {
  font-size: 13px;
  color: #000;
  margin-bottom: 20px;
  font-family: var(--secondary-font);
  line-height: 19px;
}

.service-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 31px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-card:hover .service-btn {
  background-color: var(--primary-color);
  color: #fff;
}

/* Newsletter Section */
.newsletter-section {
  background-color: #1db2ab;
  padding: 20px;
  border-radius: 4px;
  margin: 50px 0 80px 0;
  position: relative;
}

.newsletter-section:before {
  content: "";
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 100%;
  border: 1px solid #002b29;
  height: 100%;
  z-index: -1;
}

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

.newsletter-image {
  width: 290px;
  height: 185px;
  margin: auto;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.newsletter-form {
  width: 100%;
}

.newsletter-form input {
  border-radius: 5px;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 10px;
  border: none;
  color: #000000c2;
  font-size: 14px;
}

.newsletter-form .contact-btn {
  background-color: #002e2c;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn.contact-btn:before {
  display: none;
}

.newsletter-form .contact-btn:hover {
  background-color: #004a47;
  color: #fff;
}
.comment-meta{
    background: #fff;
    padding-top: 0;
}
/* Footer Section */
footer {
  background-color: #002e2c;
  color: white;
  padding: 50px 0 0px 0;
  color: #dddada;
  font-family: var(--Raleway-font);
  font-weight: 500;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  height: 95px;
  width: 90px;
  object-fit: contain;
}

.footer-logo span {
  color: #20b2aa;
}

.footer-text {
  color: #dddada;
  font-size: 13px;
  margin-top: 25px;
  font-family: var(--Raleway-font);
  font-weight: 500;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: var(--secondary-font);
}

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

.quick-links li {
  margin-bottom: 16px;
}

.quick-links a {
  color: #dddada;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: var(--Raleway-font);
  font-weight: 500;
}

.quick-links a:hover {
  color: #20b2aa;
}

.quick-links i {
  margin-right: 10px;
}

.contact-info {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: #ccc;
  margin-top: 5px;
}

.contact-info .text {
  color: #dddada;
  font-size: 14px;
  font-family: var(--Raleway-font);
  font-weight: 500;
  margin-left: 7px;
}

.working-hours {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.working-hours img {
  width: 22px;
  margin-right: 8px;
}

.working-hours .day {
  width: 120px;
  color: #ccc;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  margin: 5px 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  margin: 0 5px;
  transition: transform 0.3s;
  border: 1px solid #d0c9c9;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.social-icons a:hover {
  transform: translateY(-5px);
}

.divider {
  margin: 50px 0;
  border-color: #20b2aa;
  opacity: 0.3;
}

.copyright {
  padding: 15px 0;
  color: #e1dcdc;
  font-size: 14px;
  font-family: var(--Raleway-font);
  text-align: center;
  background: #1db2ab;
}

.footer-bottom {
  background-color: #1db2ab;
}

.site-copyright {
  font-size: 13px;
  font-weight: 800;
  color: #fff !important;
  transition: 0.5s ease-in-out;
}

.site-copyright:hover {
  color: rgb(220, 230, 227) !important;
}

@media (max-width: 1199px) {
  .nav-item {
    padding: 0px 7px;
    margin: 0 8px;
    line-height: 36px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    padding: 25px 0;
  }

  .hero-title {
    font-size: 55px;
  }

  .hero-subtitle {
    font-size: 40px;
  }

  .product-image {
    height: 370px;
    max-width: 350px;
  }

  .mask-image {
    padding: 90px 0px 15px 0px;
  }

  .swiper {
    height: 300px;
    max-height: 500px;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .services-section {
    padding: 50px 0;
    background-color: #f9f9f9;
  }

  .services-section .section-title {
    margin-bottom: 50px !important;
  }

  .service-card:hover::before {
    transform: rotate(6deg);
  }

  .newsletter-section::before {
    bottom: -13px;
    right: -10px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .offer-radius-box {
    padding: 45px;
  }

  .offer-title {
    margin-bottom: 2rem;
  }

  .discount {
    margin-bottom: 2rem;
  }

  .countdown-container {
    margin-bottom: 50px;
  }

  .newsletter-content {
    flex-direction: column;
  }

  .newsletter-image,
  .newsletter-form {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-column {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .footer-column {
    margin-bottom: 15px;
  }

  .divider {
    margin: 10px 0;
  }

  .offer-radius-box {
    border-radius: 50px 150px 50px 50px;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 25px;
  }

  .hero-text {
    font-size: 12px;
    margin-bottom: 1rem;
  }

  .btn-view {
    margin-right: 1rem;
  }

  .offer-title {
    font-size: 30px;
  }

  .discount-bedge {
    top: -40px;
    right: 15px;
    width: 130px;
    max-width: 215px;
  }

  .discount {
    font-size: 40px;
  }

  .countdown-item {
    width: 80px;
    height: 80px;
  }

  .btn-shake {
    padding: 19px 19px;
    width: 100%;
    max-width: 280px;
  }

  .section-title {
    font-size: 25px;
    margin-bottom: 13px;
  }

  .testimonial-section {
    padding: 40px 0;
  }

  .newsletter-section {
    margin: 50px 0 50px 0;
  }

  .newsletter-section::before {
    bottom: -5px;
    right: -5px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 35px;
  }

  .product-image {
    height: 305px;
    max-width: 340px;
  }
}

@media (max-width: 360px) {
  .hero-section {
    padding: 10px 25px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 19px;
    width: 100%;
  }

  .btn-view {
    font-size: 12px;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
    line-height: 18px;
  }

  .btn-buy img {
    height: 12px;
    width: 12px;
    margin-bottom: 2px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .services-section .section-title {
    margin-bottom: 38px !important;
  }

  .offer-radius-box {
    padding: 30px;
    border-radius: 35px 95px 35px 35px;
  }

  .product-card {
    flex-wrap: wrap;
  }

  .product-img {
    width: 100%;
    height: 135px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .product-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    text-align: center;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .discount-bedge {
    top: -10px;
    right: -1px;
    width: 72px;
    max-width: 85px;
  }

  .btn-shake {
    padding: 17px 17px;
    width: 100%;
    max-width: 230px;
    font-size: 14px;
  }

  .countdown-item {
    width: 70px;
    height: 70px;
  }

  .countdown-number {
    font-size: 20px;
    line-height: 22px;
  }

  .countdown-label {
    font-size: 11px;
  }

  .countdown-container {
    margin-bottom: 40px;
  }
}

.mobile-nav {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);

  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-nav.active {
  transform: translatex(0);
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  color: white !important;
  margin: 1rem 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  cursor: pointer;
}

.menu-toggle {
  background: #62d0c0;
  padding: 4px 7px;
  border-radius: 5px;
}

/* blog paage design ------------ */

/* Animation Classes */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Breadcrumb Section */

.page-header {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center 49.725px;

  border-radius: 0px;
  padding: 65px 0;
  overflow: hidden;
  z-index: 0;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(159, 159, 159, 0.17) -24.69%,
    rgba(0, 156, 148, 0.22) 67.71%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}
.breadcrumb-row {
  z-index: 999;
  position: relative;
}
.breadcrumb-row ul {
  background: #fff;
  border: 0;
  border-radius: 0;
  display: inline-block;
  margin: 0 12px 0 0;
  padding: 10px 33px;
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
}
.breadcrumb-row ul::after {
  background-color: inherit;
  content: "";
  height: 100%;
  position: absolute;
  right: -12px;
  top: 0;
  width: 7px;
  z-index: 1;
}
.breadcrumb-row ul li {
  color: var(--primary-color);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  -webkit-transform: skewX(12deg);
  transform: skewX(12deg);
}
.breadcrumb-row ul li a {
  color: #000;
}

.breadcrumb-row ul li.active {
  color: var(--primary-color);
}
.breadcrumb-row ul .breadcrumb-item + .breadcrumb-item::before {
  color: var(--primary-color);
  content: "\f105";
  font-family: fontawesome;
  font-size: 14px;
  font-weight: 700;
  padding-right: 10px;
  position: relative;
  top: 2px;
}
/* Blog Section */
.blog-section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--primary-color);
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.section-divider span {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  position: relative;
}

.section-divider span::before,
.section-divider span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
}

.section-divider span::before {
  left: -5px;
}

.section-divider span::after {
  right: -5px;
}

/* Blog Cards */
.blog-container {
  margin-top: 40px;
}

.blog-item {
  animation-delay: calc(0.2s * var(--i, 1));
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image-container {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.blog-image {
  height: 100%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.blog-card:hover .category-badge {
  background: var(--primary-color);
}

.blog-content {
  padding: 30px;
  height: 100%;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
  transition: var(--transition);
  line-height: 1.4;
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.blog-meta {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 14px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 100px;
  padding: 7px;
  width: fit-content;
  position: absolute;
  top: 20px;
  right: 30px;
}

.blog-meta span {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-block;
  width: fit-content;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
  position: relative;
  padding-bottom: 3px;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.read-more i {
  margin-left: 8px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--primary-color);
}

.read-more:hover::after {
  width: 100%;
  background: var(--primary-color);
}

.read-more:hover i {
  transform: translateX(5px);
  color: var(--primary-color);
}

/* Empty State */
.no-blogs {
  padding: 60px 0;
}

.empty-state {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.empty-state i {
  font-size: 60px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.empty-state p {
  font-size: 18px;
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .breadcrumb-area {
    padding: 80px 0;
  }

  .breadcrumb-content h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .blog-image {
    min-height: 200px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .breadcrumb-area {
    padding: 60px 0;
  }

  .breadcrumb-content h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .blog-image {
    min-height: 180px;
  }
}

.btn-style-two {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  color: #fff;
  overflow: hidden;
  padding: 6px;
  padding-right: 27px;
  position: relative;
      display: flex
;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: fit-content;
}

.btn-style-two:before {
  background-color: #fff;
  bottom: 10px;
  border-radius: 50px;
  content: "";
  height: 40px;
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
  width: 40px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index: 0;
}

.btn-style-two .icon {
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  height: 30px;
  width: 30px;
  z-index: 1;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.btn-style-two .icon i:first-child {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.btn-style-two .icon i {
  -webkit-transition: -webkit-transform 0.3s
    cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    -webkit-transform 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 10px;
}

.btn-style-two .icon i:last-child {
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.theme-btn .btn-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-style-two:hover {
  color: var(--primary-color);
}
.btn-style-two:hover:before {
  left: 50%;
  width: 100%;
}
.btn-style-two:hover .icon {
  background-color: #fff;
  color: var(--primary-color);
}.toc-box
.btn-style-two:hover i:first-child {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.btn-style-two:hover i:last-child {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}



.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-color);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
  margin-top: 10px;
}
.toc-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: var(--primary-color);
  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-color);
  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-color);
  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-color);
  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(--primary-color);
  color: #fff;
  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-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--primary-color);
  transition: color 0.2s, border-color 0.2s;
}
.toc-content ol li a:hover {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.toc-content ol li:hover {
  color: var(--primary-color);
}
@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-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 10%);
} */

.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;
}



.comment-box .comment-content p {
  margin: 0;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-left: 30px;   
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 10%);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.comment-box .comment-content p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  border-radius: 10px;
  height: 100%;
  border-left: 5px solid var(--primary-color);
  border-radius: 10px 0 0 10px;
  opacity: 1;
}


.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 var(--primary-color);
  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; */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px ;  
}



.dt_post_top_meta_list {
    margin: -2.3rem auto 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 10rem);
}
.dt_post_top_meta_list {
    list-style: none;
    padding: 0.8rem 1.2rem;
    background-color: #fff;
    z-index: 1;
    position: relative;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 1rem 5rem rgba(2, 2, 2, 0.09);
    box-shadow: 0 1rem 5rem rgba(2, 2, 2, 0.09);
    border-top: 0.4rem solid var(--primary-color    );
    /* Remove duplicate display:inline-block for centering */
}

.dt_post_top_meta_list > li {
    font-size: 1.5rem;
    position: relative;
    margin-right: 2rem;
    padding-right: 2.5rem;
}

 .dt_post_top_meta_list>li {
    vertical-align: middle;
    display: inline-block;
    margin-top: 0;
    /* margin-right: 1.5rem; */
}
.dt_post_top_meta_list > li > * {
    margin-bottom: 0;
    margin-top: 0;
}

.dt_post_item .dt_post_author {
    font-size: 1.7rem;
    margin-top: 2rem;
    color: var(--dt-sec-color);
    font-weight: 600;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.dt_post_item .dt_post_author a{
    display: inline-block;

}
.dt_post_author a span{
      font-size: 16px;
    font-weight: 500;
    color: #4c4c4c;
    display: inline-block;

}
 .dt_post_top_meta_list > li:not(:last-child):after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--primary-color   );
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.dt_post_top_meta_list > li > * {
    margin-bottom: 0;
    margin-top: 0;
}
.dt_post_top_meta_list > li:last-child{
    padding: 0;
    margin: 0;
}
.dt_post_date {
    display: inline-flex
;
    align-items: baseline;
    font-weight: 500;
    color: var(--primary-color  );
    margin-bottom: 1.6rem;
}

.dt_post_author a img{
   width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 2px solid #fff;

}

.dt_post_date {
    font-size: 15px;
    display: flex
;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.dt_post_catetag {
    font-size: 16px;
    display: flex
;
    align-items: center;
    justify-content: start;
  gap: 6px;
    border: 1px solid rgba(0, 0, 0, 15%);
    border-radius: 100px;
    padding-right: 20px;
    color: var(--primary-color);
}
.dt_post_catetag a {
  
    color: var(--primary-color);
}
.dt_post_catetag i{
width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;

}




.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-color) 0%, var(--primary-color) 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-color) 0%, var(--primary-color) 100%);
  color: #fff;
  
  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%;
}   

.featured-image-container::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;
}

.featured-image-container:hover::before{
  left: 120%;
}








@media (max-width:992px){
  .blog-content
  {
    max-width: 100%;
  }
}



.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 {
  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: contain;
  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(--primary-color);
  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);
  color: #fff !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(138, 43, 226, 0.18);
}

.product_list .btn-preview {
  background: var(--primary-color);
  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(--primary-color);
  color: #fff;
  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-color);
  transition: box-shadow 0.3s;
}

.layout-toggle button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--primary-color);
  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);
  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%);
  }
}



.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: #000;
  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(--primary-color);
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  outline: none;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(43, 226, 202, 0.4);
}

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

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




.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-color), var(--primary-color));
  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);
  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(--primary-color);
  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-color);
  background-color: rgba(99, 102, 241, 0.05);
}

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

.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 rgba(0, 0, 0, 0.1);
  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-color);
  border: 1px solid rgba(0, 0, 0, 10%);
}

.Detail_page .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
  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: #000;
}

.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-color), var(--primary-color));
  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: rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}

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

.Detail_page .plugin-card:hover {
  border-color: var(--primary-color);
  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 rgba(0, 0, 0, 0.1);
}

.Detail_page .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000;
}

.Detail_page .pricing-option {
  margin-bottom: 1rem;
  width: 100%;
  padding: 0;
}

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

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

.Detail_page .pricing-option input[type="radio"]:checked+label {
  border-color: var(--primary-color);
  background-color: #b5d7d52b;
}

.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: #000;
}

.Detail_page .price {
  font-weight: 700;
  color: var(--primary-color);
  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-color), var(--primary-color));
  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);
  color: var(--primary-color);
  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);
  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 rgba(0, 0, 0, 0.1);
}

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

.Detail_page .info-list span:first-child {
  font-weight: 600;
  color: #000;
}

.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-color);
}

.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);
  }
}



.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: var(--primary-color);
  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 var(--primary-color);
  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;
}


/* 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(--primary-color);
  padding: 5px 15px;
  border-radius: 100px;
  bottom: 10px;
  right: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 10%);
}

.item-header__author-details a {
  text-decoration: none;
  color: #fff;
  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-color);
  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);
  }
}



.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-color);
  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(--primary-color);
  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;
  color: #fff;
}

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


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

.support-div .support-link {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 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-color) 0%, var(--primary-color) 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{
  display: flex
;
    align-items: center;
    justify-content: space-between;
}
.review_box_wrap .review-header h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  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 var(--primary-color);
  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;
}



/* 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;
  }
}

@media (max-width: 992px) {
    .Detail_page .sidebar-sticky {
        position: unset;
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .layout-toggle {
        display: none !important;
    }
}