/* hero section start  */
.ultra-valves-automation-full-width-hero-banner-main-container {
  width: 100%;
  line-height: 0; /* Removes any unwanted white space at the bottom */
  overflow: hidden;
  background: #f4f4f4; /* Subtle fallback color */
}

.ultra-valves-automation-hero-image-display-element {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures image covers the area beautifully */

  /* Initial Animation: Smooth Fade-in when page loads */
  opacity: 0;
  animation: ultraValvesHeroBannerFadeIn 1.2s ease-out forwards;
}

/* Responsive Height Management */
@media (min-width: 1025px) {
  .ultra-valves-automation-hero-image-display-element {
    min-height: 500px; /* Desktop height */
    max-height: 700px;
  }
}

@media (max-width: 1024px) {
  .ultra-valves-automation-hero-image-display-element {
    min-height: 350px; /* Tablet height */
  }
}

@media (max-width: 600px) {
  .ultra-valves-automation-hero-image-display-element {
    min-height: 160px; /* Mobile height */
    object-position: center; /* Keeps the center of your banner focused on small screens */
    object-fit: contain;
  }
}

/* Pure CSS Animation Keyframes */
@keyframes ultraValvesHeroBannerFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05); /* Subtle zoom-out effect on load */
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 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%;

  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: 32px;
  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: 2;
  color: #555;
  margin-bottom: 40px;
}

/* ===================================
           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: #ffe45c;
  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: 50px 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 mission section start */
.uvaplv-modern-mission-vision-main-wrapper {
  width: 100%;
  padding: 100px 7%;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 162, 255, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 255, 170, 0.1),
      transparent 30%
    ),
    linear-gradient(135deg, #071120, #0c1a2f, #08101d);
  position: relative;
  overflow: hidden;
}

.uvaplv-modern-mission-vision-main-wrapper::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0, 140, 255, 0.08);
  border-radius: 50%;
  top: -150px;
  left: -120px;
  filter: blur(60px);
}

.uvaplv-modern-mission-vision-main-wrapper::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 255, 200, 0.08);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  filter: blur(60px);
}

.uvaplv-modern-mission-vision-heading-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.uvaplv-modern-mission-small-title {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #00d9ff;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.uvaplv-modern-mission-vision-heading-wrapper h2 {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.uvaplv-modern-mission-vision-heading-wrapper p {
  max-width: 850px;
  margin: auto;
  color: #b8c7da;
  font-size: 18px;
  line-height: 1.9;
}

.uvaplv-modern-mission-vision-grid-layout {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  position: relative;
  z-index: 2;
}

.uvaplv-modern-mission-single-card {
  position: relative;
  padding: 45px 35px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: 0.5s ease;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.uvaplv-modern-mission-single-card:hover {
  transform: translateY(-15px);
  border-color: #00d9ff;
  box-shadow:
    0 20px 50px rgba(0, 217, 255, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.uvaplv-modern-floating-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #00d9ff, #00ffae);
  border-radius: 50%;
  top: -90px;
  right: -90px;
  opacity: 0.15;
  transition: 0.5s ease;
}

.uvaplv-modern-mission-single-card:hover .uvaplv-modern-floating-shape {
  transform: scale(1.3) rotate(25deg);
  opacity: 0.25;
}

.uvaplv-modern-card-icon-area {
  width: 95px;
  height: 95px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
  box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

.uvaplv-modern-card-icon-area::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
  left: -140%;
  transition: 0.7s;
}

.uvaplv-modern-mission-single-card:hover .uvaplv-modern-card-icon-area::before {
  left: 120%;
}

.uvaplv-modern-card-icon-area i {
  font-size: 38px;
  color: #fff;
  z-index: 2;
}

.uvaplv-modern-mission-single-card h3 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.uvaplv-modern-mission-single-card p {
  color: #c2d1e2;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 25px;
}

.uvaplv-modern-mission-single-card ul {
  list-style: none;
}

.uvaplv-modern-mission-single-card ul li {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.uvaplv-modern-mission-single-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d9ff, #00ffae);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.8);
}

/* =========================
TABLET RESPONSIVE
========================= */

@media (max-width: 992px) {
  .uvaplv-modern-mission-vision-grid-layout {
    grid-template-columns: 1fr;
  }

  .uvaplv-modern-mission-vision-heading-wrapper h2 {
    font-size: 42px;
  }
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width: 576px) {
  .uvaplv-modern-mission-vision-main-wrapper {
    padding: 70px 5%;
  }

  .uvaplv-modern-mission-vision-heading-wrapper {
    margin-bottom: 45px;
  }

  .uvaplv-modern-mission-vision-heading-wrapper h2 {
    font-size: 32px;
  }

  .uvaplv-modern-mission-vision-heading-wrapper p {
    font-size: 15px;
    line-height: 1.8;
  }

  .uvaplv-modern-mission-single-card {
    padding: 35px 25px;
    border-radius: 24px;
  }

  .uvaplv-modern-card-icon-area {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

  .uvaplv-modern-card-icon-area i {
    font-size: 30px;
  }

  .uvaplv-modern-mission-single-card h3 {
    font-size: 26px;
  }

  .uvaplv-modern-mission-single-card p {
    font-size: 14px;
  }

  .uvaplv-modern-mission-single-card ul li {
    font-size: 14px;
  }
}

/* our mission section end */

/* indutrisal section strat  */
.ultra-valves-modern-bento-master-wrapper {
  padding: 80px 5%;
  background: #f8f9fa;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

.ultra-valves-bento-header-title-box {
  text-align: center;
  margin-bottom: 50px;
}

.ultra-valves-bento-header-title-box h2 {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ultra-valves-bento-header-title-box h2 span {
  color: #0056b3;
}

/* --- BENTO GRID SYSTEM --- */
.ultra-valves-bento-grid-layout-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.ultra-valves-bento-item-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid Spanning for Unique Shape */
.uv-bento-span-2 {
  grid-column: span 2;
}
.uv-bento-tall {
  grid-row: span 2;
}

/* Card Hover Effects */
.ultra-valves-bento-item-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #0056b3;
}

/* Styling for the Large Branding Box */
.uv-bento-brand-box {
  background: #0056b3;
  color: #fff;
}

.uv-bento-brand-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.uv-bento-brand-box p {
  font-size: 15px;
  opacity: 0.9;
}

/* Icon Styling */
.uv-bento-icon-wrapper {
  font-size: 40px;
  color: #0056b3;
  margin-bottom: 20px;
}

.uv-bento-item-card:hover .uv-bento-icon-wrapper {
  transform: scale(1.1) rotate(-10deg);
  transition: 0.3s;
}

.ultra-valves-bento-item-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.ultra-valves-bento-item-card ul {
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #666;
}

.ultra-valves-bento-item-card ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ultra-valves-bento-item-card ul li::before {
  content: "→";
  color: #0056b3;
}

/* High-Quality Image Box */
.uv-bento-image-box {
  background-image: url("/assets/images/category/ball-valves.png");
  background-size: cover;
  background-position: center;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .ultra-valves-bento-grid-layout-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .uv-bento-tall {
    grid-row: span 1;
    height: 300px;
  }
}

@media (max-width: 650px) {
  .ultra-valves-bento-grid-layout-container {
    grid-template-columns: 1fr;
  }
  .uv-bento-span-2 {
    grid-column: span 1;
  }
  .ultra-valves-modern-bento-master-wrapper {
    padding: 50px 5%;
  }
}

/* indutrisal section 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: #ffeb82;
  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  */
