/* 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: 500%; /* 5 Slides = 500% */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Individual Slide Style */
.uv-slide-frame {
  width: 20%;
  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: 45px;
    height: 45px;
  }
  .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 us section start */
.uv-about-section {
  width: 100%;
  padding: 40px 4%;
  overflow: hidden;
  background: #ffffff;
}

.uv-about-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ===================================
           IMAGE SIDE
        =================================== */

.uv-about-image-side {
  position: relative;
  opacity: 0;
  transform: translateX(-120px);
  transition: 1.2s ease;
}

.uv-about-image-side.show {
  opacity: 1;
  transform: translateX(0);
}

.uv-main-about-img {
  width: 100%;
  height: 650px;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.uv-main-about-img img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  transition: 0.6s ease;
}

.uv-main-about-img:hover img {
  transform: scale(1.08);
}

/* ===================================
           EXPERIENCE CARD
        =================================== */

.uv-experience-card {
  position: absolute;

  /* TOP LEFT */
  top: 40px;
  left: -40px;

  width: 260px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}

.uv-experience-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0056b3, #00bfff);
  top: 100%;
  left: 0;
  transition: 0.5s ease;
  z-index: 0;
}

.uv-experience-card:hover::before {
  top: 0;
}

.uv-experience-card:hover {
  transform: translateY(-10px);
}

.uv-experience-card * {
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

.uv-experience-card:hover * {
  color: #ffffff;
}

.uv-experience-card h2 {
  font-size: 55px;
  color: #0056b3;
  margin-bottom: 10px;
  font-weight: 800;
}

.uv-experience-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  font-weight: 500;
}

/* ===================================
           CONTENT SIDE
        =================================== */

.uv-about-content {
  opacity: 0;
  transform: translateX(120px);
  transition: 1.2s ease;
}

.uv-about-content.show {
  opacity: 1;
  transform: translateX(0);
}

.uv-about-subtitle {
  display: inline-block;
  padding: 10px 22px;
  background: #e8f4ff;
  color: #0056b3;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.uv-about-title {
  font-size: 30px;
  line-height: 1.3;
  color: #111;
  margin-bottom: 25px;
  font-weight: 800;
}

.uv-about-title span {
  color: #0056b3;
}

.uv-about-description {
  font-size: 17px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 20px;
}
a {
  text-decoration: none;
}

/* ===================================
           FEATURE CARDS
        =================================== */

.uv-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 45px;
}

.uv-feature-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.uv-feature-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0056b3, #00bfff);
  left: 0;
  top: 100%;
  transition: 0.5s ease;
  z-index: 0;
}

.uv-feature-card:hover::before {
  top: 0;
}

.uv-feature-card:hover {
  transform: translateY(-12px);
}

.uv-feature-card * {
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

.uv-feature-card:hover * {
  color: #ffffff;
}
.uv-feature-card i:hover {
  color: #ffffff;
  background-color: #00bfff;
}

.uv-feature-card i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e4d574;
  color: #0056b3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.uv-feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.uv-feature-card p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* ===================================
           BUTTON
        =================================== */

.uv-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  background: linear-gradient(135deg, #0056b3, #00bfff);
  color: #ffffff;
  text-decoration: none;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.5s ease;
  box-shadow: 0 15px 35px rgba(0, 86, 179, 0.35);
}

.uv-about-btn:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 45px rgba(0, 86, 179, 0.45);
}

/* ===================================
           RESPONSIVE
        =================================== */

@media (max-width: 1100px) {
  .uv-about-container {
    grid-template-columns: 1fr;
  }

  .uv-main-about-img {
    height: 550px;
  }

  .uv-about-title {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .uv-about-section {
    padding: 20px 5%;
  }

  .uv-main-about-img {
    height: 450px;
  }

  .uv-about-title {
    font-size: 35px;
  }

  .uv-about-features {
    grid-template-columns: 1fr;
  }

  .uv-experience-card {
    top: 20px;
    left: 10px;
    width: 210px;
  }
}

@media (max-width: 576px) {
  .uv-main-about-img {
    height: 380px;
  }

  .uv-about-title {
    font-size: 28px;
  }

  .uv-about-description {
    font-size: 15px;
  }

  .uv-feature-card {
    padding: 25px 20px;
  }

  .uv-feature-card h3 {
    font-size: 20px;
  }

  .uv-about-btn {
    width: 100%;
    justify-content: center;
  }

  .uv-experience-card {
    width: 180px;
    padding: 22px 18px;
  }

  .uv-experience-card h2 {
    font-size: 40px;
  }
}

/* about us section end */

/* our product section start  */
.uv-product-section {
  padding: 40px 3%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.uv-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #1a1a1a;
}

/* 3-Column Grid */
.uv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;
}

