* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

  /* About Page Specific Styles */
  body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 80px; /* Space for fixed header */
    font-family: 'Poppins', sans-serif;
    
}

.main-content {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -6%;
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    margin-bottom: 15px;
}

/* Header Section */
.header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1528181304800-259b08848526?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.header p {
    font-size: 1.2rem;
    max-width: 800px;
}

/* Introduction Section */
.intro {
    background-color: white;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    color: #a0e32c;
}

.intro p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: -60px;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    margin: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.feature h3 {
    color: #a0e32c;
}

/* Vision & Mission Section */
.vision-mission {
  background-color: #f5f5f5;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 0;
}

.vision-mission .container {
  max-width: 1200px; /* same as your .container class */
  margin: 0 auto;
  padding: 0 20px;
}

.vm-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px; /* ensures equal spacing between boxes */
  margin-top: -9%;
}

.vm-box {
  flex: 1 1 calc(50% - 10px); /* perfectly divides two boxes with gap */
  min-width: 300px;
  background-color: white;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.vm-box h2 {
    font-size: 2rem;
    color: #a0e32c;
    text-transform: uppercase;
}

.vm-box ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.vm-box li {
    margin-bottom: 10px;
}

/* Associates Section */
.associates {
    background-color: white;
    text-align: center;
    margin-bottom: 100px;
}

.associates h2 {
    font-size: 2.5rem;
    color: #a0e32c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .vm-box {
        flex: 0 0 100%;
            margin-left: 10%;
    }

    .feature {
        min-width: 100%;
    }
}


.vm-box {
    flex: 0 0 48%;
    min-width: 300px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 40px 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.vm-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #a0e32c, #78bc01);
    transform: rotate(45deg);
    opacity: 0.08;
    z-index: 0;
}

.vm-box h2 {
    font-size: 1.8rem;
    color: #a0e32c;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: 1px;
}

.vm-box p,
.vm-box li {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.vm-box li {
    padding-left: 20px;
    position: relative;
}

.vm-box li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #a0e32c;
    font-weight: bold;
}

.vm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


.feature {
    flex: 1;
    min-width: 280px;
    margin: 15px;
    padding: 35px 25px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #a0e32c, #78bc01);
    transform: rotate(45deg);
    opacity: 0.08;
    z-index: 0;
}

