/* top header */
.top-header-ticker {
  background-color: #0f172a; 
  color: #f8fafc;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 7px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  user-select: none;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: ticker-slide 32s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  letter-spacing: 0.2px;
}

/* Star separator */
.ticker-star {
  font-size: 10px;
  color: #f59e0b; 
}

/* Hover pause */
.top-header-ticker:hover .marquee-group {
  animation-play-state: paused;
}
@keyframes ticker-slide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

/* Mobile speed adjustment */
@media (max-width: 767.98px) {
  .top-header-ticker {
    padding: 5px 0;
    font-size: 12px;
  }
  .ticker-item {
    padding: 0 16px;
  }
  .marquee-group {
    animation-duration: 20s;
  }
}
.hero-video-slider-section {
  position: relative;
  padding: 0px;
  overflow: hidden;
  height: 65vh;
  min-height: 480px;
  background-color: #0f172a;
}

.hero-video-slider-section .carousel,
.hero-video-slider-section .carousel-inner,
.hero-video-slider-section .carousel-item {
  height: 100%;
}

/* Background Media */
.hero-img-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  position: relative;
}

.herovideo {
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.45) 50%,
    rgba(15, 23, 42, 0.15) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Content Layout */
.hero-content-container {
  position: relative;
  z-index: 3;
  height: 100%;
}

.hero-slide-row {
  height: 100%;
  padding: 0 4% 60px 4%;
}