/* Product Card - Initial Hidden State */
.uv-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  border: 1px solid #eee;
  opacity: 0; /* Shuru mein invisible */
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Left Side Entry (Products 1, 2, 3) */
.from-left {
  transform: translateX(-100px);
}

/* Right Side Entry (Products 4, 5, 6) */
.from-right {
  transform: translateX(100px);
}

/* Active State (Step-by-Step Trigger) */
.uv-card.is-visible {
  opacity: 1;
  transform: translateX(0);
  border-bottom: 4px solid #0056b3;
  border-left: 4px solid #0056b3;
}

.uv-card:hover {
  transform: translateY(-10px);
  border-color: #023062;
}

.uv-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}

.uv-card h3 {
  font-size: 22px;
  color: #333;
  margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .uv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .uv-grid {
    grid-template-columns: 1fr;
  }
  .from-left,
  .from-right {
    transform: translateY(50px);
  } /* Mobile par niche se aayenge */
}

/* our product section end */

/* our valves slidder section strat  */
.uv-slider-section {
  width: 100%;
  padding: 30px 6%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.uv-slider-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111827;
}

.uv-slider-title span {
  color: #0056b3;
}

/* ======================================================
           VIEWPORT
        ====================================================== */

.uv-slider-viewport {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.uv-slider-track-slidder {
  display: flex;
  gap: 25px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ======================================================
           CARD
        ====================================================== */

.uv-valve-card {
  flex: 0 0 calc(20% - 20px);
  background: #fff;
  border-radius: 30px;
  padding: 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); */
  opacity: 0;
  transform: translateY(50px);
  cursor: pointer;
}

.uv-valve-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.uv-valve-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0056b3, #00bfff);
  transition: 0.5s;
  z-index: 1;
}

.uv-valve-card:hover::before {
  height: 100%;
}

.uv-valve-card:hover {
  transform: translateY(-15px);
}

/* ======================================================
           IMAGE
        ====================================================== */

.uv-circle-wrap {
  width: 170px;
  height: 170px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.uv-circle-wrap::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  background: #ffe45c;
  border-radius: 50%;
  transition: 0.5s;
}

.uv-valve-card:hover .uv-circle-wrap::before {
  transform: scale(1.1);
  background: #ffd000;
}

.uv-circle-wrap img {
  width: 110px;
  position: relative;
  z-index: 3;
  transition: 0.5s;
  filter: drop-shadow(5px 12px 20px rgba(0, 0, 0, 0.15));
}

.uv-valve-card:hover img {
  transform: translateY(-10px) scale(1.08);
}

/* ======================================================
           CONTENT
        ====================================================== */

.uv-valve-label {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  transition: 0.4s;
  color: #111827;
}

.uv-valve-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  color: #6b7280;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}

.uv-valve-card:hover .uv-valve-label,
.uv-valve-card:hover .uv-valve-desc {
  color: #fff;
}

/* ======================================================
           ACTIVE CARD
        ====================================================== */

.uv-valve-card.active-card {
  transform: scale(1.05);
}

/* ======================================================
           NAVIGATION
        ====================================================== */

.uv-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0056b3;
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.uv-nav-arrow:hover {
  background: #0056b3;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.uv-prev {
  left: 10px;
}

.uv-next {
  right: 10px;
}

/* ======================================================
           PROGRESS BAR
        ====================================================== */

.uv-progress-container {
  width: 240px;
  height: 6px;
  background: #dbe4f0;
  border-radius: 50px;
  margin: 50px auto 0;
  overflow: hidden;
}

.uv-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0056b3, #00bfff);
  border-radius: 50px;
  transition: 0.5s;
}

/* ======================================================
           RESPONSIVE
        ====================================================== */

