/* Home page — WSE Infratech style (https://wseinfratech.com/) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.home-page { font-family: 'Poppins', 'Segoe UI', sans-serif; overflow-x: hidden; }
.home-page .sub-heading {
  color: var(--wse-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: block;
}
.home-page .section-heading {
  font-weight: 700;
  color: var(--wse-primary);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.home-page .section-lead {
  color: #696969;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Hero — background image + light overlay, teal + black text */
.home-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background-color: #F3FAFA;
  background-image: url('../../images/background1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 70px;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(243, 250, 250, 0.78);
  pointer-events: none;
  z-index: 0;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 20%, rgba(3, 166, 128, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(3, 166, 128, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.home-hero > .container {
  position: relative;
  z-index: 2;
}
.home-hero .hero-badge {
  display: inline-block;
  background: rgba(3, 166, 128, 0.08);
  border: 1px solid rgba(3, 166, 128, 0.35);
  color: #03A680;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.home-hero .hero-badge i {
  color: #03A680;
}
.home-hero h1 {
  color: #000000;
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.home-hero h1 span {
  color: #03A680;
}
.home-hero .hero-desc {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}
.home-hero .btn-hero-primary {
  background: #03A680;
  border: none;
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}
.home-hero .btn-hero-primary:hover {
  background: #028f6e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(3, 166, 128, 0.35);
}
.home-hero .btn-hero-outline {
  border: 2px solid #03A680;
  color: #03A680;
  padding: 13px 28px;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
}
.home-hero .btn-hero-outline:hover {
  background: #03A680;
  color: #fff;
  border-color: #03A680;
}
.home-hero .hero-actions {
  flex-wrap: nowrap;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
}
.home-hero .hero-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .home-hero .hero-actions {
    gap: 0.5rem;
    padding: 0 4px;
  }
  .home-hero .hero-actions .btn-lg {
    padding: 0.55rem 0.65rem;
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .home-hero .hero-actions .btn-hero-primary .bi-arrow-right {
    display: none;
  }
}
@media (min-width: 576px) {
  .home-hero .hero-actions {
    gap: 1rem;
  }
  .home-hero .hero-actions .btn {
    flex: 0 1 auto;
  }
}
.home-hero .hero-icon-teal {
  color: #03A680 !important;
}
.home-hero-visual {
  position: relative;
  z-index: 1;
}
.home-hero-visual .hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(3, 166, 128, 0.15);
  border: 3px solid rgba(3, 166, 128, 0.2);
}
.home-hero-visual .hero-img-wrap img { width: 100%; display: block; }
.home-hero-visual .float-card {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: #000000;
  animation: floatY 4s ease-in-out infinite;
}
.home-hero-visual .float-card.fc-1 { bottom: 15%; left: -8%; animation-delay: 0s; }
.home-hero-visual .float-card.fc-2 { top: 12%; right: -5%; animation-delay: 1s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Tech marquee */
.tech-marquee-wrap {
  background: #ffffff;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid #e8eef5;
  border-bottom: 1px solid #e8eef5;
}
.tech-marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.tech-marquee span {
  color: #000000;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}
.tech-marquee span::before { content: '◆ '; color: #03A680; opacity: 0.85; font-size: 0.6rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Intro strip */
.home-intro-strip {
  padding: 90px 0;
  background: #fff;
}
.home-intro-strip .intro-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}
.home-intro-strip .intro-img img { width: 100%; min-height: 360px; object-fit: cover; }

/* Subtle line graphics on homepage panels */
.panel-line-tr,
.panel-line-bl {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}
.panel-line-tr {
  top: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cline x1='0' y1='50' x2='50' y2='0' stroke='%2303A680' stroke-width='1.2' opacity='0.28'/%3E%3Cline x1='8' y1='58' x2='58' y2='8' stroke='%2303A680' stroke-width='1.2' opacity='0.22'/%3E%3Cline x1='16' y1='66' x2='66' y2='16' stroke='%2303A680' stroke-width='1' opacity='0.16'/%3E%3Cline x1='24' y1='70' x2='70' y2='24' stroke='%2303A680' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
}
.panel-line-bl {
  bottom: 10px;
  left: 10px;
  width: 56px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='%2303A680' stroke-width='1.2' opacity='0.2'/%3E%3Cline x1='10' y1='50' x2='50' y2='10' stroke='%2303A680' stroke-width='1' opacity='0.14'/%3E%3Cline x1='20' y1='56' x2='56' y2='20' stroke='%2303A680' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
}
.panel-line-tr-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cline x1='0' y1='50' x2='50' y2='0' stroke='%23ffffff' stroke-width='1.2' opacity='0.35'/%3E%3Cline x1='8' y1='58' x2='58' y2='8' stroke='%23ffffff' stroke-width='1.2' opacity='0.25'/%3E%3Cline x1='16' y1='66' x2='66' y2='16' stroke='%23ffffff' stroke-width='1' opacity='0.18'/%3E%3C/svg%3E");
}
.panel-line-bl-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cline x1='0' y1='40' x2='40' y2='0' stroke='%23ffffff' stroke-width='1.2' opacity='0.28'/%3E%3Cline x1='10' y1='50' x2='50' y2='10' stroke='%23ffffff' stroke-width='1' opacity='0.18'/%3E%3C/svg%3E");
}

.solution-service-card,
.offer-card,
.expertise-panel,
.core-four-card,
.solution-panel,
.industry-card-wse,
.training-stack-card,
.home-cta-panel,
.home-site-cta,
.course-tile-wse,
.process-card-wse {
  position: relative;
  overflow: hidden;
}
.solution-service-card .solution-service-side,
.solution-service-card .solution-service-body,
.offer-card .offer-card-header,
.offer-card .offer-card-body,
.expertise-panel .exp-panel-top,
.expertise-panel .exp-panel-body,
.core-four-card > *,
.solution-panel-head,
.solution-panel-desc,
.industry-card-body,
.training-stack-card .training-stack-side,
.training-stack-card .training-stack-body,
.home-cta-panel .row > *,
.course-tile-wse .ct-img,
.course-tile-wse .ct-body,
.process-card-wse > * {
  position: relative;
  z-index: 2;
}
/* Digital solutions — horizontal stack cards */
.home-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #f3fafa 0%, #fff 100%);
}

.home-services-intro .section-lead {
  max-width: 560px;
}

.home-services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.home-services-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.home-services-pills span i {
  color: var(--wse-accent, #03a680);
  font-size: 1rem;
}

.solution-service-card {
  --svc-accent: #03a680;
  --svc-accent-light: #e8f8f4;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eef5;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  min-height: 148px;
}
.solution-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--svc-accent);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--svc-accent) 22%, transparent);
  color: inherit;
}
.solution-service-card--featured {
  min-height: 168px;
}
.solution-service-card--featured .solution-service-side {
  flex: 0 0 120px;
}
.solution-service-card--featured .solution-service-icon {
  width: 72px;
  height: 72px;
}
.solution-service-card--featured .solution-service-icon i {
  font-size: 2rem;
}
.solution-service-card--featured .solution-service-title {
  font-size: 1.2rem;
}