/* Typography */
.hero-heading {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-subtext {
  font-size: clamp(14px, 1.2vw, 17px);
  color: #e2e8f0;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 24px;
}

.hero-next-btn {
  position: absolute !important;
  top: 50% !important;
  right: 25px !important;
  transform: translateY(-50%) !important;
  z-index: 1060 !important; 
  pointer-events: auto !important;
  cursor: pointer !important;
  background: transparent;
  border: none;
  outline: none;
}

.video-slider-arrow,
.video-slider-arrow i {
  pointer-events: none !important;
}
/* Badges */
.badge-hero {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  letter-spacing: 0.3px;
}

.badge-hero-blue {
  background-color: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.badge-hero-green {
  background-color: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-hero-amber {
  background-color: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Text Accents */
.text-gradient-blue {
  color: #60a5fa;
}
.text-gradient-green {
  color: #34d399;
}
.text-gradient-amber {
  color: #fbbf24;
}

/* Buttons */
.btn-hero-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary,
.btn-hero-success,
.btn-hero-amber,
.btn-hero-outline {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-hero-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
}
.btn-hero-primary:hover {
  background-color: #1d4ed8;
  color: #ffffff !important;
}

.btn-hero-success {
  background-color: #059669;
  color: #ffffff;
  border: 1px solid #059669;
}
.btn-hero-success:hover {
  background-color: #047857;
  color: #ffffff !important;
}

.btn-hero-amber {
  background-color: #d97706;
  color: #ffffff;
  border: 1px solid #d97706;
}
.btn-hero-amber:hover {
  background-color: #b45309;
  color: #ffffff !important;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
  background: #ffffff;
  color: #000 !important;
}

/* Progress Indicators */
.custom-carousel-indicators {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  z-index: 1040;
}

.cursor-pointer {
  cursor: pointer;
}

.progress-bar-bg {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  border-radius: 4px;
  will-change: width;
}

/* Next Slide Arrow Button */
.hero-next-btn {
  width: 56px;
  height: 56px;
  top: auto;
  bottom: 40px;
  right: 30px;
  z-index: 1050;
  opacity: 1;
}

.video-slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s ease;
}

.hero-next-btn:hover .video-slider-arrow {
  background: #2563eb;
  border-color: #2563eb;
  transform: scale(1.06);
}

/* Responsive Mobile Rules */
@media (max-width: 991.98px) {
  .hero-video-slider-section {
    height: auto;
    min-height: 520px;
  }
  .hero-slide-row {
    padding: 60px 15px 70px 15px;
    justify-content: center;
  }
  .btn-hero-group {
    justify-content: center;
  }
  .hero-next-btn {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .btn-hero-group .btn {
    width: 100%;
    margin-right: 0 !important;
  }
}
/* ==========================================================================
   HERO MOBILE RESPONSIVE OPTIMIZATION (<= 768px)
   ========================================================================== */

@media (max-width: 768px) {
  .hero-video-slider-section,
  .hero-video-slider-section .carousel,
  .hero-video-slider-section .carousel-inner,
  .hero-video-slider-section .carousel-item {
    height: 350px !important;
    min-height: 350px !important;
  }

  /* Background image positioning fix taaki main subject cut na ho */
  .hero-img-slide {
    background-position: 70% center !important;
    background-size: cover !important;
  }

  /* Content padding aur vertical alignment */
  .hero-content-container {
    padding: 0 20px !important;
  }

  .hero-slide-row {
    padding: 20px 0 35px 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Heading size mobile optimized */
  .hero-heading {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  /* Subtext size aur readability */
  .hero-subtext {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
    color: #e2e8f0 !important;
  }

  /* Badge compact size */
  .badge-hero {
    font-size: 11px !important;
    padding: 4px 12px !important;
    margin-bottom: 10px !important;
  }

  /* Action buttons: mobile touch friendly */
  .btn-hero-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
  }

  .btn-hero-primary,
  .btn-hero-success,
  .btn-hero-amber,
  .btn-hero-outline {
    width: 100% !important;
    margin-right: 0 !important;
    padding: 9px 16px !important;
    font-size: 14px !important;
    text-align: center;
  }

  /* Darker contrast overlay on mobile for better text visibility */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.7) 50%,
      rgba(15, 23, 42, 0.85) 100%
    ) !important;
  }

  /* Progress bar bottom spacing on mobile */
  .custom-carousel-indicators {
    bottom: 12px !important;
    padding: 0 15px !important;
  }

  .progress-bar-bg {
    height: 3px !important;
  }
}

/* ==========================================================================
   HARDWARE SHOWCASE SECTION
   ========================================================================== */
.hardware-showcase-section {
  background-color: #f8fafc; /* Subtle cool-gray */
}

.hardware-section-header .section-title {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0;
}

.section-divider {
  width: 50px;
  height: 3px;
  background-color: #2563eb;
  border-radius: 2px;
}

.hardware-section-header .section-subtitle {
  font-size: clamp(13px, 1.1vw, 15px);
  color: #64748b;
  line-height: 1.6;
  max-width: 820px;
}

/* Responsive Grid Engine */
.hardware-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Card Component */
.hardware-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hardware-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

/* Image Wrapper */
.hardware-image-container {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #f8fafc;*/
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.hardware-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hardware-card:hover .hardware-card-img {
  transform: scale(1.05);
}

/* Card Body & Text */
.hardware-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hardware-card-title {
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Action Button */
.btn-quote-request {
  width: 100%;
  background-color: #2563eb;
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.btn-quote-request:hover {
  background-color: #1d4ed8;
}

.btn-quote-request i {
  transition: transform 0.2s ease;
  font-size: 12px;
}

.btn-quote-request:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   BREAKPOINTS: TABLET & MOBILE
   ========================================================================== */
/* Large Laptops / Small Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .hardware-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Tablets (<= 768px) */
@media (max-width: 768px) {
  .hardware-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hardware-card {
    padding: 12px;
  }

  .hardware-image-container {
    height: 130px;
    margin-bottom: 10px;
  }

  .hardware-card-title {
    text-align: center;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .btn-quote-request {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* Small Mobile Phones (<= 420px) */
@media (max-width: 420px) {
  .hardware-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hardware-image-container {
    height: 110px;
  }

  .btn-quote-request span {
    font-size: 11.5px;
  }

  .btn-quote-request i {
    display: none;
  }
}

/* ==========================================================================
   STATS COUNTER SECTION
   ========================================================================== */
.stats-counter-section {
  background-color: #f1f5f9; /* Clean Slate Light */
  position: relative;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.stats-grid-row {
  margin: 0;
}

.stat-col {
  display: flex;
  justify-content: center;
  padding: 24px 15px;
  position: relative;
}

/* Desktop Vertical Dividers */
@media (min-width: 768px) {
  .stat-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #cbd5e1;
  }
}

/* Stat Item Card */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 260px;
}

/* Icon Box */
/* .stat-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
} */

/* .stat-card:hover .stat-icon-box {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
} */

.stat-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Number Typography */
.stat-number-wrapper {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: #ea580c; /* Orange Accent */
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.stat-plus {
  font-size: 0.8em;
  margin-left: 2px;
  font-weight: 700;
}

/* Title Label */
.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  margin: 0;
}

/* Mobile Screens (Stack dividers) */
@media (max-width: 767.98px) {
  .stat-col {
    padding: 20px 10px;
  }

  .stat-col:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
  }

  /* .stat-icon-box {
    width: 60px;
    height: 60px;
  } */

  .stat-icon {
    width: 36px;
    height: 36px;
  }

  .stat-number-wrapper {
    font-size: 32px;
  }

  .stat-label {
    font-size: 14px;
  }
} /* ==========================================================================
   PROJECT ENQUIRY SECTION (CLEAN & CONSOLIDATED)
   ========================================================================== */
.project-enquiry-section {
  background-color: #ffffff;
}

.enquiry-info-panel .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

.enquiry-info-panel .section-subtitle {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

/* 3-Step Process List (Desktop Base) */
.enquiry-process-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.process-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.process-icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.process-svg {
  width: 54px;
  height: 54px;
  fill: none;
}

.svg-stroke {
  stroke: #94a3b8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.process-label {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

.process-label b {
  color: #0f172a;
  font-size: 14.5px;
}

/* Right Card & Form Controls */
.enquiry-form-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.form-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
}

.form-field-label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  display: block;
}

.form-control-enquiry {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  height: auto;
}

.form-control-enquiry:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

textarea.form-control-enquiry {
  /* height: 105px; */
  resize: vertical;
}

.country-code-dropdown {
  border-color: #cbd5e1;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  font-size: 13.5px;
  color: #334155;
  background-color: #f8fafc;
  max-width: 125px;
  height: auto;
}

.btn-submit-enquiry {
  background-color: #2563eb;
  border-color: #2563eb;
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: background-color 0.2s ease;
}

.btn-submit-enquiry:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}
/* Container ko column banakar center align karein */
.process-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px;
}

/* Icon box center */
.process-icon-box {
  width: 60px;
  height: 60px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 4px;
}

/* Text center */
.process-label {
  text-align: center !important;
  margin: 0 !important;
  line-height: 1.35;
}
/* ==========================================================================
   MOBILE & TABLET ADJUSTMENTS (SINGLE CLEAN MEDIA QUERY)
   ========================================================================== */
@media (max-width: 767.98px) {
  .enquiry-info-panel .section-title {
    font-size: 22px;
  }

  .enquiry-form-card {
    padding: 20px 16px !important;
  }

  /* Teeno steps mobile par ek single row mein aligned */
  .enquiry-process-list {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-top: 20px !important;
  }

  .process-item {
    flex: 1 1 0 !important;
    width: 33.33% !important;
    gap: 4px !important;
  }

  .process-icon-box {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 2px !important;
  }

  .process-svg {
    width: 38px !important;
    height: 38px !important;
  }

  .process-label {
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .process-label b {
    font-size: 11.5px !important;
  }
}
/* ==========================================================================
   PREMIUM DUAL GLASS CARDS SECTION
   ========================================================================== */
.premium-dual-cards-section {
  background-color: #f1f5f9;
  position: relative;
}

.enterprise-glass-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 18px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.enterprise-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.25);
}

/* Background image binding without inline styles */
.card-left-bg {
  background-image:
    url("../images/update/Left.webp");
}

.card-right-bg {
  background-image:
    url("../images/update/Right.webp");
}

/* Readability Gradient Layer */
.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    140deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.85) 45%,
    rgba(15, 23, 42, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
} /* Soft & Transparent Overlay - Background image visually clear dikhegi */
.card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Left side soft dark for text readability, right side completely visible image */
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(15, 23, 42, 0.45) 55%,
    rgba(15, 23, 42, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.card-content-top,
.card-content-bottom {
  position: relative;
  z-index: 2;
}

/* Badge */
.card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 5px 14px;
  border-radius: 30px;
}

/* Typography */
.card-heading {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.card-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 580px;
}

/* Action Button */
.btn-card-action-light {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14.5px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.btn-card-action-light:hover {
  background-color: #ffffff;
  color: #0f172a !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-card-action-light i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.btn-card-action-light:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 767.98px) {
  .card-image-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.82) 0%,
      rgba(15, 23, 42, 0.55) 60%,
      rgba(15, 23, 42, 0.35) 100%
    );
  }
  .enterprise-glass-card {
    padding: 30px 22px;
    min-height: auto;
    border-radius: 14px;
  }

  .card-heading {
    font-size: 20px;
  }

  .card-text {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  .btn-card-action-light {
    width: 100%;
    justify-content: center;
    padding: 11px 20px;
  }
}
/* ==========================================================================
   INSIGHTS & BLOG SECTION (THEME MATCHED)
   ========================================================================== */
.insights-blog-section {
  background-color: #ececec !important;
  position: relative;
}

/* Site-wide Theme Heading & Divider */
.imp-heading .section-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.imp-heading .heading-line {
  width: 60px;
  height: 3px;
  background-color: #2563eb;
  border-radius: 2px;
}

.imp-heading .section-subtitle {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

/* 4-Column Responsive Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card Component (Matches Product/Hardware Card Aesthetic) */
.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: #93c5fd;
}

/* Image Wrapper */
.blog-img-box {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #f1f5f9;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.05);
}

/* Category Badge */
.blog-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(15, 23, 42, 0.82);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
}

