 
/* ===============================
   WHY CHOOSE US – FULL STYLES
================================ */

.why-choose-us {
  overflow: hidden;
}

/* -------------------------------
   HEADING & TEXT ANIMATION
-------------------------------- */
.why-choose-us h2,
.why-choose-us p {
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.why-choose-us .text-show {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------
   CARD BASE STYLE
-------------------------------- */
.choose-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: 
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.4s ease;
    padding:60px 10px !important;
}

/* Visible state (scroll animation) */
.choose-box.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* -------------------------------
   HOVER BACKGROUND GRADIENT
-------------------------------- */
.choose-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #002C61 0%, #0087D7 100%) !important;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.choose-box:hover::before {
  opacity: 1;
}

/* -------------------------------
   CONTENT ABOVE GRADIENT
-------------------------------- */
.choose-box * {
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
}

/* -------------------------------
   HOVER TEXT & ICON
-------------------------------- */
.choose-box:hover h5,
.choose-box:hover p {
  color: #ffffff;
}

.choose-box:hover i {
  color: #ffffff !important;
  transform: scale(1.15) rotate(-3deg);
}

/* -------------------------------
   CARD LIFT EFFECT
-------------------------------- */
.choose-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}

/* -------------------------------
   BOTTOM ACCENT LINE
-------------------------------- */
.choose-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: #ffffff;
  transition: width 0.4s ease;
  z-index: 3;
}

.choose-box:hover::after {
  width: 100%;
}






 
    /* =====================================
   SOLUTION APPROACH – FINAL STYLE
===================================== */

.solution-approach {
  background: linear-gradient(180deg, #f4f8fd 0%, #eef3f9 100%) !important;
  padding: 75px 0;
}

/* ---------------- TEXT BASE ---------------- */
.solution-approach h2,
.solution-approach p {
  opacity: 1; /* NEVER hide permanently */
}

/* text animation */
.sa-text {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

.sa-text.sa-show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- CARD BASE ---------------- */
.solution-box {
  background: #f9fbff;
  border: 1px solid #dde6f2;
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  cursor: pointer;

  opacity: 0;
  transform: translateY(30px);

  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    opacity 0.6s ease;
}

/* card visible */
.solution-box.sa-show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- CARD HOVER ---------------- */
.solution-box:hover {
 background: linear-gradient(135deg, #f9fbff 0%, #eef3f9 60%, #e7f0fb 100%);
  border-color: #005595;
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 85, 149, 0.18);
}

/* ---------------- IMAGE ---------------- */
.solution-box img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.solution-box:hover img {
  transform: scale(1.06);
}

/* ---------------- CARD TEXT ---------------- */
.solution-box h5 {
  font-size: 16px;
  color: #0b2b4b;
  transition: color 0.3s ease;
}

.solution-box p {
  font-size: 14px;
  color: #5c6f82;
  margin-bottom: 0;
}

/* hover title color */
.solution-box:hover h5 {
  color: #005595;
}

/* clean links */
.solution-box a {
  text-decoration: none;
}




/* ===============================
   CARD BASE
================================ */

.solution-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
}

/* ===============================
   TEXT (DEFAULT STATE)
================================ */

.product-title,
.product-text {
  transition: all 0.35s ease;
}

/* ===============================
   BUTTON (HIDDEN BY DEFAULT)
================================ */

.view-details-btn {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%) translateY(20px);

  padding: 10px 26px;
  border-radius: 30px;

  background: linear-gradient(90deg, #002C61 0%, #0087D7 100%) !important;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  opacity: 0;
  visibility: hidden;

  transition: all 0.4s ease;
}

/* ===============================
   HOVER EFFECT
================================ */

.solution-box:hover .product-title,
.solution-box:hover .product-text {
  opacity: 0;
  transform: translateY(-10px);
}

.solution-box:hover .view-details-btn {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===============================
   BUTTON HOVER (EXTRA POLISH)
================================ */

.view-details-btn:hover {
  box-shadow: 0 10px 25px rgba(0, 135, 215, 0.45);
  color: #ffffff;
}


/* ===============================
   ULTRA PREMIUM STATEMENT BOX
================================ */

.ultra-premium-box {
  max-width: 820px;
  margin: auto;
  padding: 42px 46px;

  /* Powerful layered gradient */
  background:
    radial-gradient(
      circle at top left,
      rgba(255,255,255,0.18),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      #001c3d 0%,
      #003b7a 40%,
      #0076c8 70%,
      #00a0ff 100%
    );

  border-radius: 22px;
  position: relative;
  overflow: hidden;

  /* Heavy depth */
  box-shadow:
    0 25px 60px rgba(0, 40, 90, 0.55),
    inset 0 1px 1px rgba(255,255,255,0.25);

  transition: all 0.45s ease;
}

/* Animated light wave */
.ultra-premium-box::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,0.22),
    transparent 60%
  );
  animation: premiumWave 9s linear infinite;
}

