/* breadcrumb */
:root {
  --desired-color: #19191a;
  --desired-red: #b31718;
  --desired-white: #fff;
}
body {
  color: var(--desired-color);
}
.pv-hero.hero_bread {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 100px;
}
#bread_crumb.pv-hero.hero_bread::before {
  background: rgba(0, 0, 0, 0.6);
}
.breadcrumb li.active {
  color: #fff;
}
.breadcrumb li a {
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
/* abot page */
.pv-about {
  background: var(--desired-color);
}
.position_box {
  right: -10px;
  z-index: 2;
  bottom: 30px;
  border-radius: 15px;
  box-shadow: 1px 1px 5px rgba(92, 1, 1, 0.246);
  background: linear-gradient(
    120deg,
    rgba(122, 0, 0, 0.59) 0%,
    rgba(32, 0, 0, 0.815) 27%,
    rgba(60, 1, 1, 0.764) 73%,
    rgba(89, 0, 0, 0.63) 100%
  );
}
.position_box i {
  padding: 12px 10px;
  background: var(--desired-white);
  color: var(--desired-red);
  border-radius: 5px;
}
.about_figure img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.pv-about-points {
  padding: 10px;
  background: #232324;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(92, 1, 1, 0.246);
  width: 75%;
}
.pv-about-point i {
  color: var(--desired-red);
  font-size: 20px;
}
/* gallery Page */
.pv-gallery-modal {
  background: rgba(0, 0, 0, 0.8);
}
.pv-gallery-modal .modal-content {
  background: transparent;
  border: 0;
  position: relative;
  overflow: hidden;
}

.pv-compare-box {
  position: relative;
  width: 85%;
  /* height: 700px; */
  aspect-ratio: 16 / 9;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 24px;
}

.pv-before-layer,
.pv-after-layer {
  position: absolute;
  inset: 0;
  height: 100%;
}

.pv-after-layer {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.pv-before-image,
.pv-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.pv-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #fff;
  z-index: 10;
  cursor: ew-resize;
}

.pv-slider-line {
  width: 100%;
  height: 100%;
  background: #fff;
}

.pv-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--desired-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.pv-prev-slide,
.pv-next-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  pointer-events: auto;
  transition: 0.3s ease;
}
.pv-prev-slide {
  left: 20px;
}
.pv-next-slide {
  right: 20px;
}

.pv-prev-slide:hover,
.pv-next-slide:hover {
  background: var(--desired-red);
  box-shadow: 0 4px 10px rgba(238, 5, 5, 0.529);
}

.pv-compare-label {
  position: absolute;
  top: 25px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  width: max-content;
}

.pv-compare-label--before {
  right: 25px;
  z-index: 0;
}

