:root {
  /* Brand colors */
  --main-color: #871c3c;
  --secondary-color: #7ebe43;
  --link-color: #0A58CA;

  /* Neutral colors */
  --white: #ffffff;
  --black: #000000;
  --brown-light: #EDA762;
  --red-light: #FF7B67;
  --green-light: #79C6A8;
  --blue-light: #5DCEDA;
  --purple-light: #C295E9;

  /* Text colors */
  --text-desc: #383838;

  /* Backgrounds */
  --bg-main: #EFEFEF;
  --bg-lightPink: #fac7f6;

  /* btn transition */
  --btn-transition: all 0.4s ease;
}

/* Scrollbar styling */
html {
  scrollbar-color: #871c3c #fff;
  scrollbar-width: thin;
  -webkit-scrollbar-color: #871c3c #fff;
  -webkit-scrollbar-width: thin;
  margin: 0;
  scroll-behavior: smooth;
}
/* Font Awesome */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}

/* Roboto fonts (downloaded locally) */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* Apply globally */
body {
  font-family: "Roboto", Arial, sans-serif !important; 
}
.theme-color{
  color: var(--main-color);
}


/* POPUP OVERLAY */
.reels-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}

.reels-popup.active {
  display: flex !important;
  opacity: 1;
}

/* REELS CONTAINER */
.reels-container {
  width: 520px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* ReactPlayer video inside container */
.reels-container video,
.reels-container iframe {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* CLOSE BUTTON */
.reels-close {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.2s ease;
}

.reels-close:hover {
  color: var(--main-color);
}

/* COMMON ARROW STYLES */
.reels-arrow {
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  opacity: 1;
  font-size: 20px;
  transition: opacity .2s, transform .2s;
  position: absolute;
  right: 20px;
}

.reels-arrow.down {
  bottom: -70px;
}

/* SMALL DEVICE ADJUSTMENT */
@media (max-width: 600px) {
  .reels-container {
    width: 100vw;
  }

  .reels-arrow {
    font-size: 28px;
  }

  .reels-close {
    font-size: 28px;
  }
}



.fade-in {
  opacity: 1;
}

.fade-out {
  opacity: 0;
}

/* nprogress styles */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #ffd4d5;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;

  box-shadow:
    0 0 8px rgba(255, 212, 213, 0.9),
    0 0 16px rgba(255, 212, 213, 0.6),
    0 0 30px rgba(255, 212, 213, 0.4),
    0 2px 6px rgba(255, 212, 213, 0.35);
}

#nprogress .peg {
  box-shadow:
    0 0 8px rgba(255, 212, 213, 0.9),
    0 0 16px rgba(255, 212, 213, 0.6),
    0 0 30px rgba(255, 212, 213, 0.4),
    0 2px 6px rgba(255, 212, 213, 0.35);
}

/* Skeleton effect */
.skeleton {
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 150px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.486), transparent);
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  100% {
    left: 100%;
  }
}

/* Skeleton heading */
.skeleton-heading {
  width: 60%;
  height: 30px;
  margin: 20px auto;
}

/* Grid layout for cards */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* Skeleton card */
.skeleton-card {
  height: 250px;
}

