
/*Start Hero Slider Banner Section CSS*/
.hero-slider-banner {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #1e3c72, #2a5298, #00c6ff, #0072ff);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Gradient Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.slider-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

/* Each Slide */
.banner-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.banner-slide.active {
  display: flex;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left (Image) */
.banner-slide .slide-left {
  flex: 1;
  display: flex;
  justify-content: center;
}
.banner-slide .slide-left img {
  width: 350px;
  max-width: 100%;
  border-radius: 5%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}
.banner-slide .slide-left img:hover {
  transform: scale(1.1);
}

/* Right (Text) */
.banner-slide .slide-right {
  flex: 1;
  text-align: left;
}
.banner-slide .slide-right h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 15px;
  text-shadow: 0px 3px 8px rgba(0,0,0,0.4);
}
.banner-slide .slide-right p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 20px;
}
.cta-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg,#00c6ff,#0072ff);
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: inline-block;
}
.cta-btn:hover {
  background: linear-gradient(135deg,#0072ff,#00c6ff);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-slide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .banner-slide .slide-left img {
    width: 250px;
  }
  .banner-slide .slide-right {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .banner-slide .slide-left img {
    width: 200px;
  }
  .banner-slide .slide-right h1 {
    font-size: 1.6rem;
  }
  .banner-slide .slide-right p {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* SMILEY FLOATS */
.float-emoji {
  position: absolute;
  top: 68%;
  left: var(--x);
  font-size: clamp(18px,2.6vw,36px);
  animation: floatUp 6s var(--delay) infinite ease-in-out;
  opacity: .85;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.18));
}
@keyframes floatUp {
  0% { transform:translate(-50%,50px) scale(.9); opacity:0 }
  15% { opacity:.85 }
  50% { transform:translate(-50%,-20px) scale(1.05) }
  100% { transform:translate(-50%,-120px) scale(1.1); opacity:0 }
}

/*End Hero Slider Banner Section CSS*/



/*Start Hero 3 Section CSS*/
.hero3 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(135deg, #e0f7fa, #ffffff, #f1f8ff);
  background-size: 400% 400%;
  animation: gradientBG 12s ease infinite;
}

/* Animated Gradient */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Grid Layout */
.hero3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero3-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .actions { justify-content: center; }
  .hero3-image { margin-top: 20px; }
}

/* Badge */
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18,209,194,.12);
  color: #0f6b63;
  font-weight: 600;
  font-size: 14px;
}

/* Title & Lead */
.display {
  font-size: clamp(26px, 4vw, 48px);
  margin: 20px 0;
  font-weight: 700;
  line-height: 1.2;
}
.kicker { color: #0f6b63; }
.lead {
  font-size: clamp(14px, 2.2vw, 18px);
  margin-bottom: 20px;
  color: #333;
}

/* Buttons */
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(12,27,42,.12);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  background: #fff;
  transition: 0.3s;
}
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* Image */
.hero3-image img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
}

/* Animated Wave */
.wave-container {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}
.hero-wave {
  position: relative;
  width: calc(100% + 1.3px);
  height: 100px;
  animation: waveMove 10s linear infinite;
}
@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Floating Particles */
.hero3::before, .hero3::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(18,209,194,0.25);
  animation: floatBubble 8s infinite ease-in-out alternate;
}
.hero3::before {
  width: 40px; height: 40px; left: 10%; top: 20%;
}
.hero3::after {
  width: 25px; height: 25px; right: 15%; bottom: 15%;
}
@keyframes floatBubble {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-40px) scale(1.2); opacity: 1; }
}
/*End Hero 3 Section CSS*/