/* Tablet */
@media (max-width: 1100px) {
  .uv-valve-card {
    flex: 0 0 calc(33.33% - 18px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .uv-slider-title {
    font-size: 32px;
  }
  .uv-slider-section {
    width: 100%;
    padding: 10px 6%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }
  .uv-valve-card {
    flex: 0 0 100%;
  }

  .uv-nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 18px;
    background: rgba(0, 71, 138, 0.08);
  }
}

/* Small Mobile */
@media (max-width: 500px) {
  .uv-slider-title {
    font-size: 28px;
  }

  .uv-circle-wrap {
    width: 140px;
    height: 140px;
  }

  .uv-circle-wrap img {
    width: 90px;
  }
  .uv-nav-arrow {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}

body {
  background: #f4f7fb;
  overflow-x: hidden;
}

/* our valves slidder section end */

/* why choose us section  start  */
.ultra-valves-automation-why-choose-wrapper-section {
  padding: 80px 5%;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  text-align: center;
}

.ultra-valves-automation-section-main-title-container {
  margin-bottom: 60px;
}

.ultra-valves-automation-section-main-title-container h2 {
  font-size: 38px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.ultra-valves-automation-section-main-title-container h2 span {
  color: #0056b3;
}

/* Grid Layout */
.ultra-valves-automation-grid-layout-container-fluid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1350px;
  margin: 0 auto;
}

/* Card Base Styling */
.ultra-valves-automation-individual-feature-card-item {
  background: #ffffff;
  padding: 45px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-bottom: 5px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  opacity: 0; /* Start hidden for animation */
  animation: ultraValvesFadeInSlide 0.8s ease-out forwards;
  border-bottom: 5px solid #144e8c;
  border-left: 5px solid #0056b3;
}

/* Hover Effects */
.ultra-valves-automation-individual-feature-card-item:hover {
  transform: translateY(-15px);
  border-bottom: 5px solid rgb(4, 4, 5);
  border-left: 5px solid rgb(4, 4, 5);
  box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15);
}

/* Icon Design */
.ultra-valves-automation-feature-card-icon-box-design {
  width: 85px;
  height: 85px;
  background: #f0f7ff;
  color: #0056b3;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: 0.6s ease;
}

.ultra-valves-automation-individual-feature-card-item:hover
  .ultra-valves-automation-feature-card-icon-box-design {
  background: #0056b3;
  color: #fff;
  transform: rotateY(360deg);
}

.ultra-valves-automation-individual-feature-card-item h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.ultra-valves-automation-individual-feature-card-item p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* Pure CSS Animations (One-by-One) */
@keyframes ultraValvesFadeInSlide {
  0% {
    opacity: 0;
    transform: translateX(var(--ultra-slide-dist));
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Individual Card Animation Controls */
.uv-card-1 {
  --ultra-slide-dist: -150px;
  animation-delay: 0.2s;
}
.uv-card-2 {
  --ultra-slide-dist: -150px;
  animation-delay: 0.5s;
}
.uv-card-3 {
  --ultra-slide-dist: 150px;
  animation-delay: 0.8s;
}
.uv-card-4 {
  --ultra-slide-dist: 150px;
  animation-delay: 1.1s;
}

/* Responsive Settings */
@media (max-width: 1200px) {
  .ultra-valves-automation-grid-layout-container-fluid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .ultra-valves-automation-grid-layout-container-fluid {
    grid-template-columns: 1fr;
  }
  .ultra-valves-automation-section-main-title-container h2 {
    font-size: 28px;
  }
  /* Adjusting mobile slide for better visuals */
  .ultra-valves-automation-individual-feature-card-item {
    --ultra-slide-dist: 0;
    transform: translateY(50px);
    animation: ultraValvesFadeInMobile 0.8s ease-out forwards;
  }
  .ultra-valves-automation-why-choose-wrapper-section {
    padding: 40px 5%;
  }
}

@keyframes ultraValvesFadeInMobile {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* why choose us section  end */

/* testimonial section start  */

.ultra-valves-premium-testimonial-slider-main-wrapper {
  width: 100%;
  padding: 50px 6%;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(4, 18, 44, 0.92), rgba(4, 18, 44, 0.92)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1400&auto=format&fit=crop");

  background-size: cover;
  background-position: center;
}

/* ============================================================
           BACKGROUND EFFECTS
        ============================================================ */

.ultra-valves-premium-testimonial-slider-main-wrapper::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0, 191, 255, 0.12);
  border-radius: 50%;
  top: -180px;
  left: -120px;
  filter: blur(50px);
}

.ultra-valves-premium-testimonial-slider-main-wrapper::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0, 86, 179, 0.15);
  border-radius: 50%;
  bottom: -180px;
  right: -120px;
  filter: blur(50px);
}