.solution-service-num {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--svc-accent) 35%, #999);
  line-height: 1;
}

.solution-service-side {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--svc-accent-light);
  border-right: 3px solid var(--svc-accent);
  padding: 20px 12px;
}

.solution-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid var(--svc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--svc-accent) 18%, transparent);
}
.solution-service-icon i {
  font-size: 1.55rem;
  color: var(--svc-accent);
  line-height: 1;
}

.solution-service-body {
  flex: 1;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.solution-service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--svc-accent);
  margin-bottom: 6px;
}

.solution-service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wse-primary, #281f55);
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0 0 8px;
}

.solution-service-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-service-link {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #e8eef5;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--svc-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.solution-service-card:hover .solution-service-link {
  gap: 10px;
}

@media (max-width: 991px) {
  .home-services-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .solution-service-card {
    flex-direction: column;
    min-height: 0;
  }
  .solution-service-side {
    flex: none;
    border-right: none;
    border-bottom: 3px solid var(--svc-accent);
    padding: 18px;
  }
  .solution-service-body {
    padding: 16px 18px 18px;
  }
  .solution-service-desc {
    -webkit-line-clamp: 3;
  }
}

/* What We Offer — communication services */
.home-what-we-offer {
  background: #ffffff;
}

.offer-card {
  --offer-color: #03A680;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eef5;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--offer-color) 25%, transparent);
  border-color: var(--offer-color);
  color: inherit;
}