.pv-compare-label--after {
  left: 25px;
}
.btn-close:hover {
  color: var(--desired-red);
  filter: var(--desired-red);
}
#gallery_page .pv-gallery-card {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
}
#gallery_page .pv-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pv-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.pv-gallery-overlay span {
  background: rgba(96, 0, 0, 0.671);
  padding: 3px 10px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
}
@media (max-width: 991px) {
  .pv-compare-box {
    height: 500px;
  }

  .pv-slider-button {
    width: 55px;
    height: 55px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .pv-compare-box {
    height: 350px;
  }

  .pv-prev-slide,
  .pv-next-slide {
    width: 45px;
    height: 45px;
  }
}
/* blogs page */
.pv-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 5px 5px 30px;
  box-shadow: 0 4px 8px rgba(46, 31, 31, 0.463);
  background: #232324;
}
.pv-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.pv-card:hover {
  transform: translateY(-6px);
  box-shadow:
    rgb(84 26 26 / 40%) 0px 16px 48px,
    rgb(64 0 0 / 40%) 0px 0px 30px;
}
.pv-card-body {
  padding-inline: 10px;
}
.pv-card:hover .pv-btn-primary {
  background: var(--pv-blue);
  border-color: var(--pv-blue);
  box-shadow: 0 6px 28px rgba(246, 74, 74, 0.5);
  transform: translateY(-1px);
  color: var(--pure-white) !important;
}
.pv-card h4 {
  height: 80px;
  place-content: center;
  margin-bottom: 10px;
}
.pv-card-body p:nth-of-type(1) {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Blogs Page */
.pv-blog-quote {
  background: #232324;
}
.pv-blog-quote i {
  color: var(--desired-red);
  font-size: 1.8rem;
}
.pv-blog-details,
.pv-related-services {
  background: #19191a;
}
.pv-sidebar-card {
  background: #232324;
  border-radius: 20px;
}
.sidebar_wrapper {
  position: sticky;
  top: 120px;
}
.pv-sidebar-card .pv-recent-post {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  gap: 10px;
  padding: 10px;
  align-items: center;
  background: linear-gradient(
    120deg,
    rgba(39, 1, 1, 0.59) 0%,
    rgba(32, 0, 0, 0.45) 27%,
    rgba(60, 1, 1, 0.392) 73%,
    rgba(30, 0, 0, 0.63) 100%
  );
  margin-bottom: 10px;
}
.pv-sidebar-card .pv-recent-post:hover {
  box-shadow: 0 4px 10px rgba(238, 5, 5, 0.529);
  transform: translateY(-2px);
}
.pv-sidebar-card .pv-recent-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}
.sidebar_contact_area {
  background: #19191a;
  border-radius: 20px;
  padding: 20px;
}
.sidebar_contact_area i {
  color: var(--desired-white);
  font-size: 20px;
}
.sidebar_contact_area a span {
  color: var(--desired-red);
}
.sidebar_contact_area a:hover span {
  color: var(--desired-white);
}
.pv-related-slider .pv-related-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 10px 10px;
  box-shadow: 0 4px 8px rgba(46, 31, 31, 0.463);
  background: #232324;
  margin-block: 10px;
  text-align: center;
}
.pv-related-slider .pv-related-card:hover {
  transform: translateY(-2px);
  box-shadow:
    rgb(84 26 26 / 40%) 0px 8px 18px,
    rgb(64 0 0 / 40%) 0px 0px 14px;
}
.pv-related-slider .pv-related-card h4 {
  color: var(--desired-white);
  text-align: center;
  margin-bottom: 30px;
}
.pv-related-slider a:hover .pv-btn-primary {
  background: var(--pv-blue);
  border-color: var(--pv-blue);
  box-shadow: 0 6px 28px rgba(246, 74, 74, 0.5);
  transform: translateY(-1px);
  color: var(--pure-white) !important;
}
.pv-blog-details.details_page .pv-blog-thumb {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 400px;
}
.pv-blog-details.details_page .pv-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
._more_img {
  width: 100%;
  height: 180px;
}
._more_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* contact us page design */
.pv-contact-section {
  background: #0f1115;
}

.pv-contact-shape {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(225, 29, 46, 0.08);
  filter: blur(80px);
}

.pv-contact-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.pv-contact-info-title {
  color: #fff;
  margin-bottom: 20px;
}

.pv-contact-info-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
}

.pv-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.pv-contact-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: var(--desired-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.pv-contact-item span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 5px;
}

.pv-contact-item h5 {
  color: #fff;
  margin: 0;
}

.pv-contact-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
}

.pv-contact-social a:hover {
  background: var(--desired-red);
  transform: translateY(-5px);
}

.pv-contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.pv-form-group label {
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

.pv-form-group .form-control,
.pv-form-group .form-select {
  height: 60px;
  background: #232324;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 14px;
  padding: 0 20px;
  box-shadow: none;
}

.pv-form-group textarea.form-control {
  height: auto;
  padding-top: 18px;
}

.pv-form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pv-form-group .form-control:focus,
.pv-form-group .form-select:focus {
  border-color: var(--desired-red);
  background: rgba(255, 255, 255, 0.08);
}

.pv-map-section {
  overflow: hidden;
}

.pv-map-section iframe {
  filter: grayscale(100%);
  transition: 0.6s ease;
  transform: scale(1);
}

.pv-map-section iframe:hover {
  filter: grayscale(0);
}
.page_contact_item {
  transition: 0.3s ease;
  display: block;
  padding: 10px 15px;
  border-radius: 10px;
  place-content: center;
}
.page_contact_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(238, 5, 5, 0.529);
}
@media (max-width: 991px) {
  .pv-contact-info,
  .pv-contact-form-wrap {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .pv-contact-info,
  .pv-contact-form-wrap {
    padding: 25px;
    border-radius: 20px;
  }

  .pv-contact-item {
    align-items: flex-start;
  }
}
/* home page ppf service */
/* ═══════════════════════════════════════
   PPF HIGHLIGHT SECTION
═══════════════════════════════════════ */

.pv-ppf-highlight {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.03)
  );
}

.pv-ppf-glow {
  position: absolute;
  top: -150px;
  right: -100px;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  background: rgba(0, 153, 255, 0.15);

  filter: blur(100px);
}

/* IMAGE */

.pv-ppf-image-wrap {
  position: relative;
}

.pv-ppf-main-img {
  width: 100%;
  border-radius: 32px;

  object-fit: cover;

  min-height: 650px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* BADGE */

.pv-ppf-badge {
  position: absolute;
  top: 40px;
  left: -30px;

  width: 150px;
  height: 150px;

  border-radius: 50%;

  background: var(--pv-blue);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-align: center;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);

  animation: floatY 4s ease-in-out infinite;
}