/* Banner skeleton */
.skeleton-banner {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

/* Product card skeleton */
.skeleton-card {
  height: 250px;
  border-radius: 8px;
}

@media (min-width:1200px) {
  .container {
    width: 1270px !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.desktop-n {
    display: none;
}

.olny-m img {
    box-shadow: none;
}

.olny-m,.olny-m h5 {
    text-align: center;
}

.olny-m h5 {
    color: var(--main-color);
    margin: 11px 0 4px !important; 
    position: relative !important;
    top: auto !important;
    left: auto !important;
    max-width: 100% !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.header-top {
  background-color: var(--main-color);
  color: var(--white);
}

.header-top span {
  font-size: 15px;
}

.main-menu li {
  margin: 0px 18px;
}

.main-menu li a {
  color: var(--black);
  font-weight: 500;
}

.main-menu li a:hover {
  color: var(--main-color);
}

.search-bar-custom {
  max-width: 300px;
  border-radius: 50rem;
  box-shadow: 0 0 0 1px #ced4da;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  /* Smooth transition */
}

/* When input is focused — change the border color of parent */
.search-bar-custom:focus-within {
  box-shadow: 0 0 0 1px var(--main-color);
}

/* Input focus cleanup */
.search-bar-custom .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

/* General input + icon styling */
.search-bar-custom .form-control {
  padding: 5px;
}

.search-bar-custom span {
  margin-top: 2px;
}

.search-bar-custom span i {
  color: #b7b7b7;
  transition: color 0.3s ease;
}

/* Optional: change icon color on focus for better UX */
.search-bar-custom:focus-within span i {
  color: var(--main-color);
}

.f-info2 {
  margin-left: 35px;
}

.f-info2 i {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  font-size: 20px;
  padding: 10px 20px;
  margin-right: 13px;
}
.f-info h6 {
    font-weight: 400;
    margin: 0 0 0 5px;
    color: var(--white);
}


.f-info2 i::before {
  position: relative;
  left: -8px;
}

.f-info2 span {
    color: var(--main-color);
    margin-bottom: 0px;
    margin-top: 2px;
    font-size: 20px;
    font-weight: 500;
}
.f-info2 h6 {
    font-size: 13px;
    margin-bottom: 0;
    color: #3E3E3E;
}
.f-info2 h5 {
    color: var(--main-color);
    margin-bottom: 0;
    margin-top: 2px;
}

.f-info2 p {
    font-size: 13px;
    margin: 3px 0px 0px 0px;
    color: #3E3E3E;
    line-height: 14px;
}

.main-bg {
  background-color: var(--bg-main);
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.main-head {
  padding-right: 50px;
}

.main-head h1 {
  font-size: 44px;
  font-weight: 500;
  color: var(--black);
}

.main-head span {
  color: var(--main-color);
}

p {
  color: var(--text-desc);
  margin: 12px 0;
  line-height: 28px;
}

.main-head a {
  padding: 10px 40px;
  color: var(--white) !important;
  font-weight: 500;
  border-radius: 50px;
  display: inline-block;
}

.btn-1 {
  background-color: var(--brown-light);
  transition: var(--btn-transition);
}

.btn-1:hover {
  background-color: #eda762c9;
}

.btn-2 {
  background-color: var(--red-light);
  transition: var(--btn-transition);
}

.btn-2:hover {
  background-color: #ff7b67d1;
}

.btn-3 {
  background-color: var(--green-light);
  transition: all 0.3s ease;
}

.btn-3:hover {
  background-color: #79c6a8d1;
}

.btn-4 {
  background-color: var(--blue-light);
  transition: var(--btn-transition);
}

.btn-4:hover {
  background-color: #5dcedad1;
}

.btn-5 {
  background-color: var(--purple-light);
  transition: var(--btn-transition);
}

.btn-5:hover {
  background-color: #c295e9d1;
}

.main-img {
  position: absolute;
  top: 50%;
  right: 14%;
  transform: translateY(-50%);
}

.padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.slider-sec {
  overflow: hidden;
  position: relative;
  padding-top: 22px;
  padding-bottom: 22px;
  background-color: #e4cbd2;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(250px * 12);
  /* adjust based on image width × image count */
  animation: scroll 40s linear infinite;
}

.slide-track img {
  margin-right: 180px;
  transition: transform 0.3s ease;
}

.slide-track img:hover {
  transform: scale(1.03);
}


/* Animation keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 4));
    /* half the width (for looping) */
  }
}

.cate-info {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.cate-info img {
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.cate-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0000005c;
  transition: background 0.4s ease;
  border-radius: 15px;
}

.cate-info:hover img {
  transform: scale(1.02);
}

/* .cate-info:hover::after {
  background: rgba(0, 0, 0, 0.3);
} */

.cate-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 0px 20px;
  z-index: 1;
}

.cate-detail h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.cate-detail .left {
  color: var(--white);
}

.left h6 {
  font-weight: 400;
  margin-right: 12px;
  margin-bottom: 0px;
  font-size: 15px;
}

a:hover {
  color: inherit;
}


/* Base button */
.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--white);
  color: var(--black);
  border: none;
  border-radius: 50px;
  padding: 8px 18px 8px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Icon background */
.btn-shop .icon {
  background-color: var(--main-color);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  font-size: 14px;
}

/* Hover: fill entire button */
.btn-shop:hover {
  background-color: var(--main-color);
  color: var(--white);
}

/* Icon changes to match */
.btn-shop:hover .icon {
  background-color: var(--white);
  color: var(--main-color);
  transform: translateX(3px);
}

.splide__arrow {
  background: #ffffff !important;
  opacity: 1 !important;
}

.splide__arrow svg {
  height: 1em !important;
  width: 1em !important;
}

.splide__arrow--prev {
  left: 2em !important;
}

.splide__arrow--next {
  right: 2em !important;
}

.video-card {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 290px;
  height: auto;
  border-radius: 15px;
  cursor: pointer;
}

/* Thumbnail image (default visible) */
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s ease;
  display: block;
}

/* Video element (hidden by default) */
.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Play button styling */
.play-btn {
  background-color: var(--white);
  color: var(--black);
  border: none;
  border-radius: 50px;
  padding: 10px 18px 10px 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.4s ease, background-color 0.4s ease;
  z-index: 2;
}

.play-btn i {
  margin-right: 5px;
  color: var(--main-color);
}

.play-btn:hover {
  background-color: var(--main-color);
  color: var(--white);
}

.play-btn:hover i {
  color: #fff;
}

/* On hover: hide image + button, show video */
.video-card:hover .video-thumb-img {
  opacity: 0;
}

.video-card:hover .video-thumb {
  opacity: 1;
}

.video-card:hover .play-btn {
  opacity: 0;
  pointer-events: none;
}

/* Detail section below video */
.video-detail {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.video-detail img {
  border-radius: 50%;
  box-shadow: none;
}

.video-card h6 {
  margin: 0px;
}

.video-detail p {
  margin-bottom: 0px;
  color: var(--main-color);
  font-size: 13px;
  margin-top: 2px;
  font-weight: 500;
}

.h2-heading {
  color: var(--black);
  font-size: 32px;
  margin: 0px;
  font-weight: 500;
}

.mate{
  justify-content: center;
}
.pro-info {
  background-color: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  margin: 15px 0px;
  transition: all 0.4s ease;
  text-align: center;
}

.pro-info:hover {
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
}

.pro-info img {
  border-radius: 15px;
  width: 100%;
}

.pro-info h6 {
  color: var(--black);
  margin-top: 15px;
  margin-bottom: 5px;
}

.pro-info:hover h6 {
  color: var(--main-color);
  transition: all 0.4s ease;
}

.pro-info p {
    color: var(--black);
    margin-bottom: 0px ;
    font-weight: 500;
}

.pro-info:hover p {
  color: var(--main-color);
  transition: all 0.4s ease;
}


.tab-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.tab-btn {
  border: none;
  background: #fff;
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  width: 135px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgb(0 0 0 / 19%);
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--main-color);
  color: #fff;
}

.tab-btn:hover {
  background: var(--main-color);
  color: #fff;
}

.tab-contents {
  position: relative;
  min-height: 250px;
  /* Adjust depending on your slider height */
}

.tab-content {
  position: absolute;
  /* ✅ Removes inactive tabs from document flow */
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  pointer-events: none;
  overflow: hidden;
}

.tab-content.active {
  position: relative;
  /* active one stays in normal flow */
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}


.splide {
  position: relative;
  visibility: visible !important;
}

.splide__pagination {
  bottom: -1.5em !important;
}

.splide__pagination__page.is-active {
  background: var(--main-color) !important;
  opacity: 1 !important;
}

.splide__pagination li {
  margin: 0px 5px !important;
}

.how-bg {
  background-image: url('https://customdesignsboxes.com/all-images/how-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.how-info {
  text-align: center;
  max-width: 70%;
}

.how-info p {
  margin-bottom: 0px;
}

.how-info h5 {
  margin-top: 15px;
  margin-bottom: 0;
  color: var(--main-color);
  font-weight: 600;
}

.how-info img {
  background-color: #fff;
  border-radius: 50%;
  padding: 15px;
  border: 2px solid var(--main-color);
  box-shadow: -20px 13px 8px rgb(0 0 0 / 19%);
  margin-bottom: 20px;
}

.line1 {
  position: absolute;
  top: 70px;
  left: 260px;
}

.line2 {
  position: absolute;
  top: 50px;
  right: 250px;
}

.h-info2 {
  margin: auto;
}

.h-info3 {
  margin-left: auto;
}

.h-info2 h5 {
  color: #1885BC;
}

.h-info2 img {
  border: 2px solid #1885BC;
}

.p-category img {
  border-radius: 15px;
  box-shadow: 0 1px 15px rgb(0 0 0 / 11%);
}

.p-category h5 {
  color: var(--main-color);
  margin: 0;
  position: absolute;
  top: 22px;
  left: 22px;
  max-width: 47%;
  font-weight: 700;
  font-size: 22px;
}

.p-category .btn-shop {
  position: absolute;
  right: 22px;
  bottom: 22px;
}

.bg-pink {
  background-color: var(--bg-lightPink);
  padding: 48px 80px;
  border-radius: 20px;
  margin-top: 10px;
}

/* Base animated button (same effect as .s-btn) */
.btn-1,
.btn-2,
.btn-3,
.btn-4,
.btn-5 {
  position: relative;
  color: var(--white);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  overflow: hidden;
  z-index: 1;
  transition: background 0.4s ease, transform 0.3s ease;
}

/* Shine effect overlay */
.btn-1::before,
.btn-2::before,
.btn-3::before,
.btn-4::before,
.btn-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0));
  transition: all 0.5s ease;
  z-index: 0;
}