.feature h2 {
    font-size: 1.8rem;
    color: #a0e32c;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* General popup hover effect for both feature and vm-box */
.feature:hover,
.vm-box:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
    background: linear-gradient(145deg, #ffffff, #f4f4f4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

/* Ensure smooth transition */
.feature,
.vm-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1;
}



.vm-box[data-aos="fade-down-right"],
.vm-box[data-aos="fade-down-left"] {
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out !important;
}



.image-row {
  display: flex;
  justify-content: center; /* center horizontally */
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap; /* wrap on small screens */
}

.image-row img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-row img:hover {
  transform: scale(1.05);
}

/* Image Caption Reveal Animation */
.image-caption-reveal {
    margin: 60px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.caption-container {
    position: relative;
    padding: 30px 0;
    text-align: center;
}

.caption-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.image-row:hover ~ .image-caption-reveal .caption-text,
.image-caption-reveal:hover .caption-text {
    opacity: 1;
    transform: translateY(0);
}

.caption-line {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    padding: 0 20px;
}

.caption-line:first-child {
    color: #a0e32c;
}

.caption-line::before,
.caption-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a0e32c);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.caption-line::before {
    left: 0;
}

.caption-line::after {
    right: 0;
    background: linear-gradient(90deg, #a0e32c, transparent);
}

.image-row:hover ~ .image-caption-reveal .caption-line::before,
.image-row:hover ~ .image-caption-reveal .caption-line::after,
.image-caption-reveal:hover .caption-line::before,
.image-caption-reveal:hover .caption-line::after {
    transform: translateX(0);
    opacity: 1;
}

/* Decorative elements */
.caption-container::before,
.caption-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(75, 152, 2, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.caption-container::before {
    left: -20px;
    animation: pulse 6s infinite alternate;
}

.caption-container::after {
    right: -20px;
    animation: pulse 4s infinite alternate-reverse;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.3; }
    100% { transform: scale(1.05); opacity: 0.6; }
}




/* Dynamic Caption System */
.dynamic-caption-container {
  margin: 60px auto;
  max-width: 800px;
  height: auto; /* Maintains consistent spacing */
}

.auto-height-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-row:hover ~ .dynamic-caption-container .auto-height-wrapper {
  height: 120px; /* Adjust based on your caption height */
}

.image-caption {
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}

.image-row:hover ~ .dynamic-caption-container .image-caption {
  opacity: 1;
  transform: translateY(0);
}

.caption-line {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 8px 0;
}

.caption-line:first-child {
  color: #2c3e50;
}

/* Consistent Gap Enforcement */
.image-row {
  margin-bottom: 0; /* Remove default margin */
}

.vision-mission {
  margin-top: 40px !important; /* Fixed gap below images */
}



/* Modern 3D Glassmorphic Zoom Effect */
.vm-box {
  --box-primary: #a0e32c;
  --box-secondary: #78bc01;
  
  flex: 0 0 48%;
  min-width: 300px;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transform: perspective(1000px) translateZ(0);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  
}

.vm-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(96, 230, 34, 0.15) 0%, 
    rgba(73, 199, 5, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vm-box::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 5%;
  width: 90%;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vm-box:hover {
  transform: perspective(1000px) translateZ(40px) scale(1.03) rotateX(1deg);
  box-shadow: 0 12px 40px rgba(106, 215, 4, 0.2),
              0 4px 12px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

.vm-box:hover::before {
  opacity: 1;
}

.vm-box:hover::after {
  opacity: 0.6;
}

/* Floating Label Effect */
.vm-box h2 {
  position: relative;
  display: inline-block;
}

.vm-box h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--box-primary), var(--box-secondary));
  transition: width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vm-box:hover h2::after {
  width: 100%;
}

/* Modern Content Animation */
.vm-box p,
.vm-box li {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(5px);
  opacity: 0.9;
}

.vm-box:hover p,
.vm-box:hover li {
  transform: translateY(0);
  opacity: 1;
}

/* Matching Image Hover Effect */
.image-row img {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
  justify-content: center;
}

.image-row img:hover {
  transform: perspective(1000px) translateZ(30px) scale(1.03);
  box-shadow: 0 12px 40px rgba(31, 151, 1, 0.2);
}


/* Modern Feature Boxes - Holographic Tilt Effect */
.feature {
  --feature-primary: #a0e32c;
  --feature-secondary: #78bc01;
  
  flex: 1;
  min-width: 280px;
  padding: 35px;
  margin: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    inset 0 0 12px rgba(255, 255, 255, 0.6);
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(42, 145, 1, 0.1) 50%,
    transparent 55%
  );
  opacity: 0;
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--feature-primary), var(--feature-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.feature:hover {
  transform: 
    perspective(1000px) 
    rotateY(8deg) 
    rotateX(-2deg) 
    translateY(-10px) 
    scale(1.02);
  box-shadow:
    0 15px 40px rgba(78, 165, 2, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.feature:hover::before {
  opacity: 1;
  animation: hologramScan 1.5s linear infinite;
}

.feature:hover::after {
  transform: scaleX(1);
}

@keyframes hologramScan {
  0% { transform: translateY(-100%) rotate(45deg); }
  100% { transform: translateY(100%) rotate(45deg); }
}

/* Dynamic Content Animation */
.feature h2 {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--feature-primary), var(--feature-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.4s ease;
}

.feature:hover h2 {
  text-shadow: 0 0 10px rgba(66, 160, 4, 0.3);
}

.feature p {
  position: relative;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all 0.5s ease 0.1s;
}

.feature:hover p {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Particles Effect */
.feature:hover .particle {
  position: absolute;
  background: rgba(80, 163, 1, 0.6);
  border-radius: 50%;
  animation: floatParticle 3s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(10px, -15px); opacity: 0.4; }
}


/* Custom AOS Animation Sync */
[data-aos="fade-down"].vm-box {
  transition-property: transform, opacity;
  transition-duration: 600ms !important;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}

[data-aos="zoom-out-right"].feature {
  transition-duration: 600ms !important;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}

/* Ensure both animations start/end together */
.vm-box[data-aos="fade-down"].aos-animate,
.feature[data-aos="zoom-out-right"].aos-animate {
  transition-delay: 0ms !important;
}


/* Modern Auto-Scrolling Gallery */
.auto-scroll-gallery {
  margin: 80px 0;
  overflow: hidden;
  position: relative;
}

.scroller {
  --gap: 20px;
  display: flex;
  width: 100%;
  gap: var(--gap);
}

.scroller[data-speed="slow"] {
  --speed: 60s;
}

.scroller[data-speed="fast"] {
  --speed: 30s;
}

.scroller__inner {
  display: flex;
  gap: var(--gap);
  padding-block: 20px;
  flex-wrap: nowrap;
  animation: scroll var(--speed) linear infinite;
}

.scroller[data-direction="left"] .scroller__inner {
  animation-direction: reverse;
}

.scroller img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  filter: brightness(0.95);
  position: relative;
  overflow: hidden;
}

.scroller img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(94, 193, 2, 0.2);
  filter: brightness(1);
}

/* Gradient fade edges */
.auto-scroll-gallery::before,
.auto-scroll-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.auto-scroll-gallery::before {
  left: 0;
  background: linear-gradient(90deg, #f9f9f9, transparent);
}

.auto-scroll-gallery::after {
  right: 0;
  background: linear-gradient(90deg, transparent, #f9f9f9);
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - var(--gap)/2));
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroller img {
    width: 250px;
    height: 180px;
  }
  
  .auto-scroll-gallery::before,
  .auto-scroll-gallery::after {
    width: 50px;
  }
}



/* Modern Gallery Container */
.team-gallery-wrapper {
  margin: 80px 0;
  perspective: 1200px;
}

.team-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.scroller-track {
  overflow: hidden;
  padding: 40px 0;
}

.scroller {
  display: flex;
  gap: 30px;
  width: max-content;
}

.scroller-item {
  width: 280px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.98);
  position: relative;
  overflow: hidden;
}

/* Hover Effects */
.scroller-item:hover {
  transform: translateY(-15px) scale(1.03) rotateY(5deg);
  box-shadow: 
    0 25px 50px rgba(73, 186, 2, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  filter: brightness(1.05);
  z-index: 10;
}

/* Reflective Floor Effect */
.scroller-item::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.scroller-item:hover::after {
  transform: scaleY(1);
}

/* Edge Glow */
.team-gallery::before,
.team-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 3;
  pointer-events: none;
}

.team-gallery::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), transparent);
}

