/* hero section start  */
.uv-hero-viewport {
  position: relative;
  width: 100%;
  height: 570px; /* Professional banner height */
  overflow: hidden;
  background: #111;
  font-family: "Poppins", sans-serif;
}

/* Slider Track */
.uv-slider-track {
  display: flex;
  width: 700%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.uv-slide-frame {
  flex: 0 0 14.2857%;
  height: 100%;
  position: relative;
}

.uv-slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text Overlay Animation */
.uv-overlay-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 700px;
  z-index: 5;
}

.uv-overlay-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  border-left: 6px solid #0056b3;
  padding-left: 25px;
  animation: slideInLeft 1s ease;
}

.uv-overlay-content p {
  font-size: 18px;
  margin: 20px 0 30px 30px;
  color: #ccc;
  animation: fadeIn 1.5s ease;
}

/* Navigation Icons (Left/Right) */
.uv-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.uv-nav-arrow:hover {
  background: #0056b3;
  border-color: #0056b3;
  box-shadow: 0 0 25px rgba(0, 86, 179, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.uv-arrow-left {
  left: 40px;
}
.uv-arrow-right {
  right: 40px;
}

/* Bottom Bullets (Pagination) */
.uv-bullet-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.uv-bullet-dot {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.4s;
  border-radius: 2px;
}

.uv-bullet-dot.active {
  background: #0056b3;
  width: 70px;
  box-shadow: 0 0 10px rgba(0, 86, 179, 0.8);
}

/* Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .uv-hero-viewport {
    height: 400px;
  }
  .uv-overlay-content h2 {
    font-size: 38px;
  }
  .uv-nav-arrow {
    width: 30px;
    height: 30px;
  }
  .uv-arrow-left {
    left: 15px;
  }
  .uv-arrow-right {
    right: 15px;
  }
}

@media (max-width: 600px) {
  .uv-hero-viewport {
    height: 230px;
  }
  .uv-overlay-content h2 {
    font-size: 28px;
  }
  .uv-overlay-content p {
    font-size: 14px;
  }
  .uv-bullet-dot {
    width: 30px;
  }
}

/* hero section end  */

/* about section start  */
.pwp-about-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  padding: 60px 20px;
  box-sizing: border-box;
}

.pwp-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Image Box Section */
.pwp-about-image-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
}

.pwp-about-main-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Floating Badge Overlay */
.pwp-about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #ffffff;
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  text-align: center;
  border: 1px solid #f0f0f0;
}

.pwp-about-exp-number {
  font-size: 32px;
  font-weight: 800;
  color: #1a41b8;
  line-height: 1;
  margin-bottom: 4px;
}

.pwp-about-exp-text {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Right Content Section */
.pwp-about-content {
  flex: 1;
}

.pwp-about-subheading {
  color: #e07228;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pwp-about-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pwp-about-description {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 28px;
}

/* Bullet Points List */
.pwp-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.pwp-about-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #4b5563;
  font-weight: 500;
}

.pwp-about-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #e07228;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e07228;
  font-size: 11px;
  flex-shrink: 0;
}

/* Read More Button */
.pwp-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1a41b8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 65, 184, 0.25);
}

.pwp-about-btn:hover {
  background-color: #133396;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 65, 184, 0.35);
}

.pwp-about-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.pwp-about-btn:hover i {
  transform: translateX(4px);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .pwp-about-container {
    flex-direction: column;
    gap: 40px;
  }

  .pwp-about-title {
    font-size: 28px;
  }

  .pwp-about-image-wrapper {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .pwp-about-sec {
    padding: 40px 16px;
  }

  .pwp-about-title {
    font-size: 24px;
  }

  .pwp-about-description {
    font-size: 14px;
  }

  .pwp-about-list-item {
    font-size: 14px;
  }

  .pwp-about-experience-badge {
    bottom: -15px;
    right: 15px;
    padding: 14px 20px;
  }

  .pwp-about-exp-number {
    font-size: 26px;
  }

  .pwp-about-exp-text {
    font-size: 10px;
  }
}

/* about section end  */

/* what we do section start */
.pwp-solutions-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f7f9fc;
  padding: 80px 20px;
  box-sizing: border-box;
}