/* Hover animation */
.btn-1:hover::before,
.btn-2:hover::before,
.btn-3:hover::before,
.btn-4:hover::before,
.btn-5:hover::before {
  left: 100%;
}

.btn-1:hover,
.btn-2:hover,
.btn-3:hover,
.btn-4:hover,
.btn-5:hover {
  transform: translateY(-1.5px);
}

/* Unique base colors + hover shades */
.btn-1 {
  background-color: var(--brown-light);
}

.btn-1:hover {
  background-color: #eda762c9;
}

.btn-2 {
  background-color: var(--red-light);
}

.btn-2:hover {
  background-color: #ff7b67d1;
}

.btn-3 {
  background-color: var(--green-light);
}

.btn-3:hover {
  background-color: #79c6a8d1;
}

.btn-4 {
  background-color: var(--blue-light);
}

.btn-4:hover {
  background-color: #5dcedad1;
}

.btn-5 {
  background-color: var(--purple-light);
}

.btn-5:hover {
  background-color: #c295e9d1;
}

.s-btn {
  position: relative;
  background: var(--main-color);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px !important;
  font-weight: 400;
  border: none;
  overflow: hidden;
  /* REQUIRED */
  z-index: 1;
  transition: background 0.4s ease, transform 0.3s ease;
}

.s-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0));
  transition: all 0.5s ease;
  z-index: 0;
}

.s-btn:hover::before {
  left: 100%;
}

.s-btn:hover {
  background: #871c3cd4;
  transform: translateY(-1.5px);
}

.bg-pink h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--black);
  margin: 0px;
}

.style-info {
  position: relative;
  overflow: hidden;
  /* ensures overlay stays inside the border */
  border-radius: 15px;
}

.style-info img {
    border-radius: 15px;
    width: 100%;
    display: block;
    transition: transform .4s ease;
    margin-bottom: 10px;
}
.style-info {
    margin: 5px 0;
}

/* Title text */
.style-info h6 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: var(--white);
  z-index: 2;
  /* ensure text stays above overlay */
  margin: 0;
}
.style-info h6, .style-info span {
    color: var(--black);
    z-index: 2;
    margin-left: 6px;
        font-weight: 500;
}

.style-info:hover img {
  transform: scale(1.01);
}

table tr td {
  text-align: center;
  padding: 6px;
}

table {
  width: 100% !important;
  margin-bottom: 20px;
}

table tr td p {
  margin: 0px;
}

table,
th,
td {
  border: 1px solid black;
}

.long-bg {
  background-color: #f5f5f5d1;
}

.long-content {
  max-height: 450px;
  padding-right: 20px;
  overflow-y: scroll;
}


.long-content h1,
.long-content h2,
.long-content h3,
.long-content h4,
.long-content h5,
.long-content h6 {
  font-weight: 500;
  color: var(--black);
}

.pro-long a {
  color: var(--link-color);
}

.pro-long a:hover {
  text-decoration: underline;
}

.hub-top a {
  color: var(--link-color);
}

.hub-top a:hover {
  text-decoration: underline;
}

.long-content a {
  color: var(--link-color);
}

.long-content a:hover {
  text-decoration: underline;
}

.why-sec a {
  color: var(--link-color);
}

.why-sec a:hover {
  text-decoration: underline;
}

.center-mate a {
  color: var(--link-color);
}

.center-mate a:hover {
  text-decoration: underline;
}

.mate-info {
  position: relative;
  overflow: hidden;
}

.mate-info img {
  border-radius: 15px;
  display: block;
  width: 100%;
}

.mate-info h6 {
  position: absolute;
  top: 85%;
  left: 50%;
  background-color: var(--main-color);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 400;
  border-radius: 50px;
  text-align: center;
  transition: all 0.4s ease;
  width: max-content;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.mate-info span {
  position: absolute;
  top: 85%;
  left: 50%;
  background-color: var(--main-color);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 400;
  border-radius: 50px;
  text-align: center;
  transition: all 0.4s ease;
  width: max-content;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}


.bg-sample {
  background-color: #FFE8EF;
}
.turst-clients .testimonial-card {
  max-height: 148px;
  overflow-y: auto;
  padding: 15px 20px;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #871c3c transparent;
}

/* WebKit */
.turst-clients .testimonial-card::-webkit-scrollbar {
  width: 2px;
}

.turst-clients .testimonial-card::-webkit-scrollbar-thumb {
  background: #871c3c;
  border-radius: 10px;
}


.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 0 1px 1px rgb(0 0 0 / 7%);
  transition: all 0.3s ease;
  height: 100%;
  padding: 25px;
  
}

.testimonial-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.stars i {
  color: #871c3c;
  /* same maroon color */
  font-size: 14px;
  margin-right: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text-desc);
  line-height: 1.8;
  text-align: left;
  margin-top: 10px;
}

.client-slider .splide__pagination {
  position: relative !important;
  margin-top: 1px !important;
}

.client-slider .splide__slide {
  padding: 10px 0px;
}

.all-products {
  background-color: #fff5f7;
}

.all-product-slider .splide__pagination {
  position: relative !important;
  margin-top: 0px !important;
}

.splide__pagination__page {
  height: 10px !important;
  width: 10px !important;
}

.social-section {
  position: relative;
  background-image: url('https://customdesignsboxes.com/all-images/social-banner.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
}

.social-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  /* Black overlay */
  z-index: 1;
}

.social-section .container {
  position: relative;
  z-index: 2;
}

.social-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.icon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-overlay i {
  font-size: 45px;
  color: white;
}

