/* -------------------------------------------------------------
 * ShahaneTech Home Page Stylesheet (index.css)
 * ------------------------------------------------------------- */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  padding: 60px 25px 80px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(25, 135, 84, 0.1);
  color: var(--accent-green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--primary-color);
  background: linear-gradient(120deg, var(--primary-color), #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-trust-list span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-list i {
  color: var(--accent-green);
}

/* Hero Media & Floating Card */
.hero-media {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 21, 40, 0.12);
  border: 4px solid #ffffff;
}

.hero-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-icon {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-floating-card h4 {
  font-size: 0.95rem;
  color: var(--dark-navy);
  margin-bottom: 2px;
}

.hero-floating-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* -------------------------------------------------------------
 * Key Statistics Counter Bar
 * ------------------------------------------------------------- */
.stats-section {
  background-color: var(--dark-navy);
  color: #ffffff;
  padding: 40px 25px;
}

.stats-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 20px 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(13, 110, 253, 0.15);
  color: #38bdf8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* -------------------------------------------------------------
 * Home About Us Section (Left Image, Right Text)
 * ------------------------------------------------------------- */
.home-about-section {
  padding: 80px 25px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

.home-about-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 5px solid #ffffff;
}

.about-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background-color: var(--dark-navy);
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--primary-color);
}

.about-experience-badge h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.about-experience-badge p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

.home-about-text h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 18px;
}

.lead-p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-navy);
  margin-bottom: 16px;
  line-height: 1.6;
}

.home-about-text p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-point-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.about-point-list li {
  font-size: 0.95rem;
  color: var(--dark-navy);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-point-list li i {
  color: var(--accent-green);
  font-size: 1rem;
}

/* -------------------------------------------------------------
 * Home Why Choose Us Section (Left Text, Right Image)
 * ------------------------------------------------------------- */
.home-why-section {
  padding: 80px 25px;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.home-why-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.home-why-text h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 18px;
}

.why-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}

.why-point-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-point-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-point-item h4 {
  font-size: 1.05rem;
  color: var(--dark-navy);
  margin-bottom: 4px;
  font-weight: 600;
}

.why-point-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.why-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 5px solid #ffffff;
}

.why-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* -------------------------------------------------------------
 * Header Divider with Gear Icon
 * ------------------------------------------------------------- */
.header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 12px auto 25px;
  max-width: 380px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 2px;
}

.divider-icon {
  width: 34px;
  height: 34px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.9rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* -------------------------------------------------------------
 * Core Solutions Section (Diamond Badge & Dark Card Design)
 * ------------------------------------------------------------- */
.solutions-section {
  padding: 80px 25px 100px;
  max-width: 1240px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 40px;
  padding-top: 20px;
}

/* Card Body - Soft Light Theme Gradient */
.diamond-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  color: var(--dark-navy);
  border-radius: 14px;
  position: relative;
  padding: 48px 30px 35px;
  text-align: center;
  margin-top: 45px;
  border: 1px solid rgba(13, 110, 253, 0.18);
  box-shadow: 0 10px 25px rgba(11, 21, 40, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
}

.diamond-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
  box-shadow: 0 16px 35px rgba(13, 110, 253, 0.18);
}

/* V-shaped Cutout / Notch at top of card */
.card-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 32px solid #ffffff;
  z-index: 2;
}

/* Diamond Badge Container - Fully Visible & Unclipped */
.diamond-badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.diamond-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0284c7 100%);
  transform: rotate(45deg);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3.5px solid #ffffff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.diamond-card:hover .diamond-icon {
  background: linear-gradient(135deg, #0284c7 0%, var(--primary-color) 100%);
  transform: rotate(45deg) scale(1.1);
}

.diamond-icon i {
  transform: rotate(-45deg);
  color: #ffffff;
  font-size: 1.45rem;
}

/* Card Content & Typography */
.diamond-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.diamond-card-content h3 {
  color: var(--dark-navy);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 10px;
  line-height: 1.35;
}

.diamond-card-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 25px;
}

.diamond-card-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  text-align: left;
}