.pwp-sol-container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

/* Header Section */
.pwp-sol-subheading {
  color: #e07228;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pwp-sol-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 auto 16px auto;
  max-width: 650px;
  letter-spacing: -0.5px;
}

.pwp-sol-description {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto 50px auto;
  font-weight: 400;
}

/* Cards Grid */
.pwp-sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card Styling */
.pwp-sol-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pwp-sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

/* Icon Bubble */
.pwp-sol-icon-box {
  width: 52px;
  height: 52px;
  background-color: #1a41b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.pwp-sol-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pwp-sol-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pwp-sol-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pwp-sol-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .pwp-solutions-sec {
    padding: 50px 16px;
  }

  .pwp-sol-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pwp-sol-title {
    font-size: 26px;
  }

  .pwp-sol-description {
    font-size: 14px;
    margin-bottom: 36px;
  }

  .pwp-sol-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .pwp-sol-icon-box {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .pwp-sol-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

/* what we do section end */

/* our machine section start  */
.pwp-machines-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  padding: 80px 20px;
  box-sizing: border-box;
  overflow: hidden; /* Prevents overflow during outside-slide animation */
}

.pwp-mach-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header Section Layout */
.pwp-mach-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
}

.pwp-mach-header-left {
  max-width: 650px;
}

.pwp-mach-subheading {
  color: #e07228;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pwp-mach-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.pwp-mach-description {
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

/* View All Button */
.pwp-mach-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.pwp-mach-view-all-btn:hover {
  border-color: #1a41b8;
  color: #1a41b8;
  background-color: #f8fafc;
}

.pwp-mach-view-all-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.pwp-mach-view-all-btn:hover i {
  transform: translateX(4px);
}

/* Machine Grid Layout */
.pwp-mach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual Machine Card - Outside Hidden State */
.pwp-mach-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;

  /* Initial state: Coming from way outside at bottom */
  opacity: 0;
  transform: translateY(100px);
  will-change: transform, opacity;
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s ease;
  border: 2px solid #e2e8f0;
}

/* Active Visible State */
.pwp-mach-card.pwp-mach-visible {
  opacity: 1;
  transform: translateY(0);
}

.pwp-mach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

/* Image Container & Badge */
.pwp-mach-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  background-color: #f8fafc;
  overflow: hidden;
}

.pwp-mach-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pwp-mach-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Card Body Content */
.pwp-mach-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pwp-mach-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.pwp-mach-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 24px 0;
  font-weight: 400;
  flex-grow: 1;
}

/* Link Button inside Card */
.pwp-mach-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a41b8;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pwp-mach-card-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.pwp-mach-card-link:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pwp-mach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .pwp-machines-sec {
    padding: 50px 16px;
  }

  .pwp-mach-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }

  .pwp-mach-title {
    font-size: 26px;
  }

  .pwp-mach-description {
    font-size: 14px;
  }

  .pwp-mach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pwp-mach-img-wrapper {
    height: 220px;
  }

  .pwp-mach-body {
    padding: 22px 18px;
  }

  .pwp-mach-card-title {
    font-size: 20px;
  }

  /* Mobile Specific Card Offsets for outside entry */
  .pwp-mach-card {
    transform: translateY(80px);
  }
}

/* our machines section end */

/* why choose us section start */
.pwp-why-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #111622;
  padding: 80px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.pwp-why-container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

/* Header Section */
.pwp-why-subheading {
  color: #e07228;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pwp-why-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 auto 50px auto;
  max-width: 700px;
  letter-spacing: -0.5px;
}

/* 6-Card Grid Layout (3x2 Desktop) */
.pwp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card Styling - Outside Entry Animation Setup */
.pwp-why-card {
  background-color: #1a202c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s ease,
    background-color 0.3s ease;

  /* Outside Hidden State */
  opacity: 0;
  transform: translateY(80px);
  will-change: transform, opacity;
}

