/* hero banner section part  */

        body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(to right,rgba(8, 15, 40, 0.75),
                    rgba(90 98 128 / 75%)),
                url("../images/industrial_automation/hero-automation.png");
            /* replace with your image */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: #fff;
        }

        .badge-custom {
            background-color: rgba(0, 123, 255, 0.15);
            color: #5aa9ff;
            border-radius: 50px;
            padding: 6px 14px;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
        }

        .hero-title span {
            color: #1e7bff;
        }

        .hero-text {
            max-width: 600px;
            color: #d6d9e0;
            margin-top: 20px;
            margin-bottom: 35px;
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: #1e7bff!important;
            border: none !important;
            padding: 14px 26px !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
        }

        .btn-primary-custom:hover {
            background-color: #0d5fe0;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 123, 255, 0.4);
        }

        .btn-outline-custom {
            border: 1px solid #ffffff55!important;
            color: #fff!important;
            padding: 14px 26px!important;
            font-weight: 600!important;
            transition: all 0.3s ease!important;
        }

        .btn-outline-custom:hover {
            background-color: #fff;
            color: #000;
            transform: translateY(-2px);
        }

        /* Responsive spacing */
        @media (max-width: 768px) {
            .hero-section {
                text-align: center;
            }

            .hero-text {
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* ================hero section ends =================== */

        /* ================== trusted part css here ===============*/

        /* ===== Trusted By Section ===== */
.trusted-section {
  background-color: #f8fafc !important;
  padding: 60px 0 !important;
  text-align: center !important;
}

.trusted-title {
  font-size: 0.9rem !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  color: #5f6f87 !important;
  margin-bottom: 40px !important;
}

/* Logos container */
.trusted-logos {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 40px !important;
}

/* Logo text styling */
.trusted-logos span {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
  font-weight: 600 !important;
  color: #b6c0cf !important;
  transition: all 0.3s ease !important;
  cursor: default !important;
  white-space: nowrap !important;
}

/* Hover effect */
.trusted-logos span:hover {
  color: #1e7bff !important;
  transform: translateY(-3px) !important;
}

/* Tablet */
@media (max-width: 992px) {
  .trusted-logos {
    gap: 30px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .trusted-section {
    padding: 45px 20px !important;
  }

  .trusted-logos {
    gap: 20px !important;
  }
}


/* = ================== trusted css ends here ====================*/

/* ===============one stop automation part css starts here ======================= */
/* ===== Automation Info Section ===== */
.automation-info-section {
  padding: 80px 20px !important;
  background-color: #ffffff !important;
}

/* Title */
.automation-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
  font-weight: 700 !important;
  color: #0b1b33 !important;
  margin-bottom: 24px !important;
  line-height: 1.3 !important;
}

/* Paragraph */
.automation-text {
  font-size: clamp(1rem, 2.2vw, 1.15rem) !important;
  font-weight: 400 !important;
  color: #4f5d75 !important;
  line-height: 1.7 !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}

/* Tablet */
@media (max-width: 992px) {
  .automation-info-section {
    padding: 60px 20px !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .automation-info-section {
    padding: 50px 16px !important;
  }

  .automation-title {
    font-size: 1.6rem !important;
  }
}

/* ===============one stop automation part css ends here ======================= */

/* ===============image cards section css startts here ========================== */
/* SECTION */
.parts-section {
  background-color: #f8f9fb !important;
}

/* CARD */
.part-card {
  background: #ffffff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  border: 1px solid #e5e7eb !important;
}

.part-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-5px) !important;
}

/* IMAGE */
.part-image {
  overflow: hidden !important;
}

.part-image img {
  width: 100% !important;
  transition: transform 0.4s ease !important;
}

.part-card:hover .part-image img {
  transform: scale(1.08) !important;
}

/* BODY */
.part-body {
  padding: 20px !important;
}

/* TITLE */
.part-title {
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  transition: color 0.3s ease !important;
}

.part-card:hover .part-title {
  color: #0d6efd !important;
}

/* TEXT */
.part-text {
  font-size: 14px !important;
  color: #6b7280 !important;
  margin-bottom: 15px !important;
  transition: color 0.3s ease !important;
}

.part-card:hover .part-text {
  color: #0d6efd !important;
}

/* LIST */
.part-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 20px !important;
}

.part-list li {
  font-size: 13px !important;
  color: #4b5563 !important;
  padding-left: 20px !important;
  margin-bottom: 8px !important;
  position: relative !important;
  transition: color 0.3s ease !important;
}

.part-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  color: #0d6efd !important;
  font-size: 12px !important;
}

.part-card:hover .part-list li {
  color: #0d6efd !important;
}