/* Border glow */
.ultra-premium-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  pointer-events: none;
}

/* TEXT STYLE */
.ultra-premium-box p {
  margin: 0;
  position: relative;
  z-index: 2;

  color: #ffffff;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  text-align: center;

  text-shadow:
    0 6px 18px rgba(0,0,0,0.55);
}

/* ===============================
   HOVER EFFECT (WOW)
================================ */

.ultra-premium-box:hover {
  transform: translateY(-10px) scale(1.02);

  background:
    radial-gradient(
      circle at top right,
      rgba(255,255,255,0.25),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      #002a5c 0%,
      #005aa8 40%,
      #0090e5 70%,
      #00c2ff 100%
    );

  box-shadow:
    0 40px 85px rgba(0, 70, 140, 0.7),
    inset 0 1px 2px rgba(255,255,255,0.3);
}

/* Hover glow intensifies */
.ultra-premium-box:hover::before {
  animation-duration: 5s;
  opacity: 0.9;
}

/* Light sweep animation */
@keyframes premiumWave {
  0% {
    transform: translateX(-45%);
  }
  100% {
    transform: translateX(45%);
  }
}







 
/* =====================================
   QUALITY SECTION – BI-DIRECTION EFFECT
===================================== */
 
/* ---------------- TEXT BASE ---------------- */
.qualitytest h2,
.qualitytest p {
  opacity: 1;
}

/* text animation base */
.qt-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.qt-text.qt-show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- IMAGE ---------------- */
.sticky-image img {
  opacity: 0;
  transform: translateX(-40px) scale(0.96);
  transition: all 0.9s ease;
}

.sticky-image img.qt-show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* subtle hover polish */
.sticky-image img:hover {
  transform: scale(1.03);
}
    






 
/* ===============================
   TECH SECTION – SPLIT LAYOUT
================================ */

.tech-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;

  /* Background image (RIGHT SIDE) */
  background-image: url("https://laundrymachine.co.in/laundrymachine/image/Quality-Policy.png"); /* <-- your image */
  background-repeat: no-repeat;
  background-size: 55% auto;
  background-position: right center;
  background-attachment: fixed;

  background-color: #001c3d;
  overflow: hidden;
}

/* Dark overlay for readability */
.tech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 20, 45, 0.95) 0%,
    rgba(0, 20, 45, 0.85) 45%,
    rgba(0, 20, 45, 0.4) 70%,
    rgba(0, 20, 45, 0) 100%
  );
  z-index: 1;
}

/* Container layout */
.tech-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
}

/* LEFT TEXT */
.tech-text {
  max-width: 520px;
  padding: 80px 20px;
}

/* Heading */
.tech-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

/* Paragraph */
.tech-text p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .tech-section {
    background-size: cover;
    background-position: center;
  }

  .tech-overlay {
    background: rgba(0, 20, 45, 0.85);
  }

  .tech-text {
    max-width: 100%;
    padding: 60px 15px;
  }
}
    
/* =====================================
   TECH WRAPPER – SCROLL ANIMATION
===================================== */