/* Card Content */
.blog-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.blog-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.blog-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title a:hover {
  color: #2563eb;
}

.blog-text {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Read More Link with Corporate Blue / Orange Transition */
.blog-footer-action {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
}

.read-more-btn {
  font-size: 13.5px;
  font-weight: 700;
  color: #2563eb !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.read-more-btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.read-more-btn:hover {
  color: #ea580c !important; /* Theme Accent Orange on Hover */
}

.read-more-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   BREAKPOINTS: TABLET & MOBILE
   ========================================================================== */
@media (max-width: 1199.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .blog-img-box {
    height: 160px;
  }
  .blog-content {
    padding: 14px;
  }
  .blog-title {
    min-height: auto;
    font-size: 14.5px;
  }
}
/* ==========================================================================
   BRAND PARTNERSHIPS MARQUEE SECTION
   ========================================================================== */
.brand-showcase-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Outer Container with Edge Fades (Smooth Entry & Exit) */
.brand-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Moving Track */
.brand-marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: continuousScroll 28s linear infinite;
  will-change: transform;
}

/* Hover par pause ho jayega taaki user aaram se click kar sake */
.brand-marquee-container:hover .brand-marquee-track {
  animation-play-state: paused;
}

/* Brand Card */
.brand-card {
  width: 200px;
  height: 95px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border-color: #2563eb;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.brand-link img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.25s ease;
}