/* BUTTON */
.part-btn {
  width: 100% !important;
  border: 1px solid #0d6efd !important;
  color: #0d6efd !important;
  background: transparent !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.part-btn:hover {
  background: #0d6efd !important;
  color: #ffffff !important;
}

/* ACTIVE BUTTON */
.active-btn {
  background: #0d6efd !important;
  color: #ffffff !important;
}

/* TALK BUTTON */
.talk-btn {
  background: #0d6efd !important;
  color: #ffffff !important;
  padding: 12px 30px !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
}

.talk-btn:hover {
  background: #084298 !important;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .part-text {
    font-size: 13px !important;
  }
}

/* ===============image cards section css ends here  here ========================== */


/* =================stage specific css starts here ================== */

/* Section Base */
.automation-section {
  background: radial-gradient(circle at top, #0c1024, #050814);
  color: #fff;
  padding: 80px 0;
}

.automation-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
}

/* Badge */
.section-badge {
  display: inline-block;
  border: 1px solid #2f6bff;
  color: #2f6bff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 16px;
}

/* Heading */
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-desc {
  max-width: 650px;
  color: #b8c2e0;
  margin-bottom: 40px;
}

/* Tabs */
/* .phase-tabs {
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 50px;
}

.phase-tabs .nav-link {
  color: #9aa4c7;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 500;
}

.phase-tabs .nav-link.active {
  background: #2f6bff;
  color: #fff;
} */

/* Content */
.phase-text h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.phase-subtext {
  color: #b5bfdc;
  margin-bottom: 24px;
}

/* List */
.phase-points {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.phase-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #d7def8;
}