.tech-wrapper {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* ACTIVE STATE */
.tech-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: subtle text polish */
.tech-text h2 {
  transition: letter-spacing 0.4s ease;
}

.tech-wrapper.is-visible .tech-text h2 {
  letter-spacing: 0.5px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .tech-wrapper {
    transform: translateY(40px);
  }
}
    
 

 
/* =====================================
   PADMANABHA – CLASSIC SCROLL ANIMATION
===================================== */

.padmanabha {
  position: relative;
  background: linear-gradient(180deg, #f7f8f6, #edf2f7);
  overflow: hidden;
}

/* Decorative background shapes */
.padmanabha::before,
.padmanabha::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 55, 100, 0.06);
  z-index: 0;
}

.padmanabha::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -120px;
}

.padmanabha::after {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -160px;
}

/* Content wrapper */
.padmanabha .container {
  position: relative;
  z-index: 2;
}

/* Card layout */
.padmanabha .row {
  background: #ffffff;
  border-radius: 22px;
  padding: 55px 45px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* =====================================
   INITIAL STATE (BEFORE SCROLL)
===================================== */

.padmanabha img,
.padmanabha h2,
.padmanabha p {
  opacity: 0;
  transition: all 0.9s ease;
}

/* Image initial */
.padmanabha img {
  max-width: 85%;
  border-radius: 20px;
  transform: translateX(-60px) scale(0.95);
}

/* Text initial */
.padmanabha h2,
.padmanabha p {
  transform: translateY(35px);
}

/* =====================================
   WHEN SECTION IS IN VIEW
===================================== */

.padmanabha.in-view img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.padmanabha.in-view h2,
.padmanabha.in-view p {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect on image */
.padmanabha.in-view img:hover {
  transform: scale(1.05);
  box-shadow: 0 35px 70px rgba(0, 55, 100, 0.25);
}

/* Headings */
.padmanabha h2 {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #003764;
  position: relative;
}

.padmanabha h2::after {
  content: "";
  display: block;
  width: 75px;
  height: 3px;
  background: #003764;
  margin-top: 12px;
  border-radius: 6px;
}

/* Paragraphs */
.padmanabha p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 991px) {
  .padmanabha .row {
    padding: 35px 25px;
  }

  .padmanabha img {
    max-width: 100%;
    margin-bottom: 25px;
    transform: translateY(30px) scale(0.95);
  }

  .padmanabha.in-view img {
    transform: translateY(0) scale(1);
  }

  .padmanabha h2 {
    font-size: 24px;
  }

  .padmanabha p {
    font-size: 15px;
  }
}
    


 
/* =====================================
   WHO WE SERVE – PREMIUM DYNAMIC STYLE
===================================== */

.who-we-serve {
  position: relative;
  background: linear-gradient(180deg, #f4f7fb, #eef2f6);
  overflow: hidden;
}

/* Decorative background accents */
.who-we-serve::before,
.who-we-serve::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 85, 149, 0.08);
  z-index: 0;
}

.who-we-serve::before {
    width: 380px;
    height: 320px;
    top: -200px;
    left: -120px;
}

.who-we-serve::after {
  width: 450px;
  height: 450px;
  bottom: -160px;
  right: -160px;
}


/* Content layering */
.who-we-serve .container {
  position: relative;
  z-index: 2;
}

/* Section heading */
.who-we-serve h2 {
  font-size: 34px;
  position: relative;
}

.who-we-serve h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #005595, #00b4ff);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* ===============================
   SERVE BOX – CARD DESIGN
================================ */

.serve-box {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 20px;
  border: 1px solid rgba(0, 85, 149, 0.08);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

/* Card hover */
.serve-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 85, 149, 0.25);
}

/* Top accent line */
.serve-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #005595, #00b4ff);
  transition: width 0.4s ease;
}

.serve-box:hover::before {
  width: 100%;
}

/* ===============================
   ICON STYLE
================================ */

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #005595, #00b4ff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.5s ease;
}

.serve-box:hover .icon-circle {
  transform: rotate(8deg) scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 180, 255, 0.45);
}