.team-gallery::after {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9));
}


/* Modern Centered Gallery */
.team-gallery-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Full viewport height */
  padding: 40px 20px;
  background: #f9f9f9; /* Optional light background */
}

.team-gallery {
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  margin: 0 auto;
}

.scroller-track {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.scroller {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
}

.scroller-item {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

/* Optional hover effect */
.scroller-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(41, 142, 2, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroller {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .scroller-item {
    width: 80%;
    height: 300px;
  }
}


/* Modern Customer Section */
.customer-section {
  display: flex;
  min-height: 80vh;
  margin-top: 70px;
  align-items: center;

  background: linear-gradient(to right, #f9f9f9 50%, transparent 50%);
}

.customer-slideshow {
  flex: 1;
  height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 0 20px 20px 0;
  box-shadow: 20px 0 40px rgba(0,0,0,0.08);
}

.slideshow-track {
  display: flex;
  height: 100%;
  width: 300%;
  animation: slideShow 25s linear infinite;
}

.slideshow-track img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.customer-content {
  flex: 1;
  padding: 0 60px;
  z-index: 2;
}

.customer-content h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #a0e32c, #78bc01);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.customer-stats {
  margin: 30px 0;
  list-style: none;
  padding-left: 0;
}

.customer-stats li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 30px;
}

.customer-stats li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a0e32c;
}

.stat-number {
  font-weight: bold;
  color: #a0e32c;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #a0e32c, #78bc01);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(53, 147, 2, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(41, 152, 1, 0.4);
}

/* Animation */
@keyframes slideShow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-66.666%); }
}

/* Hover Effects */
.slideshow-track:hover {
  animation-play-state: paused;
}

.slideshow-track:hover img {
  filter: grayscale(0);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .customer-section {
    flex-direction: column;
    background: #f9f9f9;
    margin-top: -10px;
  }
  
  .customer-slideshow {
    width: 100%;
    height: 350px;
    border-radius: 0;
  }
  
  .customer-content {
    padding: 40px 20px;
  }
}