.offer-card-header {
  padding: 28px 20px 24px;
  background: color-mix(in srgb, var(--offer-color) 10%, #fff);
  border-bottom: 3px solid var(--offer-color);
  text-align: center;
}

.offer-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--offer-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--offer-color) 20%, transparent);
}
.offer-card-icon i {
  font-size: 2rem;
  color: var(--offer-color);
  line-height: 1;
}

.offer-card-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.offer-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin: 0 0 6px;
}

.offer-card-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--offer-color);
  margin: 0 0 10px;
  line-height: 1.4;
}

.offer-card-excerpt {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 12px;
}

.offer-card-highlights {
  margin: 0 0 16px;
  padding: 0;
  flex: 1;
}
.offer-card-highlights li {
  font-size: 0.8rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 0;
  line-height: 1.4;
}
.offer-card-highlights li i {
  color: var(--offer-color);
  font-size: 1.25rem;
  line-height: 0;
}

.offer-card-cta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eef4fc;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--offer-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.offer-card:hover .offer-card-cta {
  gap: 10px;
}

@media (max-width: 767px) {
  .offer-card-header { padding: 22px 16px 18px; }
  .offer-card-icon { width: 60px; height: 60px; }
  .offer-card-icon i { font-size: 1.65rem; }
  .offer-card-body { padding: 18px 16px 20px; }
}

/* Industries — WSE-style floating cards */
.home-industries {
  padding: 90px 0;
  background: linear-gradient(180deg, #eef4f8 0%, #f8fbfd 50%, #fff 100%);
}

.industries-carousel { padding-bottom: 10px; }
.industries-carousel .carousel-inner { overflow: visible; padding: 8px 4px 20px; }

.industry-card-wse {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(40, 31, 85, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 36px 22px 32px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-card-wse:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(3, 166, 128, 0.14), 0 8px 20px rgba(40, 31, 85, 0.06);
}

/* Decorative teal waves (corners) */
.industry-wave {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.industry-wave-tl {
  top: -28px;
  left: -32px;
  width: 110px;
  height: 110px;
  background: radial-gradient(ellipse at 30% 30%, rgba(124, 222, 199, 0.85) 0%, rgba(3, 166, 128, 0.15) 55%, transparent 72%);
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  transform: rotate(-12deg);
}
.industry-wave-br {
  bottom: -35px;
  right: -38px;
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at 70% 70%, rgba(124, 222, 199, 0.8) 0%, rgba(3, 166, 128, 0.12) 50%, transparent 70%);
  border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
  transform: rotate(18deg);
}

.industry-card-body {
  position: relative;
  z-index: 1;
  width: 100%;
}

.industry-card-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8eef5;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(40, 31, 85, 0.06);
}
.industry-card-icon i {
  font-size: 2.35rem;
  color: var(--wse-primary);
  line-height: 1;
  background: linear-gradient(135deg, var(--wse-primary) 40%, var(--wse-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #151515;
  margin: 0 0 10px;
  line-height: 1.35;
}

.industry-card-tagline {
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  margin: 0;
  line-height: 1.5;
  padding: 0 4px;
}

/* Carousel dots — WSE style (solid + outline) */
.industries-indicators {
  position: static;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.industries-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--wse-accent);
  background: transparent;
  opacity: 1;
  margin: 0;
  text-indent: 0;
  transition: all 0.3s ease;
}
.industries-indicators [data-bs-target].active {
  background: var(--wse-accent);
  border-color: var(--wse-accent);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .industry-card-wse { min-height: 240px; padding: 28px 16px 24px; }
  .industry-card-icon { width: 72px; height: 72px; margin-bottom: 16px; }
  .industry-card-icon i { font-size: 1.9rem; }
}
@media (max-width: 575px) {
  .industry-card-wse { min-height: 220px; }
}

/* Expertise — development across devices */
.home-expertise {
  padding: 90px 0;
  background: #ffffff;
}

.expertise-panel {
  --exp-accent: #03A680;
  --exp-accent-light: #e8f8f4;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eef5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.expertise-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(3, 166, 128, 0.12);
  border-color: var(--exp-accent);
}

.expertise-panel .exp-panel-top {
  position: relative;
  padding: 32px 24px 28px;
  background: var(--exp-accent-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-panel .exp-panel-num {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--exp-accent);
  opacity: 0.18;
}

.expertise-panel .exp-device-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.expertise-panel .exp-device-frame i {
  font-size: 2.5rem;
  color: var(--exp-accent);
  line-height: 1;
}

/* Web — browser frame */
.exp-device-web .exp-device-frame {
  width: 120px;
  height: 80px;
  border-radius: 8px 8px 6px 6px;
  border: 2px solid var(--exp-accent);
  padding-top: 14px;
}
.exp-device-web .exp-device-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--exp-accent);
  border-radius: 6px 6px 0 0;
  opacity: 0.25;
}

/* Mobile — phone frame */
.exp-device-mobile .exp-device-frame {
  width: 68px;
  height: 118px;
  border-radius: 14px;
  border: 3px solid var(--exp-accent);
}
.exp-device-mobile .exp-device-frame::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 4px;
  background: var(--exp-accent);
  border-radius: 4px;
  opacity: 0.35;
}