.phase-points span {
  width: 34px;
  height: 34px;
  background: #0f1b3d;
  color: #2f6bff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* Button */
.phase-btn {
  background: #fff!important;
  color: #000;
  padding: 12px 24px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.phase-btn:hover {
  box-shadow: 0 12px 30px rgba(255,255,255,0.25);
}

/* Image */
.phase-image {
  border-radius: 18px;
  overflow: hidden;
  animation: zoomIn 1.1s ease forwards;
}

.phase-image img {
  width: 100%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.phase-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Animations */
.animate-text {
  animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .section-title { font-size: 32px; }
  .automation-inner { padding: 0 20px; }
}

@media (max-width: 576px) {
  .section-title { font-size: 26px; }
  .phase-tabs { flex-direction: column; }
}
/* tabs css  */
/* ===== Phase Tabs Container ===== */
.phase-tabs-custom {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 48px;
}

/* ===== Tab Buttons ===== */
.phase-tabs-custom .nav-link {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  background: transparent;
  color: #7f8bb3;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.tab-button-width {
    width: 33% !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tab-button-width {
        width: 100% !important; /* Full width on tablets and mobile for better usability */
    }
}


/* Icons */
.phase-tabs-custom .nav-link i {
  font-size: 18px;
  opacity: 0.8;
}

/* Hover */
.phase-tabs-custom .nav-link:hover {
  color: #cfd8ff;
}

/* Active Tab */
.phase-tabs-custom .nav-link.active {
  background: linear-gradient(
    135deg,
    #2f6bff,
    #2456d8
  );
  color: #ffffff;
  box-shadow:
    0 10px 30px rgba(47, 107, 255, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Active Icon */
.phase-tabs-custom .nav-link.active i {
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .phase-tabs-custom {
    flex-direction: column;
  }

  .phase-tabs-custom .nav-link {
    justify-content: flex-start;
    padding: 14px 18px;
  }
}

/* tabs css ends here   */


/* =================stage specific css ends here ================== */


/* ===============maufactoring css starts here ======================= */
/* SECTION */
.capabilities-section {
  background-color: #f9fafb !important;
}

/* HEADER */
.cap-title {
  font-size: 28px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
}

.cap-subtitle {
  font-size: 15px !important;
  color: #6b7280 !important;
  max-width: 620px !important;
}

.view-all {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #2563eb !important;
  text-decoration: none !important;
}

.view-all:hover {
  text-decoration: underline !important;
}

/* CARD */
.cap-card {
  background: #ffffff !important;
  border-radius: 14px !important;
  padding: 22px !important;
  height: 100% !important;
  border: 1px solid #e5e7eb !important;
  transition: all 0.35s ease !important;
  cursor: pointer !important;
  position: relative !important;
}

.cap-card:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-6px) !important;
}

/* ICON */
.cap-icon {
  font-size: 28px !important;
  margin-bottom: 14px !important;
}

/* TITLE */
.cap-card-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  transition: color 0.3s ease !important;
}

/* TEXT */
.cap-card-text {
  font-size: 14px !important;
  color: #6b7280 !important;
  line-height: 1.5 !important;
  margin-bottom: 18px !important;
}

/* LEARN MORE */
.cap-learn {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #2563eb !important;
  opacity: 0 !important;
  transform: translateY(5px) !important;
  transition: all 0.3s ease !important;
}

/* HOVER EFFECTS */
.cap-card:hover .cap-card-title {
  color: #2563eb !important;
}

.cap-card:hover .cap-learn {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .cap-title {
    font-size: 24px !important;
  }
}

/* ===============maufactoring css ends here ======================= */

/* =================material and finish section starts here ======================= */
/* SECTION */
.material-section {
  background: #ffffff !important;
}

/* HEADING */
.material-title {
  font-size: 28px !important;
  font-weight: 600 !important;
}

/* GROUP */
.material-group {
  padding: 0 10px !important;
}

/* SUB HEADINGS */
.material-heading {
  font-size: 16px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
}

/* INDICATOR */
.indicator {
  width: 6px !important;
  height: 24px !important;
  border-radius: 4px !important;
}

.indicator.dark {
  background: #111827 !important;
}

.indicator.blue {
  background: #2563eb !important;
}

/* MATERIAL LIST */
.material-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

/* PILLS */
.material-pill {
  background:  #e2e8f0!important;
  color: #111827 !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}

/* PILL HOVER */
.material-pill:hover {
  background:  #9ec8f1 !important;
  transform: translateY(-2px) !important;
}

/* CTA */
.finish-cta {
  background: linear-gradient(135deg, #0f172a, #111827) !important;
  border-radius: 18px !important;
  padding: 50px 20px !important;
  color: #ffffff !important;
}

.cta-title {
  font-size: 22px !important;
  font-weight: 600 !important;
}

.cta-text {
  font-size: 15px !important;
  color: #cbd5f5 !important;
  max-width: 700px !important;
  margin: 0 auto !important;
}

/* CTA BUTTON */
.consult-btn {
  background: #2563eb !important;
  color: #ffffff !important;
  padding: 12px 28px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
}

.consult-btn:hover {
  background: #1e40af !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35) !important;
}

/* ---------------- ANIMATIONS (REUSABLE) ---------------- */

/* INITIAL STATE (NO ANIMATION YET) */
.animate-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth fallback if needed */
}

/* TRIGGERED STATE */
.animate-up.active {
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; /* Smoother easing for attractiveness */
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(45px) scale(0.95); /* Slight scale for depth */
  }
  50% {
    opacity: 0.5;
    transform: translateY(22.5px) scale(0.97); /* Mid-point for smoother feel */
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1); /* Full reveal with scale */
  }
}


/* STAGGER ANIMATION */
.animate-stagger > * {
  opacity: 0;
  transform: translate(20px, 20px) scale(0.9); /* Initial state */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth reset when 'active' is removed */
}

.animate-stagger.active > * {
  animation: staggerIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-stagger.active > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger.active > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger.active > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger.active > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger.active > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger.active > *:nth-child(6) { animation-delay: 0.6s; }
.animate-stagger.active > *:nth-child(7) { animation-delay: 0.7s; }
.animate-stagger.active > *:nth-child(8) { animation-delay: 0.8s; }
.animate-stagger.active > *:nth-child(9) { animation-delay: 0.9s; }
.animate-stagger.active > *:nth-child(10) { animation-delay: 1.0s; }

@keyframes staggerIn {
  0% {
    opacity: 0;
    transform: translate(20px, 20px) scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: translate(10px, 10px) scale(0.95); /* Mid-point for smoother transition */
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .material-title {
    font-size: 24px;
  }

  .finish-cta {
    padding: 40px 16px;
  }

  /* Optional: Adjust stagger animation for mobile to reduce motion if needed */
  .animate-stagger.active > * {
    animation-duration: 0.6s; /* Shorter on mobile for faster load */
  }
}

/* ANIMATE LEFT (COMING FROM RIGHT TO LEFT) */
.animate-left {
  opacity: 0;
  transform: translateX(45px) scale(0.95); /* Start from right, slight scale for depth */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth fallback */
}

.animate-left.active {
  animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; /* Attractive easing and duration */
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(45px) scale(0.95);
  }
  50% {
    opacity: 0.5;
    transform: translateX(22.5px) scale(0.97); /* Mid-point for smoother feel */
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1); /* Full reveal */
  }
}

/* RESPONSIVE ADJUSTMENTS (if needed) */
@media (max-width: 768px) {
  .animate-left.active {
    animation-duration: 0.8s; /* Slightly shorter on mobile */
  }
}


/* =================material and finish section ends here ======================= */