/* Hover Effects */
.social-card:hover img {
  transform: scale(1.10);
}

.s-up {
  margin-top: -40px;
}

.accordion-item {
  background-color: #f6f6f6 !important;
  margin: 25px 0px;
  border: none;
  border-radius: 15px !important;
}

.accordion-button {
  background: transparent !important;
  box-shadow: 0 0 4px 1px #0000000d;
}

.accordion-button {
  color: #000 !important;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #E6E6E6;
  box-shadow: none !important;
}

span.accordion-icon.ms-auto i {
  font-size: 17px;
  color: #000;
}
.faq-acc span.accordion-icon.ms-auto i {
  font-size: 19px;
  color: #000;
}
.faq-acc .accordion-button:not(.collapsed) span.accordion-icon.ms-auto i {
   color:#fff !important;
}
.faq-acc i.fa-solid.fa-sort-up.minus-icon{
      position: relative;
    top: 4px;
}
.faq-acc i.fa-solid.fa-sort-down.plus-icon{
     position: relative;
    top: -3px;
}
.faq-bg{
  background-color: #f5f5f5;
}
.faq-bg .accordion-body {
    background-color: transparent !important;
}

.accordion-body {
  background-color: #fff !important;
  padding-top: 20px;
  padding-bottom: 0px;
  line-height: 30px;
}

.accordion-button::after {
  display: none;
}

.accordion-button .plus-icon {
  display: inline;
}

.accordion-button .minus-icon {
  display: none;
}

.accordion-button:not(.collapsed) .plus-icon {
  display: none;
}

.accordion-button:not(.collapsed) .minus-icon {
  display: inline;
}

.accordion-button:not(.collapsed) {
  background-color: var(--main-color) !important;
  color: var(--white) !important;
  border-color: var(--main-color) !important;
}

.accordion-button {
  border-radius: 15px !important;
}

i.fa-solid.fa-minus.minus-icon {
  color: var(--white);
}

.form-box {
  background: #fff url('https://customdesignsboxes.com/all-images/form-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 17%);
  max-width: 600px;
  padding: 30px;
}

.form-box h3 {
  font-weight: 600;
  color: var(--black);
}

.form-control,
.form-select {
  border-radius: 6px;
  border: 1px solid #b9b9b9;
  padding: 10px 14px;
  font-size: 15px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #871c3c;
  box-shadow: 0 0 0 0.15rem rgba(135, 28, 60, 0.25);
}

.f-btn {
  padding: 10px 80px !important;
  border-radius: 5px;
  font-weight: 400 !important;
}

.footer-sec {
  background: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 15px;
  position: relative;
}

.footer-head {
  font-weight: 600;
  color: var(--white);
  font-size: 20px;
}

.f-info span {
  margin: 0;
  font-weight: 400;
  margin-left: 5px;
  color: var(--white);
  transition: all 0.3s;
}
.f-info:hover span {
  color: #FFD4D5;
}

.f-info i {
  color: var(--main-color);
}

.f-info {
  margin: 13px 0px;
}

ul.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-top: 15px;
}

ul.social-icons li {
  margin-right: 7px;
}

ul.social-icons li a {
  background-color: var(--white);
  color: var(--black);
  border-radius: 50%;
  padding: 6px 9px;
  display: inline-block;
  font-size: 20px;
  transition: all 0.3s ease;
  /* Smooth transition */
}

ul.social-icons li a:hover {
  background-color: var(--main-color);
  color: var(--white);
  transform: translateY(-3px);
  /* Slight lift effect on hover */
}

.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-links li {
  margin: 12px 0;
}