/* ERP — server stack frame */
.exp-device-erp .exp-device-frame {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  border: 2px solid var(--exp-accent);
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}
.exp-device-erp .exp-device-frame::before,
.exp-device-erp .exp-device-frame::after {
  content: '';
  width: 70%;
  height: 4px;
  background: var(--exp-accent);
  opacity: 0.2;
  border-radius: 2px;
}

.expertise-panel .exp-panel-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.expertise-panel .exp-panel-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px;
}

.expertise-panel .exp-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.expertise-panel .exp-panel-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--exp-accent-light);
  color: var(--exp-accent);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.expertise-panel .exp-panel-desc {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}

.expertise-panel .exp-panel-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--exp-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.expertise-panel .exp-panel-link:hover {
  color: var(--exp-accent);
  gap: 10px;
}

@media (max-width: 767px) {
  .expertise-panel .exp-panel-top { min-height: 140px; padding: 28px 18px 22px; }
  .expertise-panel .exp-panel-body { padding: 20px 18px 24px; }
}

/* Our Core Software Solutions — pastel panels */
.home-products {
  padding: 90px 0;
  background: #fff;
}

.solutions-panels-carousel .carousel-inner {
  overflow: visible;
  padding: 6px 4px 12px;
}

.solution-panel {
  border-radius: 18px;
  padding: 28px 24px 32px;
  min-height: 300px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.solution-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(40, 31, 85, 0.1);
  color: inherit;
}

.solution-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.solution-icon-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-icon-box i {
  font-size: 1.65rem;
  color: #10b981;
  line-height: 1;
}

.solution-panel-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  padding-top: 4px;
}