.pv-ppf-badge span {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

/* FLOATING CARD */

.pv-ppf-floating-card {
  position: absolute;
  right: -20px;
  bottom: 40px;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 18px 24px;

  border-radius: 20px;

  background: rgba(15, 17, 21, 0.92);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pv-ppf-floating-card i {
  font-size: 34px;
  color: #00d26a;
}

.pv-ppf-floating-card h6 {
  color: #fff;
  margin-bottom: 4px;
}

.pv-ppf-floating-card p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  font-size: 14px;
}

/* FEATURES */

.pv-ppf-feature {
  display: flex;
  gap: 16px;

  padding: 18px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.35s ease;
}

.pv-ppf-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.pv-ppf-feature i {
  width: 58px;
  height: 58px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: var(--pv-blue);

  color: #fff;

  font-size: 20px;
}

.pv-ppf-feature h5 {
  color: #fff;
  margin-bottom: 6px;
}

.pv-ppf-feature p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* FLOAT ANIMATION */

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .pv-ppf-main-img {
    min-height: auto;
  }

  .pv-ppf-badge {
    width: 120px;
    height: 120px;
    left: 15px;
    top: 15px;
  }

  .pv-ppf-badge span {
    font-size: 30px;
  }

  .pv-ppf-floating-card {
    right: 15px;
    bottom: 15px;
    padding: 14px 18px;
  }
}

@media (max-width: 767px) {
  .pv-ppf-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }
}

/* =========================================
   3D STACK SLIDER EFFECT
========================================= */

.pv-ppf-stack {
  position: relative;
  height: 650px;
  perspective: 1800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD */

.pv-ppf-card {
  position: absolute;
  width: 90%;
  border-radius: 30px;
  overflow: hidden;
  transition: all 1s ease;
  transform-style: preserve-3d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.pv-ppf-card img {
  width: 100%;
  /* height: 650px; */
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/* ACTIVE */

.pv-ppf-card.active {
  transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
  z-index: 3;
  opacity: 1;
}
.pv-ppf-card.active img {
  filter: grayscale(0%);
}
/* LEFT */

.pv-ppf-card.left {
  transform: translateX(-140px) translateY(40px) scale(0.88) rotateY(22deg);
  z-index: 2;
  opacity: 0.65;
}

/* RIGHT */

.pv-ppf-card.right {
  transform: translateX(140px) translateY(40px) scale(0.88) rotateY(-22deg);
  z-index: 1;
  opacity: 0.65;
}

/* HOVER */

.pv-ppf-stack:hover .pv-ppf-card.active {
  transform: translateY(-10px) scale(1.02);
}
.pv-ppf-highlight {
  padding-top: 200px;
  background: #19191a;
}
/* MOBILE */

@media (max-width: 991px) {
  .pv-ppf-stack {
    height: 500px;
    margin-top: 50px;
  }

  .pv-ppf-card {
    width: 92%;
  }

  .pv-ppf-card img {
    height: 500px;
  }

  .pv-ppf-card.left {
    transform: translateX(-60px) translateY(30px) scale(0.9) rotateY(16deg);
  }

  .pv-ppf-card.right {
    transform: translateX(60px) translateY(30px) scale(0.9) rotateY(-16deg);
  }
}
/* banner modi-fied */
/* HERO TITLE SLIDER */
.pv-title-slider {
  position: relative;
  min-height: 180px;
  overflow: hidden;
}

.pv-title-slider .pv-hero-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transform: translateX(120px);

  transition: all 0.8s ease;

  pointer-events: none;
}

.pv-title-slider .pv-hero-title.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* EXIT ANIMATION */
.pv-title-slider .pv-hero-title.exit {
  opacity: 0;
  transform: translateX(-120px);
}

/* OPTIONAL */
.pv-hero-title {
  line-height: 1.1;
}

/* MOBILE */
@media (max-width: 768px) {
  .pv-title-slider {
    min-height: 140px;
  }
}
.pv-contact-section form .form-select option {
  background: #232324;
  color: #fff;
}
.pv-contact-section form input[type="date"]::-webkit-calendar-picker-indicator,
.pv-contact-section form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}
.pv-form-group {
  position: relative;
}

.pv-form-group .form-select {
  color: #fff;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  box-shadow: none;
}

/* ICON */
.pv-select-icon {
  position: absolute;
  right: 18px;
  bottom: 22px;

  font-size: 13px;
  color: #fff;

  pointer-events: none;

  transition: transform 0.4s ease;
}

/* ROTATE ON FOCUS */
.pv-form-group .form-select:focus + .pv-select-icon {
  transform: rotate(180deg);
}