.f-links li a {
  position: relative;
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

/* Unique underline slide effect */
.f-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

/* Hover animation */
.f-links li a:hover {
  color: #FFD4D5;
}

.f-links li a:hover::after {
  width: 100%;
}

.footer-head2 {
  font-weight: 600;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.f2 {
  padding-left: 100px;
}

.f3 {
  padding-left: 60px;
}

.f4 {
  padding-left: 60px;
}

.copyright {
  font-weight: 400;
  margin: 0;
  font-size: 15px;
  color: var(--white);
}

.copyright a {
  color: #FFD4D5;
  font-weight: 600;
}

.c-up {
  margin-top: 50px;
}

.footer-hr {
  margin: 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 1;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 70px;
  border-color: #8b8b8b2b;
  z-index: 3;
}

.g-img {
  margin-top: 10px;
}

.des-img {
  display: none;
}

.footer-section {
  display: none;
}

.for-mobile-only {
  display: none !important;
}

.theme-all {
  position: relative;
  background-image: url('https://customdesignsboxes.com/all-images/all-pages-banner.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: visible;
  z-index: 1;
}
.only-bg{
  background-color: #e6e6e6 !important;
  background-image: none !important;
}

/* 🔹 Black Overlay */
.theme-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e5e5e4f2;
  z-index: 0;
}

.main-heading2 {
  font-size: 36px;
  color: #000;
  font-weight: 500;
  display: inline-flex;
  margin: 0;
  align-items: center;
  line-height: 50px;
}

.main-heading2::before {
  content: "";
  display: inline-block;
  border: 4px solid var(--main-color);
  margin-right: 20px;
  vertical-align: middle;
  height: auto;
  border-radius: 15px;
  align-self: normal;
}


.breadcrumb-bg {
  background-color: #871d3c0d;
  padding-top: 5px;
  padding-bottom: 5px;
}

.custom-breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
}

.custom-breadcrumb a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-breadcrumb .home {
  color: #454545;
}

.custom-breadcrumb .current {
  color: #871c3c;
  font-weight: 500;
}

.custom-breadcrumb .divider {
  color: #000;
  font-weight: 500;
  font-size: 14px;
}

.p-category {
  margin: 10px 0px;
}

.why-img {
  border-top-left-radius: 115px;
  border-bottom-right-radius: 115px;
  box-shadow: -6px 5px 0px 2px var(--main-color);
}

.why-sec {
  padding-right: 25px;
}

.main-product-image-container img {
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
  border-radius: 15px;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  height: 100%;
  align-content: space-between;
}

.thumbnail {
  cursor: pointer;
  border-radius: 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  box-shadow: 0 0 0 0.2rem rgb(135 28 60);
}

.form-p {
  padding-left: 25px;
}



.product-tab .tab-btn.active {
  color: var(--main-color);
  font-weight: 600;
}

.product-tab .tab-btn {
  box-shadow: none;
  background: none;
  width: auto;
  font-size: 18px;
  font-weight: 400;
}

.product-tab .tab-btn:hover {
  color: var(--main-color);
}

.product-tab .tab-btn {
  position: relative;
  padding: 8px 20px 8px 0px;
}

.product-tab .tab-btn .icon {
  font-size: 12px;
}

.form-p h2 {
  color: var(--main-color);
}
.form-p p {
  color: var(--main-color);
  font-size: 32px;
  font-weight: 500;
}


.sticky {
  position: sticky !important;
  top: 100px;
}

.tab-content p:last-of-type {
  margin-bottom: 0 !important;
}

.style-info {
  margin: 5px 0px;
}

.mate-sec {
  background-color: #FFF4F7;
}

.mate-sec .img1 {
  position: absolute;
  bottom: -50px;
  width: 300px;
}

.mate-sec .img2 {
  position: absolute;
  top: -50px;
  width: 300px;
}

.mate-se .img3 {
  position: absolute;
  top: -50px;
  width: 300px;
}

.mate-se .img4 {
  position: absolute;

  bottom: -50px;
  width: 300px;
}

.center-mate {
  text-align: center;
  padding: 0px 30px;
}

.center-mate h3 {
  font-weight: 600;
  font-size: 34px;
  color: var(--black);
}

.mate-se {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ab-banner {
  position: relative;
  /* Needed for overlay */
  background-image: url('https://customdesignsboxes.com/all-images/about-banner.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
  border-radius: 20px;

}

/* Overlay */
.ab-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  background: rgba(0, 0, 0, 0.65);
  /* change opacity/color as needed */
  z-index: -1;
  /* place behind content */
  border-radius: 20px;
}

.ab-count {
  background-color: #fff;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0px;
  width: 450px;
  right: 0;
  text-align: center;
  border-top-left-radius: 15px;
}

.ab-count h3 {
  color: var(--main-color);
  font-weight: 600;
}

.blog-info {
  background-color: #fff;
  border-radius: 15px;
  padding: 12px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  margin: 12px 0px;
  transition: all 0.4s ease;
}

.blog-info:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.blog-info img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 2 / 1.15;
}

.blog-info h4 {
  font-weight: 500;
  color: var(--black);
  margin-top: 6px;
  margin-bottom: 3px;
  line-height: 32px;
}

.blog-info:hover h4 {
  color: var(--main-color);
  transition: all 0.4s ease;
}

.blog-info .date {
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px !important;
  margin-bottom: 0px !important;
}

.blog-content img {
  width: 100% !important;
  height: auto !important;
  border-radius: 15px;
}

.blog-content a {
  color: var(--link-color);
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-list {
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 0 4px 2px rgb(0 0 0 / 15%);
}

.blog-list h4 {
  padding: 20px 10px;
  background-color: var(--main-color);
  color: var(--white);
  text-align: center;
  border-radius: 15px;
}

/* Container of numbers + line + text */
.toc-wrapper {
  display: flex;
  gap: 15px;
  padding: 10px 10px 1px
}

/* Numbers column */
.toc-numbers {
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: var(--main-color);
  font-weight: bold;
}

.toc-numbers span {
  font-size: 32px;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--main-color);
  color: transparent;
}

/* Vertical divider line */


/* Items */
.toc-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.form-box2 {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 5px;
}

.form-box2 h2 {
  color: var(--main-color);
  font-size: 34px;
}

.item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  align-items: center;
}

.icon2 {
  font-size: 22px;
  color: #8a1d2f;
  /* matches your screenshot color */
  margin-right: 14px;
  margin-top: 2px;
}

.label {
  font-size: 14px;
  color: #757575;
  display: block;
}

.value {
  font-size: 18px;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

.full-width {
  width: max-content;
  background: #fff;
  padding: 0px 15px 10px 15px;
  position: absolute;
  left: -233px !important;
  top: 42px !important;
  border-radius: 15px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  box-shadow: 0 2px 10px 0 #00000024;
}
.full-width .p-category p {
    max-width: 100%;
    font-size: 19px;
    color: var(--main-color);
    margin: 0;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    margin-top: 10px;
}
.full-width .style-info p {
    color: var(--black);
    z-index: 2;
    margin-top: 5px;
    margin-left: 6px;
    margin-bottom: 0;
    font-weight: 500;
}
.fw2 {
  padding: 12px !important;
}

.full-width a {
  font-weight: 400 !important;
}

.full-width .col {
  margin: 8px 0px;
}

.full-width .p-category h5 {
  position: absolute;
  top: 15px;
  left: 15px;
  max-width: 55%;
  font-size: 19px;
}

.full-width .icon {
  display: none;
}

.full-width .p-category .btn-shop {
  right: 15px;
  bottom: 15px;
}

.full-width .btn-shop {
  font-size: 14px;
  font-weight: 500 !important;
}

.full-width .btn-shop:hover {
  color: var(--white) !important;
}

.full-width .s-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500 !important;
  margin: 0px auto;
  display: table;
}

.accordion-button:focus {
  border-color: var(--main-color) !important;
}


/* Curtain Reveal Mega Menu Animation */
@media (min-width: 992px) {

  /* Smooth click hide */
  .navbar .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.98);
    /* slide + slight zoom-out */
    filter: blur(3px);
    /* soft blur */
    max-height: 0;
    overflow: hidden;
    clip-path: inset(0 0 100% 0);

    transition:
      opacity 0.4s ease,
      transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
      /* spring feel */
      filter 0.35s ease,
      max-height 0.55s ease,
      clip-path 0.55s ease,
      visibility 0s linear 0.4s;

    pointer-events: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
  }

  .navbar .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    /* zoom-in + slide up */
    filter: blur(0px);
    /* crisp */
    max-height: 1200px;
    clip-path: inset(0 0 0 0);

    pointer-events: auto;
    transition-delay: 0.5s;
  }


  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 1200px;
    clip-path: inset(0 0 0 0);
    transition-delay: 0s;
    pointer-events: auto;
  }

  .main-menu li .nav-link:hover {
    color: var(--white);
    background: var(--main-color);
  }

  .main-menu {
    margin-left: 10px;
  }

  .fw2 {
    left: -369px !important;
  }

  .scroll-bar {
    top: 85 !important;
  }

  .nav-link:focus,
  .nav-link:hover {
    color: var(--black);
  }

  .dm-2 li a {
    font-weight: 400 !important;
    font-size: 16px;
    background-color: transparent !important;
  }

  .dm-2 li {
    margin: 5px;
    background-color: transparent !important;
  }

  h5.modal-title {
    font-size: 24px;
  }

  .scroll-bg-header {
    position: fixed;
    top: -90px;
    left: 0;
    width: 100%;
    transition: all 0.2s ease;
    z-index: 999;
  }

  .scroll-bg-header.active {
    top: 0;
    box-shadow: 0px 5px 10px #00000029;
  }


}