/* Active Visible State */
.pwp-why-card.pwp-why-visible {
  opacity: 1;
  transform: translateY(0);
}

.pwp-why-card:hover {
  border-color: rgba(224, 114, 40, 0.3);
  background-color: #1e2636;
}

/* Icon Box */
.pwp-why-icon-box {
  color: #e07228;
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.pwp-why-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.pwp-why-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
  font-weight: 400;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pwp-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pwp-why-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .pwp-why-sec {
    padding: 50px 16px;
  }

  .pwp-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pwp-why-title {
    font-size: 26px;
    margin-bottom: 36px;
  }

  .pwp-why-card {
    padding: 28px 22px;
    border-radius: 16px;
    transform: translateY(60px);
  }

  .pwp-why-icon-box {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .pwp-why-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .pwp-why-card-text {
    font-size: 14px;
  }
}

/* why choose us section end */

/* customer review section start */
.pwp-reviews-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f7f9fc;
  padding: 80px 20px;
  box-sizing: border-box;
}

.pwp-rev-container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

/* Header Section */
.pwp-rev-subheading {
  color: #e07228;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pwp-rev-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 auto 16px auto;
  letter-spacing: -0.5px;
}

/* Rating Bar */
.pwp-rev-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 50px;
}

.pwp-rev-stars {
  display: flex;
  gap: 4px;
  color: #e07228;
  font-size: 15px;
}

.pwp-rev-rating-text {
  font-size: 14.5px;
  color: #64748b;
  font-weight: 500;
  margin-left: 6px;
}

/* Grid Layout (3 Columns) */
.pwp-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Static Card Styling */
.pwp-rev-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pwp-rev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Quote Icon */
.pwp-rev-quote-icon {
  color: #f2a673;
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.pwp-rev-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 28px 0;
  font-weight: 400;
}

/* Divider & User Profile Footer */
.pwp-rev-divider {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin: 0 0 20px 0;
}

.pwp-rev-user-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pwp-rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a41b8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.pwp-rev-user-info {
  display: flex;
  flex-direction: column;
}

.pwp-rev-user-name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.pwp-rev-user-role {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pwp-rev-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pwp-rev-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .pwp-reviews-sec {
    padding: 50px 16px;
  }

  .pwp-rev-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pwp-rev-title {
    font-size: 26px;
  }

  .pwp-rev-rating-bar {
    margin-bottom: 36px;
  }

  .pwp-rev-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .pwp-rev-card-text {
    font-size: 14px;
  }
}

/* customer review section end */

/* talk to specialist section start */
.pwp-cta-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  background: linear-gradient(135deg, #0d32ad 0%, #1545d8 50%, #0b2b9e 100%);
  padding: 90px 20px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

/* Background Industrial Overlay Graphic Effect */
.pwp-cta-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.pwp-cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Heading Typography */
.pwp-cta-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 18px 0;
  letter-spacing: -0.8px;
}

/* Subtext Typography */
.pwp-cta-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

/* Buttons Container */
.pwp-cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Solid Orange Phone Button */
.pwp-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #f7730e;
  color: #0b132b;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 18px rgba(247, 115, 14, 0.3);
}

.pwp-cta-btn-primary:hover {
  background-color: #ff8224;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(247, 115, 14, 0.45);
}

/* Outline Glassmorphic WhatsApp Button */
.pwp-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.pwp-cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .pwp-cta-sec {
    padding: 65px 20px;
  }

  .pwp-cta-title {
    font-size: 32px;
  }

  .pwp-cta-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .pwp-cta-sec {
    padding: 50px 16px;
  }

  .pwp-cta-title {
    font-size: 25px;
    line-height: 1.3;
  }

  .pwp-cta-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .pwp-cta-btn-primary,
  .pwp-cta-btn-secondary {
    width: 100%;
    box-sizing: border-box;
  }
}

/* talk to specialist section end */

/* whatsapp and arrow section strat  */