/*Start Hero 2 Ark Section CSS*/
/* ====== Basic reset for this section ====== */
.hero-arc { position: relative; overflow: hidden; background: linear-gradient(90deg,#0ea5a6 0%, #2563eb 100%); color:white; }
.hero-arc .container { max-width:1200px; margin:0 auto; padding:48px 20px; display:grid; grid-template-columns: 1fr; gap:28px; align-items:center; }
@media(min-width:768px){ .hero-arc  .container { grid-template-columns: 1fr 1fr; padding:72px 40px; } }

/* ====== Arc shapes ====== */
.arc { position:absolute; left:0; width:100%; height:90px; pointer-events:none; }
.arc svg { display:block; width:100%; height:100%; }
.arc-top { top:0; transform:translateY(-48px); }
.arc-bottom { bottom:0; transform:translateY(48px); }
.arc-fill { fill: rgba(255,255,255,0.18); }

/* ====== Text column ====== */
.hero-text { text-align:center; padding-top:10px; }
@media(min-width:768px){ .hero-text { text-align:left; padding-right:24px; } }

.hero-title {
  font-size:2.25rem; /* 36px */
  line-height:1.03;
  font-weight:800;
  margin:0 0 12px;
  letter-spacing: -0.6px;
  transform-origin:center;
  opacity:0;
  transform: translateY(24px) scale(0.995);
  transition: transform 900ms cubic-bezier(.2,.9,.2,1), opacity 900ms ease;
}
@media(min-width:768px){ .hero-title { font-size:3rem; } }

.hero-sub {
  font-size:1.05rem;
  color:rgba(255,255,255,0.95);
  margin:0 0 18px;
  max-width:52ch;
  margin-inline:auto;
  opacity:0;
  transform: translateY(20px);
  transition: transform 1100ms cubic-bezier(.2,.9,.2,1), opacity 1100ms ease;
}
@media(min-width:768px){ .hero-sub { margin-inline:0; } }

/* ====== Buttons ====== */
.hero-ctas { display:flex; gap:12px; justify-content:center; margin-bottom:18px; }
@media(min-width:768px){ .hero-ctas { justify-content:flex-start; } }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 20px; border-radius:999px; font-weight:700; text-decoration:none;
  transition: transform 350ms cubic-bezier(.2,.9,.2,1), box-shadow 350ms ease, background 350ms ease;
  will-change: transform;
}
.btn.primary {
  background:linear-gradient(90deg,#ffffff 0%, rgba(255,255,255,0.95) 100%);
  color:#075985;
  box-shadow: 0 8px 28px rgba(2,6,23,0.28);
}
.btn.primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 18px 40px rgba(2,6,23,0.35); }

.btn.ghost {
  background: transparent; border:1px solid rgba(255,255,255,0.18); color:rgba(255,255,255,0.95);
}
.btn.ghost:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(2,6,23,0.18); }

/* ====== Trust list ====== */
.trust-list { list-style:none; padding:0; margin:8px 0 0; display:flex; gap:18px; justify-content:center; color:rgba(255,255,255,0.95); font-weight:600; font-size:0.95rem; opacity:0; transform: translateY(12px); transition: all 900ms ease; }
@media(min-width:768px){ .trust-list { justify-content:flex-start; } }

/* ====== Image column ====== */
.hero-image-wrap { display:flex; align-items:center; justify-content:center; }
.hero-image {
  width:320px; max-width:80%; height:auto; border-radius:16px; box-shadow: 0 18px 40px rgba(2,6,23,0.32);
  transform: translateY(24px) scale(0.995); opacity:0; transition: transform 1000ms cubic-bezier(.2,.9,.2,1), opacity 1000ms ease, box-shadow 350ms ease;
  will-change: transform, opacity;
}

/* ====== Entrance states (will be toggled by JS) ====== */
.in-view .hero-title { opacity:1; transform: translateY(0) scale(1); transition-delay:120ms; }
.in-view .hero-sub { opacity:1; transform: translateY(0); transition-delay:260ms; }
.in-view .trust-list { opacity:1; transform: translateY(0); transition-delay:420ms; }
.in-view .hero-image { opacity:1; transform: translateY(0) scale(1); transition-delay:360ms; }

/* ====== Gentle bounce animation for emoji in title ====== */
@keyframes title-bounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.hero-title.emoji-bounce { animation: title-bounce 2200ms ease-in-out infinite; transform-origin:center; }

/* ====== Parallax tweak for image on hover (desktop) ====== */
@media (hover: hover) and (pointer: fine) {
  .hero-image-wrap:hover .hero-image { transform: translateY(-6px) scale(1.01); box-shadow: 0 28px 60px rgba(2,6,23,0.38); transition-duration:520ms; }
}

/* ====== prefers-reduced-motion ====== */
@media (prefers-reduced-motion: reduce) {
  .hero-title, .hero-sub, .trust-list, .hero-image { transition:none !important; animation:none !important; transform:none !important; opacity:1 !important; }
}
/*End Hero 2 Ark Section CSS*/