/* Text */
.serve-box h5 {
  color: #003764;
}

.serve-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   SCROLL ANIMATION ACTIVE
================================ */

.serve-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   SWIPER PAGINATION (MOBILE)
================================ */

.serve-pagination {
  margin-top: 25px;
}

.serve-pagination .swiper-pagination-bullet {
  background: #005595;
  opacity: 0.4;
}

.serve-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 767px) {
  .who-we-serve h2 {
    font-size: 28px;
  }

  .serve-box {
    padding: 28px 20px;
  }
}
    
/* =====================================
   SERVE BOX – SCROLL ANIMATION
===================================== */

.serve-box {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  will-change: transform, opacity;
}

/* ACTIVE ON SCROLL */
.serve-box.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =====================================
   HOVER – SUBTLE PREMIUM EFFECT
===================================== */

.serve-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

/* Icon animation */
.serve-box .icon-circle {
  transition: transform 0.5s ease, background 0.5s ease;
}

.serve-box:hover .icon-circle {
  transform: scale(1.15) rotate(6deg);
  background: linear-gradient(90deg, #002C61 0%, #0087D7 100%);
  color: #fff;
}

/* =====================================
   MOBILE OPTIMIZATION
===================================== */
@media (max-width: 768px) {
  .serve-box {
    transform: translateY(35px);
  }
}



 
/* =====================================
   MANUFACTURE SECTION – SCROLL ANIMATION
===================================== */

 

/* Initial state */
.manufacture-image img,
.manufacture-section h2,
.manufacture-section p,
.manufacture-section .button {
  opacity: 0;
  transition: all 0.9s ease;
}

/* Image initial */
.manufacture-image img {
  transform: translateX(-70px) scale(0.95);
  border-radius: 18px;
}

/* Text initial */
.manufacture-section h2,
.manufacture-section p {
  transform: translateY(40px);
}

/* Button initial */
.manufacture-section .button {
  transform: translateY(30px) scale(0.95);
}

/* ===============================
   WHEN SECTION IS IN VIEW
================================ */

.manufacture-section.in-view .manufacture-image img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.manufacture-section.in-view h2,
.manufacture-section.in-view p {
  opacity: 1;
  transform: translateY(0);
}

.manufacture-section.in-view .button {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.25s;
}

/* Heading style */
.manufacture-section h2 {
  
  position: relative;
}

.manufacture-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #005595, #00b4ff);
  display: block;
  margin-top: 14px;
  border-radius: 6px;
}

/* Paragraph */
.manufacture-section p {
  font-size: 16px;
  line-height: 1.8;
  
}

/* Button hover */
.manufacture-section .button:hover {
  transform: scale(1.05);
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 991px) {
  .manufacture-section {
    padding: 60px 0;
  }

  .manufacture-image img {
    transform: translateY(40px) scale(0.95);
  }

  .manufacture-section.in-view .manufacture-image img {
    transform: translateY(0) scale(1);
  }

  .manufacture-section h2 {
    font-size: 26px;
  }

  .manufacture-section p {
    font-size: 15px;
  }
}




 

 
 /* =====================================
   TEAM SECTION – PREMIUM HOVER + SCROLL
===================================== */

.team-section {
  position: relative;
  background: linear-gradient(180deg, #f4f8fc, #eef3f8);
  overflow: hidden;
}

/* Decorative background */
.team-section::before,
.team-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 85, 149, 0.08);
  z-index: 0;
}

.team-section::before {
  width: 300px;
  height: 300px;
  top: -120px;
  left: -120px;
}

.team-section::after {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -160px;
}

/* Layer fix */
.team-section .container {
  position: relative;
  z-index: 2;
}

/* ===============================
   HEADING
================================ */

.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #005595, #00b4ff);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* ===============================
   TEAM CARD – BASE
================================ */

.teamSwiper .swiper-slide > div {
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.5s ease;
  background: #ffffff;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
}