.brand-card:hover .brand-link img {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.06);
}

/* Continuous Animation Keyframes */
@keyframes continuousScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 767.98px) {
  .brand-marquee-container {
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 96%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 4%,
      black 96%,
      transparent 100%
    );
  }

  .brand-marquee-track {
    gap: 14px;
    animation-duration: 20s; /* Mobile par thoda smooth readable speed */
  }

  .brand-card {
    width: 150px;
    height: 75px;
    padding: 10px 14px;
    border-radius: 10px;
  }

  .brand-link img {
    max-height: 38px;
  }
}
/* ==========================================================================
   INDUSTRIES ACCORDION & MOBILE SLIDER
   ========================================================================== */
.industries-accordion-section {
  background-color: #f8f8f8 !important;
  position: relative;
}

/* Card Base Styles */
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.industry-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.industry-content h5 {
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   DESKTOP VIEW (> 991px): EXPANDING ACCORDION
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .industry-accordion-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    height: 380px;
    width: 100%;
  }

  .industry-card {
    position: relative;
    flex: 1 1 0%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding: 22px 18px;
    display: flex;
    align-items: flex-end;
    transition: flex 0.4s ease;
  }

  /* Active / Hover Card: Expand full */
  .industry-card.active,
  .industry-card:hover {
    flex: 4 1 0%;
  }

  /* Parent par hover aate hi hovered card expand hoga, baaki shrink */
  .industry-accordion-container:hover .industry-card:not(:hover) {
    flex: 1 1 0%;
  }

  .industry-accordion-container:hover .industry-card:hover {
    flex: 4 1 0% !important;
  }

  /* Shrunk state text */
  .industry-card:not(.active):not(:hover) .industry-content h5 {
    white-space: nowrap;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Expanded state text */
  .industry-card.active .industry-content h5,
  .industry-card:hover .industry-content h5 {
    font-size: 18px;
    white-space: normal;
  }
}

/* --------------------------------------------------------------------------
   MOBILE VIEW (<= 991px): TOUCH HORIZONTAL SWIPE + BOTTOM CONTROLS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .industry-accordion-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 6px;
    scrollbar-width: none; /* Firefox */
  }

  .industry-accordion-container::-webkit-scrollbar {
    display: none; /* Chrome & Safari */
  }

  .industry-card {
    flex: 0 0 80% !important;
    max-width: 320px;
    height: 240px;
    scroll-snap-align: start;
    border-radius: 12px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 18px 16px;
    display: flex;
    align-items: flex-end;
  }

  .industry-content h5 {
    font-size: 16px;
    white-space: normal;
  }

  /* Bottom-Right Control Buttons */
  .industry-controls-bottom {
    display: flex;
    gap: 8px;
  }

  .industry-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  }

  .industry-nav-btn:active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
  }

  .industry-nav-btn i {
    font-size: 13px;
  }
}

/* main section */
.imp-heading {
  position: relative;
}

.imp-heading .badge-portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
}

.imp-heading .section-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.imp-heading .heading-line {
  width: 60px;
  height: 3px;
  background-color: #2563eb; /* Corporate Blue Accent */
  border-radius: 2px;
}

.imp-heading .section-subtitle {
  font-size: clamp(13.5px, 1.1vw, 15px);
  color: #64748b;
  line-height: 1.65;
  max-width: 860px;
}
/* List container ko vertical stack karein */
.liststylenone {
  list-style: none !important;
  padding: 8px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}

.liststylenone li {
  display: block !important;
  width: 100% !important;
  margin-bottom: 3px !important;
}

@media only screen and (max-width: 990px) {
  .liststylenone li {
    background-color: #f5f5f5ff !important;
  }
}

@media only screen and (max-width:576px) {
    .mnone {
        display: none;
    }
}