.solution-panel-desc {
  font-size: 0.92rem;
  font-weight: 400;
  color: #444;
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 2;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-watermark {
  position: absolute;
  right: -8px;
  bottom: -20px;
  font-size: clamp(5rem, 12vw, 7rem);
  color: #10b981;
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

/* Carousel dots (shared with industries) */
.solutions-panels-indicators {
  position: static;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.solutions-panels-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #10b981;
  background: transparent;
  opacity: 1;
  margin: 0;
}
.solutions-panels-indicators [data-bs-target].active {
  background: #10b981;
  border-color: #10b981;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .solution-panel { min-height: 280px; }
  .solution-panel-title { font-size: 1rem; }
}
@media (max-width: 767px) {
  .solution-panel { min-height: 260px; padding: 22px 18px 28px; }
  .solution-icon-box { width: 50px; height: 50px; min-width: 50px; }
}

/* Process — From Ideation to Marketing & Beyond */
.home-process {
  position: relative;
  padding: 90px 0;
  color: #000000;
  background-color: #D0E3E3;
  background-image: url('../../images/background2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.home-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(208, 227, 227, 0.82);
  pointer-events: none;
  z-index: 0;
}
.home-process > .container {
  position: relative;
  z-index: 2;
}
.home-process .sub-heading {
  color: #000000;
}
.home-process .section-heading {
  color: #000000;
}
.home-process .section-lead {
  color: #000000;
}
.process-card-wse {
  background: #ffffff;
  border: 1px solid rgba(3, 166, 128, 0.15);
  border-radius: 12px;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.process-card-wse .num {
  width: 44px; height: 44px;
  background: #03A680;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}
.process-card-wse h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000000;
}
.process-card-wse p {
  color: #333333;
  font-size: 0.9rem;
  margin: 0;
}

/* Clients */
.home-clients { padding: 50px 0; background: #fff; }
.clients-scroll-wrap { overflow: hidden; padding: 20px 0; }
.clients-scroll {
  display: flex; gap: 4rem; align-items: center;
  animation: scroll-logos 35s linear infinite;
  width: max-content;
}
.clients-scroll:hover { animation-play-state: paused; }
.client-logo-item img {
  max-height: 52px; max-width: 130px;
  object-fit: contain;
  filter: grayscale(40%); opacity: 0.85;
  transition: filter 0.3s;
}
.client-logo-item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Training Programs — panel cards */
.home-training {
  padding: 90px 0;
  background: #F3FAFA;
}

/* Training Programs — horizontal stack cards */
.training-stack-card {
  --stack-accent: #03A680;
  --stack-accent-light: #e8f8f4;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8eef5;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.training-stack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(3, 166, 128, 0.14);
  border-color: var(--stack-accent);
  color: inherit;
}

.training-stack-side {
  flex: 0 0 108px;
  background: var(--stack-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  gap: 14px;
}

.training-stack-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.35;
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
  padding: 6px 8px;
  border-radius: 6px;
  max-width: 92px;
}

.training-stack-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.training-stack-icon i {
  font-size: 1.5rem;
  color: var(--stack-accent);
  line-height: 1;
}

.training-stack-body {
  flex: 1;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.training-stack-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin: 0 0 6px;
}

.training-stack-tagline {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--stack-accent);
  margin: 0 0 12px;
  line-height: 1.4;
}

.training-stack-features {
  margin: 0 0 14px;
  padding: 0;
  flex: 1;
}
.training-stack-features li {
  font-size: 0.8rem;
  color: #333;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.training-stack-features li i {
  color: var(--stack-accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.training-stack-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eef4fc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.training-stack-meta {
  font-size: 0.78rem;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.training-stack-meta i {
  color: var(--stack-accent);
}

.training-stack-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stack-accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s ease;
}
.training-stack-card:hover .training-stack-cta {
  gap: 9px;
}

@media (max-width: 575px) {
  .training-stack-card {
    flex-direction: column;
  }
  .training-stack-side {
    flex: none;
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px 18px;
    gap: 16px;
  }
  .training-stack-badge {
    max-width: none;
    text-align: left;
  }
}

.home-courses { padding: 90px 0; }
.course-tile-wse {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef4fc;
  height: 100%;
  transition: all 0.3s;
}
.course-tile-wse:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.course-tile-wse .ct-img {
  height: 150px;
  overflow: hidden;
  background: #e8eef5;
  position: relative;
}
.course-tile-wse .ct-img img { width: 100%; height: 100%; object-fit: cover; }
.course-tile-wse .course-card-icon-badge {
  top: 8px;
  left: 8px;
  width: 38px;
  height: 38px;
  font-size: 1rem;
}
.course-tile-wse .course-card-title-icon {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}
.course-tile-wse h6 {
  letter-spacing: 0;
}
.course-tile-wse .ct-body { padding: 18px; }
.course-tile-wse h6 { font-weight: 700; font-size: 0.95rem; color: var(--wse-primary); }
.course-tile-wse .price { color: var(--wse-accent); font-weight: 700; }

/* Stats */
.home-stats {
  margin-top: -50px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}
.home-stats .stats-bar {
  background: #26A69A;
  border-radius: 12px;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 60px rgba(3,166,128,0.3);
}
.home-stats .stats-bar h3 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.15rem;
}
.home-stats .stats-bar p { margin: 0; opacity: 0.95; font-size: 0.95rem; }
@media (max-width: 991px) {
  .home-stats .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .home-hero-visual .float-card { display: none; }
}
@media (max-width: 575px) {
  .home-stats .stats-bar { grid-template-columns: 1fr; }
}

/* CTA — Ready to Accelerate */
.home-cta {
  padding: 90px 0;
  background: linear-gradient(180deg, #F3FAFA 0%, #D0E3E3 100%);
}

.home-cta-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid rgba(3, 166, 128, 0.15);
  box-shadow: 0 20px 60px rgba(3, 166, 128, 0.12);
}

.home-cta-panel .home-cta-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #03A680 0%, #26A69A 50%, #0A62A5 100%);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

.home-cta-panel .sub-heading {
  text-align: left;
  margin-bottom: 0.75rem;
}

.home-cta-title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
}
.home-cta-title span {
  color: #03A680;
}

.home-cta-lead {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: 560px;
}

.home-cta-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  padding: 6px 0;
  line-height: 1.5;
}
.home-cta-points li i {
  color: #03A680;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.home-cta-actions {
  background: #F3FAFA;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e8eef5;
}

.home-cta-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.home-cta-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  text-decoration: none;
  color: #000;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.home-cta-contact-item:hover {
  border-color: #03A680;
  box-shadow: 0 6px 20px rgba(3, 166, 128, 0.1);
  color: #000;
}

.home-cta-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #03A680;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.home-cta-contact-icon-wa {
  background: #25d366;
}

@media (max-width: 991px) {
  .home-cta-panel { padding: 36px 24px; }
  .home-cta-title,
  .home-cta-lead,
  .home-cta-panel .sub-heading { text-align: center; }
  .home-cta-lead { margin-left: auto; margin-right: auto; }
  .home-cta-points { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 575px) {
  .home-cta-contact-row { grid-template-columns: 1fr; }
}

/* Core 4 services quick */
.home-core-four { padding: 70px 0; }
.core-four-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eef4fc;
  height: 100%;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.core-four-card:hover {
  border-color: var(--wse-accent);
  box-shadow: 0 12px 32px rgba(3,166,128,0.12);
  color: inherit;
  transform: translateY(-4px);
}
.core-four-card i { font-size: 2.5rem; color: var(--wse-accent); margin-bottom: 1rem; display: block; }
.core-four-card h5 { font-weight: 700; color: var(--wse-primary); }

/* Homepage CTA — mint panel with line graphics */
.home-page .home-site-cta {
  background: #a1f4ec;
  color: #281f55;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(3, 166, 128, 0.2);
  border-bottom: 1px solid rgba(3, 166, 128, 0.15);
}
.home-page .home-site-cta .panel-line-tr {
  top: 18px;
  right: 24px;
  width: 90px;
  height: 90px;
}
.home-page .home-site-cta .panel-line-bl {
  bottom: 18px;
  left: 24px;
  width: 72px;
  height: 72px;
}
.home-page .home-site-cta h2 {
  color: #281f55 !important;
  letter-spacing: 0;
}
.home-page .home-site-cta h2 .home-cta-accent {
  color: #03a680;
}
.home-page .home-site-cta p {
  color: #333;
  opacity: 1;
}
.home-page .home-site-cta p strong {
  color: #281f55;
}
.home-page .home-site-cta .btn-outline-primary {
  background: transparent;
  border-color: #281f55;
  color: #281f55;
}
.home-page .home-site-cta .btn-outline-primary:hover {
  background: #281f55;
  border-color: #281f55;
  color: #fff;
}