/* Start Product Gallery Section CSS*/
.trusted-section {
  background: #f9fbfd;
}
/*.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3c72;
}*/
.logo-slider {
  overflow: hidden;
  position: relative;
  display: flex;
  white-space: nowrap;
}
.logos-slide {
  display: flex;
  animation: slide 25s linear infinite;
}
.logos-slide img {
  height: 200px;
  margin: 0 0px;
  /*filter: grayscale(100%);*/
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logos-slide img:hover {
  transform: scale(1.20);
  filter: grayscale(0%);
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
/* Pause animation on hover */
.logo-slider:hover .logos-slide {
  animation-play-state: paused;
}
/* End Product Gallery CSS */



/*Start Homepage About us Section CSS  */
.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: scale(1);
  transition: transform 0.5s ease;
}
.about-image img:hover {
  transform: scale(1.15) rotate(10deg);
   
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1e3c72;
}
.about-content h2 span {
  color: #dd2476;
}
.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  margin: 15px 0 25px;
  border-radius: 5px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.feature-box {
  flex: 1;
  background: #fff;
  padding: 20px 15px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s ease;
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.feature-box .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  stroke: #2a5298;
}
.feature-box h4 {
  font-size: 1rem;
  color: #333;
}

.about-btn {
  display: inline-block;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.3s ease;
}
.about-btn:hover {
  background: linear-gradient(90deg, #dd2476, #ff512f);
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-features {
    flex-direction: column;
  }
}
/*End Homepage About us Section CSS  */


/* Start Homepage Product Section CSS */ 
.products-section {
  background: #f9fbfd;
}
.section-title {
  font-size: 2.5rem;
  color: #1e3c72;
  font-weight: 700;
}
.prod-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.prod-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.prod-img-wrap img {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.prod-card:hover .prod-img-wrap img {
  transform: scale(1.15);
  opacity: 0.9;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex; justify-content: center; align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.prod-card:hover .overlay {
  opacity: 1;
}
.overlay-btn {
  background: #1e3c72;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}
.overlay-btn:hover {
  background: #2a5298;
}
.prod-card h3 {
  font-size: 1.25rem;
  color: #2a5298;
  margin-top: 15px;
}
.prod-card p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 5px;
}
/* End Homepage Product Section CSS */ 



/* Start White BG Counter Section CSS */ 
.counter-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.counter-box {
  border-radius: 18px;
  padding: 30px 20px;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.counter-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.counter-box .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  stroke: white;
}

.counter-box h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 10px 0;
}

.counter-box p {
  font-size: 1.1rem;
  font-weight: 300;
}

/* Gradient colors */
.box1 { background: linear-gradient(135deg, #1e3c72, #2a5298); } /* Blue */
.box2 { background: linear-gradient(135deg, #ff512f, #dd2476); } /* Orange-Pink */
.box3 { background: linear-gradient(135deg, #11998e, #38ef7d); } /* Green */
.box4 { background: linear-gradient(135deg, #654ea3, #eaafc8); } /* Purple-Pink */
/* End White BG Counter Section CSS */



/*Start Section Our Certificate CSS  */ 
/* Section Background */
#our-certificates {
  background: linear-gradient(135deg, #f9f9fb, #eef4ff);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Fancy Heading */
#our-certificates .section-title span {
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(45deg, #ff6a00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
#our-certificates .section-title span::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background: #ff6a00;
  margin: 8px auto 0;
  border-radius: 4px;
}

/* Left Image */
.lab-image-box img {
  border-radius: 16px;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.lab-image-box:hover img {
  transform: rotate(0deg) scale(1.05);
}

/* Certificate Cards */
.cert-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: center;
}
.cert-card img {
  max-height: 120px;
  object-fit: contain;
}
.cert-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 3D Floating Background Effects */
.bg-shape-1, .bg-shape-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
}
.bg-shape-1 {
  width: 300px; height: 300px;
  background: #007bff;
  top: -80px; left: -80px;
  animation: float1 10s ease-in-out infinite alternate;
}
.bg-shape-2 {
  width: 400px; height: 400px;
  background: #ff00cc;
  bottom: -100px; right: -100px;
  animation: float2 12s ease-in-out infinite alternate;
}

/* Floating Animations */
@keyframes float1 {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(40px) translateX(30px); }
}
@keyframes float2 {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-40px) translateX(-30px); }
}
/*End Section Our Certificate CSS  */



/* Start trusted-brands-section CSS Styling */
.section-title span {
    font-weight: 700;
    font-size: 2.5rem;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
  }

.section-title span::after {
    content: '';
    display: block;
    height: 4px;
    width: 60px;
    background: #007bff;
    margin: 8px auto 0;
    border-radius: 4px;
  }
  
  /* Unique class for section */
#trusted-brands-section .brand-logo {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* Gradient overlay (hidden by default) */
#trusted-brands-section .brand-logo::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #007bff, #00c6ff, #ff00cc, #ff9900);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

/* Show gradient on hover */
#trusted-brands-section .brand-logo:hover::before {
  opacity: 0.7;
  animation: gradientBG 4s ease infinite;
}

/* Hover effects for card + image */
#trusted-brands-section .brand-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

#trusted-brands-section .brand-logo img {
  max-height: 100px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2; /* keep above gradient */
}

#trusted-brands-section .brand-logo:hover img {
  transform: scale(1.1);
}

/* Animation delays for logos */
#trusted-brands-section .col-6:nth-child(1) .brand-logo { animation-delay: 0.2s; }
#trusted-brands-section .col-6:nth-child(2) .brand-logo { animation-delay: 0.4s; }
#trusted-brands-section .col-6:nth-child(3) .brand-logo { animation-delay: 0.6s; }
#trusted-brands-section .col-6:nth-child(4) .brand-logo { animation-delay: 0.8s; }
/* ... baaki ke liye bhi same pattern continue kar sakte ho */

/* Fade-up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* End trusted-brands-section CSS Styling */


 
/* Start Our Team Section Background */
.our-team {
  background: linear-gradient(135deg, #1d2671, #c33764);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Section Title */
.our-team .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* Team Card */
.team-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 50px;
  text-align: center;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Profile Image */
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.team-card img:hover {
  transform: scale(1.15);
}

/* Name & Designation */
.team-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  animation: fadeInUp 1s ease forwards;
}

.team-card p {
  font-size: 0.95rem;
  color: #f1f1f1;
  animation: fadeInUp 1.2s ease forwards;
}

/* FadeIn Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper Styling */
.teamSwiper {
  padding-bottom: 50px;
}

.teamSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}
/* End Our Team Section Background */




/*Start Testimonials Section CSS */
/* Fancy Title */
.testimonials-section .section-title span {
  font-weight: 700;
  font-size: 2rem;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}
.testimonials-section .section-title span::after {
  content: '';
  display: block;
  height: 4px;
  width: 80px;
  background: #ff7e5f;
  margin: 8px auto 0;
  border-radius: 4px;
}

/* Testimonial Card */
.testimonial-card .card {
  border-radius: 16px;
  transition: all 0.5s ease;
  transform: scale(0.9);
  opacity: 0.7;
  background: #fff;
}


.swiper-slide-active .card {
  margin-top: 30px;
  margin-bottom: 30px;
  transform: scale(1.1) translateY(-10px);
  opacity: 1;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2); /* thoda deep shadow */
  border-radius: 20px;  /* soft curve */
  transition: all 0.4s ease-in-out; /* smoother zoom/shift */
  background: linear-gradient(135deg, #ffffff, #e6f0ff); /* 🔥 light gradient */
  border: 2px solid #007bff22; /* soft highlight border */
}

/* Left & Right Slides 3D Tilt */
.swiper-slide-prev .card {
  transform: rotate(10deg) scale(0.8);
}
.swiper-slide-next .card {
  transform: rotate(-10deg) scale(0.8);
}

.swiper-slide-prev .card,
.swiper-slide-next .card {
  opacity: 0.6;
}


.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 50%; /* ✨ circular */
  transition: transform 0.3s ease-in-out; /* smooth hover */
}

.testimonial-card img:hover {
	transform: scale(1.15);
}

/* Background 3D Blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  animation: moveBlobs 20s infinite alternate ease-in-out;
}
.blob1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle at center, #ff7e5f, transparent);
  top: -100px; left: -150px;
}
.blob2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle at center, #6a82fb, transparent);
  bottom: -100px; right: -100px;
}
.blob3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle at center, #00c6ff, transparent);
  top: 50%; left: 60%;
}
@keyframes moveBlobs {
  from { transform: translateY(0px) translateX(0px); }
  to   { transform: translateY(50px) translateX(-50px); }
}

/* container upar rahe (curve/blob ke above) */
.testimonials-section .container {
  position: relative;
  z-index: 2;
}

/* top curve wrapper */
.testi-top-curve {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 90px;           /* curve ki height */
  z-index: 1;             /* blobs (0) se upar, content (2) se niche */
  pointer-events: none;
  overflow: hidden;
  transform: translateY(-65%); /* curve ko section ke top se thoda upar pull */
}

/* svg full width/height */
.testi-top-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* section padding adjust so curve overlap perfect lage */
.testimonials-section {
  padding-top: 110px;   /* pehle 90-100 tha to +10-20px comfortable space */
  position: relative;
}

/* blobs ka z-index 0 hi rakho */
.bg-blob { z-index: 0; }
 
/*End Testimonials Section CSS */