.dm-2 {
  background: #fff;
}


#scroll_up.active.scroll_up-text {
  transform: rotate(180deg) translate3D(-40px, 100px, 0);
  background-color: #fff;
  border-radius: 50px;
}

#scroll_up.active {
  opacity: 1;
}

#scroll_up.scroll_up-text {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  right: 0;
  bottom: 35px;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translate3D(-40px, -105%, 0);
  transform-origin: 0 0;
  padding: 23px 12px;
  border: 2px solid var(--main-color);
}

#scroll_up {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 20;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  top: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
  transform: translate(-30px, 5px);
  white-space: nowrap;
  padding: 0;
  color: var(--main-color);
}

#scroll_up.scroll_up-text i {
  z-index: 1;
  display: inline-block;
  transform: translateY(0) rotate(180deg);
  color: var(--main-color);
  transition: 0.4s;
  font-size: 18px;
  line-height: 0;
  writing-mode: horizontal-tb;
}

.fixed-call-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Hover scale */
.fixed-call-btn:hover {
  transform: scale(1.2);
}

/* Ripple effect using pseudo-elements */
.fixed-call-btn::before,
.fixed-call-btn::after {
  content: '';
  position: absolute;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  opacity: 0;
  animation: ripple 3s infinite;
}

.fixed-call-btn::after {
  animation-delay: 1.5s;
  /* Stagger the ripples */
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 575px) {
  .fixed-call-btn {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .fixed-call-btn::before,
  .fixed-call-btn::after {
    width: 40px;
    height: 40px;
  }
}

.c-image {
  width: 60px !important;
  aspect-ratio: auto !important;
  margin-top: -30px;
  margin-left: 15px;
  border: 1px solid #fff;
  border-radius: 50% !important;
}

.pack {
  padding: 0px !important;
}

.pack h4 {
  padding-left: 15px;
  padding-bottom: 15px;
  padding-right: 15px;
}

.hub-img {
  border-radius: 10px;
  position: sticky;
  top: 105px;
}

.h-image {
  border: 1px solid #fff;
  border-radius: 50%;
}

.hub-top {
  margin-top: 30px;
}

a.listLink {
  background: #871c3c0d;
  padding: 6px 12px;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  margin-top: 15px;
}

.listLink {
  display: flex;
  align-items: center;
}

a.listLink i {
  margin-right: 10px;
  color: var(--main-color);
}

.listLink p {
  color: var(--black);
}

.sitemap-mar {
  margin-top: 30px;
}


.c-name {
  color: var(--main-color);
  margin: 0px;
  margin-left: 8px;
  font-weight: 500;
      position: relative;
    top: 3px;
}
.pack h4{
      margin-top: 10px;
}

.top-im {
  margin-left: auto;
  display: block;
}

.cate-ban {
  padding-top: 20px;
  padding-bottom: 20px;
}

.why-sec2 {
  padding-left: 25px;
}

.why-sec2 a {
  color: var(--link-color);
}

.why-sec2 a:hover {
  text-decoration: underline;
}

.turst-clients {
  margin-top: 30px;
}

.trustpilot {
  max-width: 80px !important;
}

.prod-form {
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.prod-form label {
  color: var(--main-color);
  font-size: 17px;
}

.form-frist {
  margin-top: -50px;
  z-index: 1;
  position: relative;
}

.form-pp {
  padding-bottom: 70px;
}

.sp-name {
  color: #000;
  font-size: 26px;
  margin: 0;
  display: inline-block;
  margin-left: 20px;
  font-weight: 500;
}

.pac-ban {
  padding-top: 50px;
  padding-bottom: 50px;
}

.avatar {
  width: 60px;
  height: 60px;
  background-color: #fbc9a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  color: #000;
  font-family: Arial, sans-serif;
}

.btn-q {
  padding: 0;
  border: none;
  color: #871c3c;
  background: none;
}

#recaptcha-container-sample,
#recaptcha-container-quote {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.pro-long ul {
  padding-left: 2rem;
}

.hub-top iframe {
  width: 100%;
}

.m-l {
  width: 140px;
}

.scroll-bg-header {
  background-color: #ffe9f0;
}


.vertical-profile-card {
  margin: 0px auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
  border: 1px solid #871d3c;
}

.vertical-profile-card:hover {
  transform: translateY(-6px);
}

.profile-avatar img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #871d3c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.designation {
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 10px;
}

.bio {
  color: #3e3e3e;
  padding: 0 10px;
}

.linkedin-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #871d3c;
  color: #fff !important;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.linkedin-btn i {
  margin-right: 6px;
}

.linkedin-btn:hover {
  background-color: #871d3ce0;
}

.blog-mr img {
  border-radius: 10px;
  aspect-ratio: 1 / 0.6;
}

.blog-m img {
  aspect-ratio: 1 / 0.6;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .blog-mr img {
    aspect-ratio: auto;
  }
}

.shop-btn {
  font-size: 14px;
  padding: 8px 24px;
  margin-top: 5px;
}

#recaptcha-container-sample4 {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  display: flex;
}