.uva-floating-buttons {
  position: fixed;
  right: 22px;
  bottom: 25px;
  z-index: 99999;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* =========================================
           COMMON BUTTON
        ========================================= */

.uva-whatsapp-btn,
.uva-top-btn {
  width: 54px;
  height: 54px;

  padding: 0;
  margin: 0;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  box-sizing: border-box;

  text-decoration: none;
  border: none;

  cursor: pointer;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* =========================================
           WHATSAPP BUTTON
        ========================================= */

.uva-whatsapp-btn {
  background: #25d366;

  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);

  animation: uvaWhatsAppPulse 2.2s infinite;
}

/* WhatsApp SVG */

.uva-whatsapp-btn svg {
  width: 29px;
  height: 29px;

  display: block;

  flex-shrink: 0;

  overflow: visible;
}

/* WhatsApp Hover */

.uva-whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.08);

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* =========================================
           WHATSAPP PULSE ANIMATION
        ========================================= */

@keyframes uvaWhatsAppPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.55),
      0 8px 25px rgba(37, 211, 102, 0.35);
  }

  70% {
    box-shadow:
      0 0 0 14px rgba(37, 211, 102, 0),
      0 8px 25px rgba(37, 211, 102, 0.35);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0),
      0 8px 25px rgba(37, 211, 102, 0.35);
  }
}

/* =========================================
           BACK TO TOP BUTTON
        ========================================= */

.uva-top-btn {
  background: #0056b3;

  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);

  opacity: 0;
  visibility: hidden;

  transform: translateY(15px);

  pointer-events: none;
}

/* Arrow SVG */

.uva-top-btn svg {
  width: 25px;
  height: 25px;

  display: block;

  flex-shrink: 0;

  fill: #ffffff;

  overflow: visible;
}

/* Show Back To Top */

.uva-top-btn.uva-show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);

  pointer-events: auto;
}

/* Back To Top Hover */

.uva-top-btn:hover {
  transform: translateY(-5px) scale(1.08);

  box-shadow: 0 12px 30px rgba(0, 86, 179, 0.45);
}

/* =========================================
           TOOLTIP
        ========================================= */

.uva-tooltip {
  position: absolute;

  right: 68px;
  top: 50%;

  transform: translateY(-50%) translateX(8px);

  background: #1a1a1a;

  color: #ffffff;

  padding: 8px 13px;

  border-radius: 6px;

  font-family: Arial, sans-serif;

  font-size: 12px;
  font-weight: 500;

  line-height: 1.3;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* Tooltip Arrow */

.uva-tooltip::after {
  content: "";

  position: absolute;

  right: -5px;
  top: 50%;

  transform: translateY(-50%);

  border-left: 5px solid #1a1a1a;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Tooltip Show */

.uva-whatsapp-btn:hover .uva-tooltip,
.uva-top-btn:hover .uva-tooltip {
  opacity: 1;
  visibility: visible;

  transform: translateY(-50%) translateX(0);
}

/* =========================================
           MOBILE - TABLET
        ========================================= */

@media (max-width: 768px) {
  .uva-floating-buttons {
    right: 14px;
    bottom: 18px;

    gap: 10px;
  }

  .uva-whatsapp-btn,
  .uva-top-btn {
    width: 48px;
    height: 48px;
  }

  .uva-whatsapp-btn svg {
    width: 25px;
    height: 25px;
  }

  .uva-top-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Hide tooltip */

  .uva-tooltip {
    display: none;
  }
}

/* =========================================
           SMALL MOBILE
        ========================================= */

@media (max-width: 480px) {
  .uva-floating-buttons {
    right: 10px;
    bottom: 14px;

    gap: 9px;
  }

  .uva-whatsapp-btn,
  .uva-top-btn {
    width: 45px;
    height: 45px;
  }

  .uva-whatsapp-btn svg {
    width: 23px;
    height: 23px;
  }

  .uva-top-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================================
           VERY SMALL MOBILE
        ========================================= */

@media (max-width: 360px) {
  .uva-floating-buttons {
    right: 8px;
    bottom: 12px;

    gap: 8px;
  }

  .uva-whatsapp-btn,
  .uva-top-btn {
    width: 42px;
    height: 42px;
  }

  .uva-whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }

  .uva-top-btn svg {
    width: 19px;
    height: 19px;
  }
}

/* =========================================
           REDUCED MOTION
        ========================================= */

@media (prefers-reduced-motion: reduce) {
  .uva-whatsapp-btn {
    animation: none;
  }

  .uva-whatsapp-btn,
  .uva-top-btn,
  .uva-tooltip {
    transition: none;
  }
}

/* whatsapp and arrow section end */

/* gallery section strat  */
.pw-gallery-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #f8f9fa;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.pw-gallery-container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

/* Header Styling */
.pw-gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.pw-gallery-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff6b00;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pw-gallery-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.pw-gallery-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b00, #ff8800);
  margin: 0 auto;
  border-radius: 2px;
}

/* Slider Track & Layout */
.pw-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}