.diamond-card-list li {
  color: var(--text-dark);
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diamond-card-list li i {
  color: var(--primary-color);
  font-size: 0.85rem;
}

.icon-cyan {
  background-color: rgba(13, 202, 240, 0.12) !important;
  color: #0dcaf0 !important;
}

.icon-green {
  background-color: rgba(25, 135, 84, 0.12) !important;
  color: #198754 !important;
}

.solution-card h3 {
  font-size: 1.35rem;
  color: var(--dark-navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.solution-list li {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-list li i {
  color: var(--accent-green);
  font-size: 0.8rem;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--primary-hover);
  gap: 12px;
}

.highlight-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-color: rgba(25, 135, 84, 0.3);
}

.eco-link {
  color: var(--accent-green) !important;
}

/* -------------------------------------------------------------
 * Industry Sectors Served
 * ------------------------------------------------------------- */
.sectors-section {
  background-color: #ffffff;
  padding: 80px 25px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.sectors-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.sector-card {
  background-color: var(--bg-light);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.sector-card:hover {
  background-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: var(--primary-color);
}

.sector-icon {
  width: 55px;
  height: 55px;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sector-card h4 {
  font-size: 1.1rem;
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.sector-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* -------------------------------------------------------------
 * Testimonials Section — Slider
 * ------------------------------------------------------------- */
.testimonials-section {
  padding: 80px 25px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Wrapper: positions arrows on sides */
.testimonial-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Overflow-hidden container that clips hidden slides */
.testimonial-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

/* Track: all cards in a row, slides via translateX */
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Each card: width is set dynamically via JS */
.testimonial-card {
  flex-shrink: 0;
  background: #ffffff;
  padding: 36px 32px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.13);
  transform: translateY(-3px);
}

/* Decorative large quote icon */
.tcard-quote-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  opacity: 0.15;
  margin-bottom: 12px;
  line-height: 1;
}

/* Slider navigation buttons */
.tslider-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: #ffffff;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(13,110,253,0.10);
  z-index: 2;
}

.tslider-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(13,110,253,0.25);
}

.tslider-btn:active {
  transform: scale(0.95);
}

/* Dot indicators */
.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.tslider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
  padding: 0;
}

.tslider-dot.active {
  background: var(--primary-color);
  width: 28px;
  border-radius: 5px;
  transform: scale(1.1);
}


.stars {
  color: #fbbf24;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.quote {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 25px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  color: var(--dark-navy);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
 * Consultation CTA Banner
 * ------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-alt) 100%);
  color: #ffffff;
  padding: 60px 25px;
  border-top: 3px solid var(--accent-green);
}

.cta-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-text {
  max-width: 750px;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0;
}

/* -------------------------------------------------------------
 * Responsive Breakpoints (Mobile, Tablet, LG & Desktop)
 * ------------------------------------------------------------- */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 40px 20px 60px;
  }

  .hero-container,
  .home-about-container,
  .home-why-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .hero-trust-list {
    justify-content: center;
  }

  .why-points-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 20px;
  }

  .about-point-list {
    text-align: left;
    display: inline-block;
  }

  .hero-img-wrapper img,
  .about-img-frame img,
  .why-img-frame img {
    height: 320px;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 30px 15px 45px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .why-points-grid {
    grid-template-columns: 1fr;
  }

  .hero-img-wrapper img,
  .about-img-frame img,
  .why-img-frame img {
    height: 240px;
  }

  .about-experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
  }

  .diamond-card {
    padding: 42px 18px 28px;
  }

  .diamond-card-content h3 {
    font-size: 1.2rem;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 60px 10px;
  }

  .tslider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .cta-text h2 {
    font-size: 1.5rem;
  }

  .cta-text p {
    font-size: 0.95rem;
  }
}

/* -------------------------------------------------------------
 * Continuous Product Showcase Marquee (Infinite Scrolling Ticker)
 * ------------------------------------------------------------- */
.products-marquee-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: productMarqueeScroll 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-card {
  width: 220px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.12);
  border-color: #38bdf8;
}

.m-card-img {
  width: 100%;
  height: 180px;
  background-color: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
}

.m-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.marquee-card:hover .m-card-img img {
  transform: scale(1.05);
}

.m-card-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.m-card-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.35rem;
}

.m-price {
  color: #0265c0;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.m-price small {
  color: #64748b;
  font-weight: 500;
  font-size: 0.78rem;
}

.m-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #0265c0;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 0;
  border-radius: 6px;
  text-decoration: none;
  margin-top: auto;
  transition: background-color 0.2s ease;
}

.m-btn:hover {
  background-color: #0052a3;
  color: #ffffff;
}

@keyframes productMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

/* -------------------------------------------------------------
 * Trusted Business Partner / Industrial Capabilities Section
 * ------------------------------------------------------------- */
.partner-capabilities-section {
  padding: 60px 25px 75px;
  background-color: #ffffff;
}

.capabilities-grid-container {
  max-width: 1240px;
  margin: 40px auto 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 30px;
}

.capability-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.capability-img-wrapper {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  background-color: #f8fafc;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.capability-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.capability-card:hover .capability-img-wrapper {
  box-shadow: 0 18px 38px rgba(11, 21, 40, 0.16);
  transform: translateY(-6px);
  border-color: rgba(13, 110, 253, 0.35);
}

.capability-card:hover .capability-img-wrapper img {
  transform: scale(1.06);
}

.capability-card-title {
  margin-top: 16px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark-navy, #0b1528);
  line-height: 1.4;
  padding: 0 5px;
  transition: color 0.3s ease;
}

.capability-card:hover .capability-card-title {
  color: #0d6efd;
}

@media (max-width: 992px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }
  .capability-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .capability-img-wrapper {
    height: 210px;
  }
  .capability-card-title {
    font-size: 1rem;
  }
}