/* ============================================================
           TITLE
        ============================================================ */

.ultra-valves-premium-testimonial-slider-heading {
  text-align: center;
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.ultra-valves-premium-testimonial-slider-heading span {
  color: #00bfff;
}

.ultra-valves-premium-testimonial-slider-subheading {
  text-align: center;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.9;
  max-width: 760px;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* ============================================================
           SLIDER AREA
        ============================================================ */

.ultra-valves-premium-testimonial-slider-viewport {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ultra-valves-premium-testimonial-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
           CARD
        ============================================================ */

.ultra-valves-premium-single-testimonial-card {
  flex: 0 0 calc(33.33% - 20px);

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(15px);

  border-radius: 30px;

  padding: 40px 35px;

  position: relative;

  overflow: hidden;

  transition: 0.6s ease;

  cursor: pointer;
}

.ultra-valves-premium-single-testimonial-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 100%;
  background: linear-gradient(135deg, #0056b3, #00bfff);
  transition: 0.6s ease;
  z-index: 0;
}

.ultra-valves-premium-single-testimonial-card:hover::before {
  top: 0;
}

.ultra-valves-premium-single-testimonial-card:hover {
  transform: translateY(-18px);
}

.ultra-valves-premium-single-testimonial-card * {
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

/* ============================================================
           QUOTE ICON
        ============================================================ */

.ultra-valves-premium-testimonial-quote-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  color: #00bfff;

  margin-bottom: 30px;
}

.ultra-valves-premium-single-testimonial-card:hover
  .ultra-valves-premium-testimonial-quote-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: rotate(360deg);
}

/* ============================================================
           TEXT
        ============================================================ */

.ultra-valves-premium-testimonial-description {
  color: #dbeafe;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 35px;
}

.ultra-valves-premium-single-testimonial-card:hover
  .ultra-valves-premium-testimonial-description {
  color: #ffffff;
}

/* ============================================================
           CLIENT
        ============================================================ */

.ultra-valves-premium-testimonial-client-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ultra-valves-premium-testimonial-client-image {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.ultra-valves-premium-testimonial-client-name {
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ultra-valves-premium-testimonial-client-designation {
  color: #9ccfff;
  font-size: 14px;
  margin-bottom: 8px;
}

.ultra-valves-premium-testimonial-stars {
  display: flex;
  gap: 5px;
  color: #ffe45c;
  font-size: 14px;
}

/* ============================================================
           NAVIGATION BUTTONS
        ============================================================ */

.ultra-valves-premium-testimonial-navigation-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 65px;
  height: 65px;

  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(10px);

  color: #ffffff;

  font-size: 22px;

  cursor: pointer;

  z-index: 5;

  transition: 0.5s ease;
}

.ultra-valves-premium-testimonial-navigation-button:hover {
  background: #00bfff;
  transform: translateY(-50%) scale(1.1);
}

.ultra-valves-premium-testimonial-left-button {
  left: 20px;
}

.ultra-valves-premium-testimonial-right-button {
  right: 20px;
}

/* ============================================================
           PROGRESS BAR
        ============================================================ */

.ultra-valves-premium-testimonial-progressbar-wrapper {
  width: 250px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin: 60px auto 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ultra-valves-premium-testimonial-progressbar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00bfff, #ffffff);
  border-radius: 50px;
  transition: 0.5s ease;
}

/* ============================================================
           TABLET
        ============================================================ */

@media (max-width: 1100px) {
  .ultra-valves-premium-single-testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

/* ============================================================
           MOBILE
        ============================================================ */

@media (max-width: 768px) {
  .ultra-valves-premium-testimonial-slider-main-wrapper {
    padding: 90px 5%;
  }

  .ultra-valves-premium-testimonial-slider-heading {
    font-size: 38px;
  }

  .ultra-valves-premium-single-testimonial-card {
    flex: 0 0 100%;
  }

  .ultra-valves-premium-testimonial-navigation-button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/* ============================================================
           SMALL MOBILE
        ============================================================ */

@media (max-width: 500px) {
  .ultra-valves-premium-testimonial-slider-heading {
    font-size: 30px;
  }

  .ultra-valves-premium-testimonial-slider-subheading {
    font-size: 14px;
  }

  .ultra-valves-premium-single-testimonial-card {
    padding: 35px 25px;
  }
}

/* testimonial section end  */

/* counter section start  */
.mcs-counter-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.mcs-counter-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mcs-counter-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #2b44ff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.mcs-counter-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
  color: #0056b3;
}

.mcs-counter-number {
  font-size: 48px;
  font-weight: 800;
  color: #0056b3; /* Matching your red brand theme */
  margin-bottom: 10px;
  display: block;
}

/* Adding a plus sign after the number */
.mcs-counter-number::after {
  content: "+";
  font-size: 30px;
  margin-left: 2px;
  vertical-align: top;
}

.mcs-counter-label {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Hover Effects */
.mcs-counter-card:hover {
  transform: translateY(-12px);
  background: #1d0351;
  border-color: #000000;
  box-shadow: 0 20px 40px rgba(211, 47, 47, 0.2);
}

.mcs-counter-card:hover .mcs-counter-number,
.mcs-counter-card:hover .mcs-counter-label {
  color: #ffffff;
}

.mcs-counter-card:hover .mcs-counter-icon {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .mcs-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mcs-counter-grid {
    grid-template-columns: 1fr;
  }
  .mcs-counter-number {
    font-size: 38px;
  }
  .mcs-counter-section {
    padding: 50px 15px;
  }
}

/* counter section end */
/* whatsappp icon start  */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Styles */
.btn-float {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
}

/* WhatsApp Specific Style */
.btn-whatsapp {
  background: #25d366;
  animation: pulse-green 2s infinite;
}

.btn-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  background: #128c7e;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Scroll Top Specific Style */
.btn-top {
  background: #00f2ff; /* Matching your previous neon theme */
  color: #050810;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.btn-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-top:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

/* Pulse Animation for WhatsApp */
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .btn-float {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* whatsapp icons end  */

/* our process section start  */
.ultra-valves-automation-process-journey-master-wrapper {
  padding: 50px 5%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.ultra-valves-automation-process-header-box {
  margin-bottom: 70px;
}

.ultra-valves-automation-process-header-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ultra-valves-automation-process-header-box h2 span {
  color: #0056b3;
}

/* Timeline Container */
.ultra-valves-automation-process-timeline-flex-layout {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Connecting Line (Desktop Only) */
.ultra-valves-automation-process-timeline-flex-layout::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: #e9ecef;
  z-index: 0;
}

/* Individual Step Card */
.ultra-valves-automation-process-step-item-card {
  flex: 1;
  z-index: 1;
  padding: 0 15px;
  transition: 0.4s;
}

.ultra-valves-automation-process-step-icon-circle {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border: 4px solid #0056b3;
  color: #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.1);
}

.first-card .ultra-valves-automation-process-step-icon-circle {
  background: #fff641;
}
.second-card .ultra-valves-automation-process-step-icon-circle {
  background: #f8707e;
}
.third-card .ultra-valves-automation-process-step-icon-circle {
  background: #0bfff7;
}
.fourth-card .ultra-valves-automation-process-step-icon-circle {
  background: #27b806;
}

/* Step Number Badge */
.ultra-valves-automation-process-step-number-badge {
  position: absolute;
  background: #ffe45c;
  color: #1a1a1a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
}

.ultra-valves-automation-process-step-item-card:hover
  .ultra-valves-automation-process-step-icon-circle {
  background: #0056b3;
  color: #ffffff;
  transform: scale(1.15) translateY(-5px);
}

.ultra-valves-automation-process-step-item-card h4 {
  font-size: 22px;
  color: #0056b3;
  margin-bottom: 12px;
  font-weight: 700;
}

.ultra-valves-automation-process-step-item-card p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
}

/* --- FULL MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
  .ultra-valves-automation-process-timeline-flex-layout {
    flex-direction: column;
    gap: 50px;
  }

  .ultra-valves-automation-process-timeline-flex-layout::before {
    width: 4px;
    height: 85%;
    left: 45px;
    top: 50px;
    right: auto;
  }

  .ultra-valves-automation-process-step-item-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
  }

  .ultra-valves-automation-process-step-icon-circle {
    margin: 0;
    min-width: 90px;
  }
}

@media (max-width: 480px) {
  .ultra-valves-automation-process-step-item-card h4 {
    font-size: 16px;
  }
  .ultra-valves-automation-process-step-item-card p {
    font-size: 12px;
  }
  .ultra-valves-automation-process-step-icon-circle {
    min-width: 70px;
    height: 70px;
    font-size: 24px;
  }
}

/* our process section end  */