.h3-heading {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

.table.check tr th {
  padding: 15px;
  font-size: 18px;
}

.table.check tr td {
  padding: 12px;
}


.modal-header .btn-close {
  width: 1em;
  height: 1em;
  position: absolute;
  right: 0px;
  top: -30px;
  opacity: 1;
  background-color: var(--main-color);
  /* replace with any color you want for background */
  border-radius: 50%;
  /* makes it circular */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7em 0.7em;
  border: none;
  z-index: 2;
  /* remove default border */
}

.modal-header {
  padding: 0px !important;
  border: none !important
}

.hub-c .pack {
  margin: 1px !important;
  box-shadow: 0 0 2px #0000003d !important;
}





/* List */
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Item */
.toc-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Number */
.toc-item-number {
  -webkit-text-stroke: 1px var(--main-color);
  color: #0000;
  font-size: 28px;
  font-weight: 700;
}

/* Link */
.toc-item-link {
  color: #000 !important;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.toc-item-link:hover {
  color: var(--main-color) !important;
  text-decoration: underline;
}

/* Title */
.toc-title {
  background: var(--main-color);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 18px;
}

.toc-line {
  background-color: var(--main-color);
  border-radius: 5px;
  width: 3px;
  position: relative;
  left: -295px;
}


.video-card {
  position: relative;
  overflow: hidden;
}

.video-thumb-img {
  transition: opacity 0.3s ease;
}

.video-thumb {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-thumb-img {
  opacity: 0;
}

.video-card:hover .video-thumb {
  opacity: 1;
}

iframe.video-thumb {
  height: revert-layer;
}

.user-border {
  padding-top: 30px;
  border-top: 1px solid #ededed;
  padding-right: 15px;
}

.user-info {
  padding: 25px 25px 12px 25px;
  box-shadow: 0 0 5px 0 #cccccc54;
  border-radius: 20px;
  margin: 10px 0px;
}

.user {
  border-radius: 50%;
  width: 80px;
  margin-right: 18px;
}

@media only screen and (max-width: 600px) {
  .user-info {
    display: block !important;
  }

  .b-img {
    margin-bottom: 20px;
  }

  .user-info .ms-3 {
    margin-left: 0px !important;
  }

  .user-info {
    padding: 20px;
  }

  .user-info .user {
    margin-bottom: 5px;
  }

  .user-border {
    padding-right: 0px;
  }


}


.tabcontent2 .card {
  border-color: var(--main-color);
  position: relative;

}

.tabcontent2 .card-body {
  padding: 25px
}

.toc-item {
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .3rem;
  display: flex;
}

.toc-item-dot {
  color: var(--main-color);
  /* dot color */
  font-size: 1rem;
  /* adjust size */
  margin-top: 6px;
  /* align with text */
  flex-shrink: 0;
}


.toc-item-link {
  text-decoration: none;
  color: #333;
  line-height: 1.4;
}

.toc-item-link:hover {
  text-decoration: underline;
}

.to-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.to-btn .s-btn {
  margin: 0 10px;
}

.two-sec h4 {
  font-size: 22px;
  line-height: 27px;
}





/*---------------------
HAMBURGER MENU
----------------------*/

.hamburger-menu {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 32px;
}

.bar,
.bar:after,
.bar:before {
  width: 30px;
  height: 3px;
}

.bar {
  position: relative;
  transform: translateY(10px);
  background: #871c3c;
  transition: all 0ms 300ms;
}

.bar.animate {
  background: rgba(255, 255, 255, 0);
}

.bar:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  background: #871c3c;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background: #871c3c;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/*---------------------
Mobiles Menu 
----------------------*/
/*---------------------
  Mobiles Menu - Design 
  ----------------------*/

.mobile-menu ul {
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  font-size: 17px;
  line-height: 30px;
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
  text-transform: uppercase;
  padding-left: 15px;
}

.mobile-menu li:first-child {
  margin-top: 15px;
}

.mobile-menu li:hover {
  background: transparent !important;
}

.mobile-menu li a {
  text-decoration: none;
  color: black;
}

/*---------------------
  Mobiles Menu - Slide IN 
  ----------------------*/

.mobile-menu {
  top: 160px;
  max-width: 100%;
  left: -100%;
  width: 100%;
  background: #FFE8EF;
  color: black;
  height: 100%;
  position: fixed;
  z-index: 9997;
  overflow-y: auto;
  -webkit-transform: translate3d(0, 0, 205px);
  -moz-transform: translate3d(0, 0, 205px);
  transform: translate3d(0, 0, 205px);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.mobile-menu.active {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

/*---------------------
  Mobiles Menu - Dropdown Submenu
  ----------------------*/

.has-children:hover {
  cursor: hand;
}



.children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu .children li:first-child {
  margin-top: 0px;
}

.icon-arrow {
  position: absolute;
  display: block;
  font-size: 0.7em;
  color: black;
  top: 5px;
  right: 15px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transition: .6s;
  -webkit-transition: .6s;
  -moz-transition: .6s;
}

.icon-arrow:after {
  content: "\25BC";
}

.icon-arrow.open {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transition: .6s;
  -webkit-transition: .6s;
  -moz-transition: .6s;
}

.menu-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* COMMON */
.side-menu {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffeef3c2;
  transition: margin-left 0.5s ease;
}

.side-menu ul {
  margin: 0;
  padding: 0;
  max-height: 70vh;
  overflow-y: scroll;
}

.side-menu li {
  list-style: none;
  padding-left: 0px;
}

.side-menu a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid #871c3c40;
  text-decoration: none;
}

.side-menu a:hover {
  background: transparent !important;
}

.side-menu span {
  float: right;
  font-size: 1.4em;
}

/* SLIDE LOGIC */
.hide {
  margin-left: -100%;
}

.show-menu {
  margin-left: 0;
}

/* BACK BUTTON */
.back {
  background: #FFE8EF;
}



.w-icon {
  position: absolute;
  bottom: 0px;
  left: 20px;
  /* Animation */
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  /* move up 20px */
  100% {
    transform: translateY(0);
  }
}

.infoo {
  margin-top: 40px;
}

.mb-bb {
  margin-top: 40px;
}

body.menu-open {
  overflow-y: hidden;
}

.fw-w {
  font-weight: 500;
}

.blog-inf {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-inf img {
  border-radius: 50px;
  box-shadow: 0 0 1px 2px #0000002b;
}

.blog-inf h6 {
  margin-bottom: 0px;
  margin-left: 10px;
  font-weight: 500;
}
.blog-inf span {
  margin-bottom: 0px;
  margin-left: 10px;
  font-weight: 500;
}

.borde {
  border-left: 2px solid #000;
  height: 27px;
}

.borde i {
  margin-left: 45px;
  color: var(--main-color);
}

.social-blog {
  margin: 0px !important;
  float: inline-end;
}

.social-blog li a {
  background-color: var(--white) !important;
  color: var(--main-color) !important;
  padding: 0px 3px !important;
}

.info-b {
  margin-bottom: 20px;
}



.list-wrapper {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.list-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.list-card img {
  width: 130px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.date {
  font-size: 14px;
  color: #4e4e4e;
}

.content h3 {
  color: #000;
  margin: 0;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}

.r-blog {
  font-weight: 500;
  color: #000;
  margin-top: 30px;
  margin-bottom: 20px;
}

.user-info {
  background-image: url('https://customdesignsboxes.com/all-images/author-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rec-blog {
  position: sticky;
  top: 100px;
}

.share {
  margin-bottom: 0;
  margin-right: 8px;
  color: #4e4e4e;
  font-size: 14px;
}

.toc-sub-item {
  margin-left: 18px;
  margin-bottom: 1px;
}
.toc-sub-item .toc-item-link{
  color: #000;
}

.toc-sub-item .toc-item-dot {
  font-size: 14px;
}


/* Mobile */
@media (max-width: 991px) {
  .mob-toc {
    display: block;
    margin-top: 20px;
  }

  .mob-toc .toc-wrapper {
    display: none;
    margin-top: 0px;
  }

  .mob-toc .blog-list h3 {
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    display: flex;
    font-size: 18px;
    margin: 0px;
  }

  .mob-toc .toc-arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
  }

  .blog-list {
    margin-bottom: 20px;
  }

  /* Hide sidebar TOC on mobile */
  .sidebar-toc {
    display: none;
  }

  .blog-list h3 {
    padding: 18px 14px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .mob-toc {
    display: none;
  }

  .sidebar-toc {
    display: block;
  }
}

.filter-search input {
   width: 100%;
   padding: 8px 14px;
   border-radius: 20px;
   border: 1px solid #ddd;
   font-size: 14px;
}

.filter-header {
   display: flex;
   align-items: center;
   gap: 8px;
   font-weight: 700;
   margin: 0px 0 10px;
   font-size: 25px;
}
.filter-header i{
  color: #871c3c;
}

.filter-card {
    padding: 0px 10px 0px 0px;
}
.shop-all {
   padding: 10px;
   padding-bottom: 16px;
   font-size: 18px;
   cursor: pointer;
   border-bottom: 1px solid #666666;
}

.shop-all.active {
   color: #8b1d40;
   font-weight: 600;
}
.fix-sty.active{
  color: #8b1d40;
   font-weight: 600;
}

.filter-title {
    padding: 16px 10px;
    font-size: 18px;
    cursor: pointer;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #666666;
}

.filter-list {
    list-style: none;
    padding: 5px 0 0px 0px;
}
.filter-list li {
   padding: 8px 10px;
   font-size: 15px;
   display: flex;
   align-items: center;
   cursor: pointer;
   color: #3E3E3E;
}
.filter-list li i {
    color: #1a1a1a;
    font-size: 11px;
    margin-left: 4px;
}


.filter-list li.active,
.filter-list li:hover {
   color: #871D3C;
   font-weight: 500;
}

.filter-list::-webkit-scrollbar {
   width: 4px;
}

.filter-list::-webkit-scrollbar-thumb {
   background: #871D3C;
   border-radius: 10px;
}
.bd-nn{
  border-bottom: none !important;
}
.shop-pad{
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.fix-sty {
      padding: 16px 10px;
    font-size: 18px;
    cursor: pointer;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #666666;
}


/* wrapper */
.spec-style-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  justify-content: space-around;
}

/* buttons reset */
.spec-style-tabs .tab-btn {
  background: none;
  border: none;
  padding: 0px 0 14px 0px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

/* hover */
.spec-style-tabs .tab-btn:hover {
  color: var(--main-color);
}

/* active tab */
.spec-style-tabs .tab-btn.active {
  color: var(--main-color);
  font-weight: 600;
}

/* active underline */
.spec-style-tabs .tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
}

.spec-card {
    border-radius: 16px !important;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    font-size: 16px;
    max-width: 97%;
    margin: 10px auto;
    padding: 0px;
}

/* HEADER */
.spec-header {
  display: grid;
 grid-template-columns: 20% 80%;
  background: linear-gradient(90deg, #7a1634, #8e1c3f);
  color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.spec-h-left, .spec-h-right {
    padding: 16px 30px;
    font-weight: 500;
    font-size: 22px;
}

.spec-h-left {
  border-right: 1px solid #202020;
}

/* ROWS */
.spec-row {
  display: grid;
 grid-template-columns: 20% 80%;
  min-height: 44px;
}

.spec-label {
    padding: 14px 30px;
    font-weight: 400;
    color: #000;
    background: #fff;
    border-right: 1px solid #919191;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.spec-value {
  padding: 12px 30px;
  color: #3E3E3E;
  background: #fff;
  display: flex;
  align-items: center;
}
.spec-row:last-child .spec-label {
  border-bottom-left-radius: 15px;
}
.spec-row:last-child .spec-value {
  border-bottom-right-radius: 15px;
}

/* alternating background like screenshot */
.spec-row:nth-child(odd) .spec-label {
  background: #fbf7f8 !important;
}
.spec-row:nth-child(odd) .spec-value {
  background: #fbf7f8;
}

/* subtle horizontal separators */
.spec-row + .spec-row {
  border-top: 1px solid #ececec;
}
.pro-mate{
  padding: 11px 5px;
}
.pro-mate img {
    background-color: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 13px 0 rgb(0 0 0 / 19%);
}

.hub-c .blog-info img{
    aspect-ratio: auto !important;
    border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.hub-c{
  margin-top: 20px;
}

/* Smooth Collapse Animation */
.collapses {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.collapses.show {
  max-height: max-content;
  opacity: 1;
}

/* Rotate arrow */
.filter-title i {
  transition: transform 0.3s ease;
}

.filter-title.active i {
  transform: rotate(180deg);
}
.filter-title.active{
    color: var(--main-color);
    font-weight: 600;
}
.max-list{
  max-height: 310px;
  overflow: auto;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #871c3c transparent;
}

/* WebKit */
.max-list::-webkit-scrollbar {
  width: 2px;
}

.max-list::-webkit-scrollbar-thumb {
  background: #871c3c;
  border-radius: 10px;
}



/* Outer Container */
.tabs-wrapper {
    background: #F5F5F5;
    padding: 8px 10px 2px 10px;
}

/* Tabs Container */
.tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: space-evenly;
}

.tabs::-webkit-scrollbar {
    display: none; /* Chrome */
}

/* Individual Tab */
.tab {
    padding: 12px 22px;
    font-size: 17px;
    color: #000;
    border-radius: 6px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active Tab */
.tab.active {
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

/* Hover Effect */
.tab:hover:not(.active) {
    background-color: var(--main-color);
    color: #fff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
.logo-f{
  margin-bottom: 15px;
}
.pro-mate p{
    font-size: 1.25rem;
    color: #212529;
    padding-bottom: 5px;
}
.text-centerr {
    margin: auto;
}
ul.toc-ul {
    padding: 0;
}
.m-pad span{
    font-size: 1.75rem;
    color: #000;
        font-weight: 500;
 }