/* Scroll active */
.team-section.in-view .teamSwiper .swiper-slide > div {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   HOVER BACKGROUND EFFECT
================================ */

.teamSwiper .swiper-slide > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #002C61 0%, #0087D7 100%) !important;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.teamSwiper .swiper-slide > div:hover::before {
  opacity: 1;
}

/* Lift on hover */
.teamSwiper .swiper-slide > div:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow: 0 35px 80px rgba(0, 85, 149, 0.35);
}

/* ===============================
   IMAGE
================================ */

.teamSwiper img {
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
}

.teamSwiper .swiper-slide > div:hover img {
  transform: scale(1.08);
}

/* ===============================
   TEXT COLOR CHANGE
================================ */

.teamSwiper h5,
.teamSwiper p {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.teamSwiper .swiper-slide > div:hover h5,
.teamSwiper .swiper-slide > div:hover p {
  color: #ffffff !important;
}

/* ===============================
   SWIPER NAVIGATION
================================ */

.team-section .swiper-button-next,
.team-section .swiper-button-prev {
  color: #005595;
  background: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.team-section .swiper-button-next:hover,
.team-section .swiper-button-prev:hover {
  background: #005595;
  color: #ffffff;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 767px) {
  .section-title {
    font-size: 26px;
  }

  .teamSwiper .swiper-slide > div {
    margin: 0 12px;
  }
}
 


 
    /* =====================================
   TESTIMONIALS – EDITORIAL STYLE
===================================== */

.testimonials {
  background: linear-gradient(180deg, #f8fafc, #eef2f6);
  padding: 0px 0 80px 0px;
}

/* Heading */
.testimonials h2 {
  font-size: 34px;
  position: relative;
}

.testimonials h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #005595;
  display: block;
  margin: 12px auto 0;
  border-radius: 6px;
}

/* ===============================
   CARD BASE
================================ */

.testimonial-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  border-top: 4px solid #005595;
  transition: all 0.5s ease;
  height: 100%;
}

/* Icon */
.testimonial-box i {
  font-size: 48px;
  color: #005595;
  opacity: 0.85;
}

/* Text */
.testimonial-box h5 {
  color: #003764;
  margin-top: 14px;
}

.testimonial-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-top: 14px;
}

/* ===============================
   SLIDE STATES
================================ */

/* Default */
.testimonialSwiper .swiper-slide {
  transform: scale(0.92);
  opacity: 0.6;
  transition: all 0.6s ease;
}

/* Center (Active) */
.testimonialSwiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

/* Card shadow only for active */
.testimonialSwiper .swiper-slide-active .testimonial-box {
  box-shadow: 0 30px 70px rgba(0, 85, 149, 0.25);
}

/* ===============================
   NAVIGATION
================================ */

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  background: #ffffff;
  color: #005595;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonials .swiper-button-next::after,
.testimonials .swiper-button-prev::after {
  font-size: 15px;
}

/* ===============================
   SCROLL FADE-IN
================================ */

.testimonials {
   
  transform: translateY(60px);
  transition: all 1s ease;
}

.testimonials.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 767px) {
  .testimonialSwiper .swiper-slide {
    transform: scale(1);
    opacity: 1;
  }

  .testimonialSwiper .swiper-slide-active .testimonial-box {
    box-shadow: none;
  }
}
   
 
/* =====================================
   OUR CLIENTS – PREMIUM LOGO SECTION
===================================== */

.our-clients {
  position: relative;
  background: linear-gradient(180deg, #f7faff, #eef3f8);
  overflow: hidden;
}

/* Soft decorative accents */
.our-clients::before,
.our-clients::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 85, 149, 0.06);
  z-index: 0;
}

.our-clients::before {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -120px;
}

.our-clients::after {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -160px;
}

/* Content layer */
.our-clients .container {
  position: relative;
  z-index: 2;
}

/* ===============================
   HEADING STYLE
================================ */

.our-clients .section-title {
  font-size: 34px;
  position: relative;
}

.our-clients .section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #005595, #00b4ff);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* ===============================
   LOGO CARD STYLE