.pw-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Cards (4 items on Desktop) */
.pw-slider-card {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 12px;
  box-sizing: border-box;
}

/* Internal Card Styling & Hover Effects */
.pw-card-inner {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pw-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.3);
}

.pw-image-box {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  background-color: #f1f1f1;
}

.pw-prod-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pw-card-inner:hover .pw-prod-img {
  transform: scale(1.08);
}

.pw-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff6b00;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pw-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pw-prod-name {
  font-size: 18px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 8px 0;
}

.pw-prod-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.pw-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6b00;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.pw-action-btn i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.pw-action-btn:hover {
  color: #d95a00;
}

.pw-action-btn:hover i {
  transform: translateX(4px);
}

/* Bottom Controls */
.pw-gallery-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
}

.pw-ctrl-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #333333;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}

.pw-ctrl-btn:hover {
  background: #ff6b00;
  border-color: #ff6b00;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
  transform: scale(1.05);
}

.pw-ctrl-btn:active {
  transform: scale(0.95);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pw-slider-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 768px) {
  .pw-slider-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .pw-gallery-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .pw-slider-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pw-gallery-section {
    padding: 40px 15px;
  }
}

/* gallery ection end  */

/* video section strat  */
.vcf-showcase-wrapper {
  width: 100%;
  margin: 50px 0;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Beautiful Top Heading */
.vcf-header-box {
  text-align: center;
  margin-bottom: 40px;
}

.vcf-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1c191a, #0b0b0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vcf-sub-title {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* Carousel Container */
.vcf-carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Slider Track */
.vcf-slider-track {
  display: flex;
  width: 100%;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 5px;
  scrollbar-width: none;
}

.vcf-slider-track::-webkit-scrollbar {
  display: none;
}

/* Desktop (Default): 3 Videos Row & Full Width Fit */
.vcf-video-card {
  flex: 1 1 calc((100% - 48px) / 3);
  min-width: 0;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect */
.vcf-video-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 35px rgba(255, 75, 43, 0.25);
}

/* Increased Height Aspect Ratio */
.vcf-media-box {
  position: relative;
  padding-bottom: 75%; /* High vertical height */
  height: 0;
  overflow: hidden;
}

.vcf-media-box iframe,
.vcf-media-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.vcf-card-info {
  padding: 20px;
  text-align: center;
}

.vcf-card-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  transition: color 0.3s ease;
}

.vcf-video-card:hover .vcf-card-info h3 {
  color: #ff4b2b;
}

/* Desktop: Hide Arrows */
.vcf-nav-btn {
  display: none;
}

/* Mobile Screen Adjustments */
@media (max-width: 768px) {
  .vcf-main-title {
    font-size: 1.8rem;
  }

  .vcf-video-card {
    flex: 0 0 100%;
  }

  .vcf-nav-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
  }

  .vcf-prev-btn {
    left: 5px;
  }
  .vcf-next-btn {
    right: 5px;
  }

  .vcf-nav-btn:hover {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
  }
}