================================ */

.our-clients .swiper-slide > div {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s ease;
  border: 1px solid rgba(0, 85, 149, 0.08);
}

/* Logo image */
.our-clients img {
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.45s ease;
}

 

.our-clients .swiper-slide > div:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ===============================
   CTA BUTTON POLISH
================================ */

.our-clients .button {
  transition: all 0.35s ease;
}

.our-clients .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 767px) {
  .our-clients .section-title {
    font-size: 26px;
  }

  .our-clients img {
    max-height: 65px;
  }
}

.hover-border {
  position: relative;
  overflow: hidden;
}

/* common border lines */
.hover-border::before,
.hover-border::after {
  content: "";
  position: absolute;
  background:linear-gradient(90deg, #002C61 0%, #0087D7 100%) !important; 
  transition: all 0.6s ease;
}

/* TOP & BOTTOM */
.hover-border::before {
  height: 2px;
  width: 0;
  top: 0;
  left: 0;
}

.hover-border::after {
  height: 2px;
  width: 0;
  bottom: 0;
  right: 0;
}

/* LEFT & RIGHT using inner span trick */
.hover-border span::before,
.hover-border span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background: #ba1fb5;
  transition: all 0.6s ease;
}

.hover-border span::before {
  left: 0;
  top: 0;
}

.hover-border span::after {
  right: 0;
  bottom: 0;
}

/* Hover animation */
.hover-border:hover::before,
.hover-border:hover::after {
  width: 100%;
}

.hover-border:hover span::before,
.hover-border:hover span::after {
  height: 100%;
}


 
.cta-section{
    padding: 90px 0;
    background-image: url(https://laundrymachine.co.in/landing-page/hero-background.png);
}
.cta-infobox{
    color:#ffffff;
}




 
/* =====================================
   BLOG SECTION – PREMIUM ANIMATIONS
===================================== */

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  position: relative;

  /* INITIAL SCROLL STATE */
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

/* SCROLL IN VIEW */
.blog-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* BODY */
.blog-card-body {
  padding: 18px;
}

.blog-card-body h5 {
  font-size: 16px;
  font-weight: 700;
  color: #005595;
  margin-bottom: 10px;
}

.blog-card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

.blog-card-body a {
  color: #002C61;
  font-weight: 600;
  text-decoration: none;
}

/* =====================================
   HOVER – PREMIUM DEPTH EFFECT
===================================== */

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid #002C61;
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.4s ease;
  pointer-events: none;
}

.blog-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.blog-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 30px 70px rgba(186, 31, 181, 0.28);
}

/* Image zoom */
.blog-card:hover img {
  transform: scale(1.12);
}

/* =====================================
   STAGGER DELAY (AUTO)
===================================== */
.blog-card:nth-child(1) { transition-delay: 0.1s; }
.blog-card:nth-child(2) { transition-delay: 0.2s; }
.blog-card:nth-child(3) { transition-delay: 0.3s; }
.blog-card:nth-child(4) { transition-delay: 0.4s; }

/* =====================================
   MOBILE OPTIMIZATION
===================================== */
@media (max-width: 768px) {
  .blog-card {
    transform: translateY(40px);
  }

  .blog-card img {
    height: 170px;
  }
}
    
.button {
  position: relative;
  overflow: hidden;
  background: #ba1fb5;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 28px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Shine light */
.button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

/* Hover */
.button:hover::before {
  left: 130%;
}

.button:hover {
  transform: translateY(-3px);
  
}
    
   

/* =====================================
   SECTION TITLE – SCROLL ANIMATION
===================================== */

/* Initial hidden state */
.section-title,
.section-title + p {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active when visible */
.section-title.is-visible,
.section-title.is-visible + p {
  opacity: 1;
  transform: translateY(0);
}

/* Optional polish */
.section-title {
  transition-delay: 0s;
}

.section-title.is-visible + p {
  transition-delay: 0.15s;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .section-title,
  .section-title + p {
    transform: translateY(28px);
  }
}



 