:root {
      --bs-success: #28a745;
      --primary-green: #28a745;
      --green-light: rgba(40,167,69,0.08);
      --green-border: rgba(40,167,69,0.2);
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
      line-height: 1.6;
    }
img {
  max-width: 100%;
  max-height: 100%;
}
a {
  outline: none;
}
    .navbar {
      background-color: white;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.25rem;
      color: #212529 !important;
    }

    .navbar-brand span {
      color: var(--primary-green);
      font-size: 1.5rem;
      line-height: 1;
    }

    .nav-link {
      color: #666 !important;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary-green) !important;
    }

    .navbar-nav .dropdown-menu {
    border: none;
    border-top: 3px solid #0b6bb6;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    padding: 1rem;;
    }

    .navbar-nav .dropdown-menu li a:hover {
background-color: #eeeeee;
    }

    /* Hero Section */
    .hero-section {
      padding: 80px 0;
      padding: 30px 0 80px;
      background: white;
    }

    .hero-title {
      font-size: clamp(2rem, 8vw, 3.5rem);
      font-weight: 700;
      line-height: 1.2;
      color: #212529;
      margin-bottom: .5rem;
    }

    .hero-title .green-text {
      color: var(--primary-green);
    }

    .hero-description {
      font-size: 1.125rem;
      color: #666;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .hero-tagline {
      font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 600; color: #444;
      margin-bottom: 1.25rem;
    }
    .hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: var(--green-light); border: 1px solid var(--primary-green);
      color: var(--primary-green); font-size: 0.78rem; font-weight: 700;
      padding: 0.35rem 0.9rem; border-radius: 100px;
      text-transform: uppercase; letter-spacing: 0.07em;
    }
    .hero-badge svg { width: 13px; height: 13px; }
    .hero-img-wrap {
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.13);
    }
    .hero-img-wrap img { width: 100%; display: block; }

    .btn-success {
      background-color: var(--primary-green);
      border-color: var(--primary-green);
      padding: 0.75rem 2rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-success:hover {
      background-color: #218838;
      border-color: #218838;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
    }

    .btn-blue {
      background-color: #0b6bb6;
      border-color: #0b6bb6;
    }
    .btn-blue:hover {
      background-color: #06416e;
      border-color: #06416e;
    }
    .btn-transparent, .btn-transparent:hover {
      background-color: transparent;
      border-color: #fff;
    }
    .btn-white, .btn-white:hover {
      background-color: #ffffff;
      border-color: #ffffff;
      color: #0b6bb6;
    }

    .btn-outline-secondary {
      padding: 0.75rem 2rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-outline-secondary:hover {
      background-color: #f8f9fa;
      transform: translateY(-2px);
      color: #6c757d;
    }

    .stats-card {
      background: white;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      padding: 1.5rem;
      /* margin-top: 2rem; */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .stats-card h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .stats-card .green-accent {
      color: var(--primary-green);
    }

    .hero-image {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image-background {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      top: -50px;
      right: -100px;
      z-index: 0;
    }

    .hero-image img {
      max-width: 100%;
      border-radius: 1rem;
      position: relative;
      z-index: 1;
      /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    }

    /* Stats Section */
    .stats-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }

    .stat-item {
      text-align: center;
      /* padding: 2rem; */
    }

    .stat-item .icon-set {
      display: inline-block;
    margin-right: 10px;
    vertical-align: text-bottom;
    }

    .stat-item .content-set {
          display: inline-block;
    text-align: left;
    }

    .stat-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .stat-icon svg {
      width: 40px;
      height: 40px;
      color: var(--primary-green);
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      /* margin-bottom: 0.5rem; */
      color: #212529;
    }

    .stat-label {
      color: #666;
      font-weight: 500;
    }

    /* Solutions Section */
    .solutions-section {
      padding: 0px 0;
    }

    .section-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
      color: #212529;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: #666;
      text-align: center;
      margin-bottom: 3rem;
    }

    .solution-card {
      background: white;
      border: 1px solid #e9ecef;
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      height: 100%;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .solution-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .solution-card .icon-wrapper {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .solution-card .icon-wrapper svg {
      width: 48px;
      height: 48px;
      color: var(--primary-green);
    }

    .solution-card h5 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: #212529;
      font-size: 1.1rem;
    }

    .solution-card p {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .see-all-link {
      text-align: center;
      margin-top: 3rem;
    }

    .see-all-link a {
      color: var(--primary-green);
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .see-all-link a:hover {
      opacity: 0.7;
    }

    /* Testimonial Section */
    .testimonial-section {
      background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
      padding: 80px 0;
      color: white;
    }

    .testimonial-quote {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .testimonial-author {
      font-weight: 700;
      color: var(--primary-green);
      margin-bottom: 0.25rem;
    }

    .testimonial-company {
      color: rgba(255, 255, 255, 0.7);
    }

    .quote-icon {
      font-size: 3rem;
      color: var(--primary-green);
      line-height: 1;
    }

    .testimonial-image img {
      border-radius: 1rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    /* Security Section */
    .security-section {
      padding: 80px 0;
      background: white;
    }

    .security-title {
      text-align: center;
      font-weight: 700;
      margin-bottom: 3rem;
      color: #212529;
    }

    .security-badge {
      text-align: center;
      padding: 1.5rem;
    }

    .security-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.75rem;
    }

    .security-badge-icon svg {
      width: 32px;
      height: 32px;
      color: #999;
    }

    .security-badge-text {
      font-size: 0.9rem;
      color: #666;
      font-weight: 500;
    }

    /* AI Section */
    .ai-section {
      background-color: #f8f9fa;
      padding: 80px 0;
    }

    .ai-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #212529;
    }

    .ai-description {
      font-size: 1.125rem;
      color: #666;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .ai-learn-link {
      color: var(--primary-green);
      text-decoration: none;
      font-weight: 700;
      transition: all 0.3s ease;
    }

    .ai-learn-link:hover {
      opacity: 0.7;
    }

    .ai-diagram {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      position: relative;
    }

    .ai-center-circle {
      position: absolute;
      width: 160px;
      height: 160px;
      background: var(--primary-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      z-index: 10;
      flex-direction: column;
      font-size: 2rem;
    }

    .ai-surrounding-icon {
      position: absolute;
      width: 80px;
      height: 80px;
      background: #f0f0f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
    }

    .ai-surrounding-icon svg {
      width: 32px;
      height: 32px;
      color: var(--primary-green);
    }

    .ai-top {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    .ai-bottom {
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    .ai-right {
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }

    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: white;
      text-align: center;
    }

    .cta-title {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
      font-weight: 700;
      margin-bottom: 2rem;
      color: #ffffff;
    }

    /* Footer */
    footer {
      background-color: #555555;
      color: white;
      padding: 3rem 0 1rem;
    }

    footer h6 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: white;
    }

    footer a, footer li {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: white;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer li {
      margin-bottom: 0.5rem;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
    }

    .astrix {
      color: #dc3545;
    }

    .font-weighthigh {
      font-weight: 600;
    }

    .mobile-image-item {
    display: none;
}
.demo-banner {
  background: linear-gradient(90deg, #145282, #0b6bb6);
  padding: 40px 0;
}
/* platform smartfhr */
.platform-smartfhr .hero-section, .platform-hwfl .hero-section {
      background: linear-gradient(160deg, #f0f9f2 0%, #ffffff 55%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
 .section-eyebrow {
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--primary-green); margin-bottom: 0.75rem;
    }
   /* ── What SmartFHR delivers ── */
    .delivers-section { padding: 80px 0; background: #f8f9fa; }
    .deliver-card {
      background: white; border-radius: 14px; padding: 2rem 1.75rem;
      height: 100%; text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .deliver-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.09); }
    .deliver-icon {
      width: 72px; height: 72px; border-radius: 16px;
      background: var(--green-light); display: flex;
      align-items: center; justify-content: center; margin: 0 auto 1.5rem;
    }
    .deliver-icon svg { width: 34px; height: 34px; color: var(--primary-green); }
    .deliver-card h5 { font-size: 1.05rem; font-weight: 700; color: #212529; margin-bottom: 0.75rem; }
    .deliver-card p { font-size: 0.93rem; color: #666; line-height: 1.65; margin: 0; }
/* ── Feature showcase (alternating rows) ── */
    .showcase-section { padding: 80px 0; background: white; }
    .showcase-row { padding: 48px 0; }
    .showcase-row + .showcase-row { border-top: 1px solid #f0f0f0; }
    .showcase-img {
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    }
    .showcase-img img { width: 100%; display: block; object-fit: cover; height: 360px; }
    .showcase-body { padding: 1rem 0; }
    .showcase-body h3 { font-size: clamp(1.3rem, 3.5vw, 1.75rem); font-weight: 700; color: #212529; margin-bottom: 0.75rem; line-height: 1.3; }
    .showcase-body p { font-size: 0.97rem; color: #666; line-height: 1.75; margin-bottom: 1.5rem; }
    .feature-pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .feature-pill {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 0.8rem; font-weight: 600; color: #444;
      background: #f8f9fa; border: 1px solid #e9ecef;
      border-radius: 100px; padding: 0.3rem 0.85rem;
    }
    .feature-pill svg { width: 12px; height: 12px; color: var(--primary-green); }

    /* ── Full modules grid ── */
    .modules-section { padding: 80px 0; background: #f8f9fa; }
    .module-chip {
      display: flex; align-items: center; gap: 0.85rem;
      background: white; border: 1px solid #e9ecef;
      border-radius: 10px; padding: 0.875rem 1rem;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      cursor: default;
    }
    .module-chip:hover {
      border-color: var(--green-border);
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
      transform: translateY(-2px);
    }
    .module-chip-icon {
      width: 40px; height: 40px; border-radius: 8px;
      background: var(--green-light); display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
    }
    .module-chip-icon svg { width: 20px; height: 20px; color: var(--primary-green); }
    .module-chip span { font-size: 0.875rem; font-weight: 600; color: #333; line-height: 1.3; }

    /* ── Outcomes / dark band ── */
    .outcomes-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
      color: white;
    }
    .outcome-card {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px; padding: 2rem; text-align: center;
      transition: background 0.25s, transform 0.25s;
    }
    .outcome-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
    .outcome-number {
      font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 800;
      color: var(--primary-green); line-height: 1; margin-bottom: 0.5rem;
    }
    .outcome-label { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.4; }

    /* ── Platform for everyone ── */
    .everyone-section { padding: 80px 0; background: white; }
    .role-card {
      border-radius: 16px; padding: 2.5rem 2rem; height: 100%;
      border: 1px solid #e9ecef;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
      position: relative; overflow: hidden;
    }
    .role-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--primary-green);
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .role-card:hover {
      border-color: transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.09);
      transform: translateY(-4px);
    }
    .role-card:hover::before { transform: scaleX(1); }
    .role-icon {
      width: 56px; height: 56px; border-radius: 12px;
      background: var(--green-light); display: flex;
      align-items: center; justify-content: center; margin-bottom: 1.5rem;
    }
    .role-icon svg { width: 28px; height: 28px; color: var(--primary-green); }
    .role-card h5 { font-size: 1.1rem; font-weight: 700; color: #212529; margin-bottom: 1.25rem; }
    .role-list { list-style: none; padding: 0; margin: 0; }
    .role-list li {
      display: flex; align-items: flex-start; gap: 0.65rem;
      font-size: 0.93rem; color: #555; margin-bottom: 0.85rem; line-height: 1.55;
    }
    .role-list li:last-child { margin-bottom: 0; }
    .role-list li svg { width: 16px; height: 16px; color: var(--primary-green); flex-shrink: 0; margin-top: 2px; }

    /* ── Security strip ── */
    .security-section { padding: 64px 0; background: #f8f9fa; }
    .cert-chip {
      display: flex; align-items: center; gap: 0.75rem;
      background: white; border: 1px solid #e9ecef;
      border-radius: 10px; padding: 1rem 1.25rem;
    }
    .cert-chip svg { width: 22px; height: 22px; color: var(--primary-green); flex-shrink: 0; }
    .cert-chip span { font-size: 0.9rem; font-weight: 700; color: #333; }

    /* platform HWFL */
    
    /* ── Stats strip ── */
    .stats-strip {
      background: linear-gradient(135deg, #1a3a3a 0%, #2d5f5f 100%);
      padding: 52px 0;
    }
    .stats-strip .stat-item { text-align: center; }
    .stats-strip .stat-number {
      font-size: clamp(1.8rem, 5vw, 2.75rem); font-weight: 800;
      color: var(--primary-green); line-height: 1; margin-bottom: 0.4rem;
    }
    .stats-strip .stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
    .stats-strip .stat-divider {
      width: 1px; background: rgba(255,255,255,0.12);
      align-self: stretch; margin: 0 auto;
    }

    /* ── Why it matters ── */
    .why-section { padding: 80px 0; background: white; }
    .why-card {
      display: flex; gap: 1.25rem; align-items: flex-start;
      padding: 1.5rem; border-radius: 12px;
      transition: background 0.25s;
    }
    .why-card:hover { background: #f8f9fa; }
    .why-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--green-light); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .why-icon svg { width: 24px; height: 24px; color: var(--primary-green); }
    .why-card h5 { font-size: 1rem; font-weight: 700; color: #212529; margin-bottom: 0.4rem; }
    .why-card p { font-size: 0.93rem; color: #666; margin: 0; line-height: 1.65; }

    /* ── Benefits two-col ── */
    .benefits-section { padding: 80px 0; background: #f8f9fa; }
    .benefits-panel {
      background: white; border-radius: 16px;
      padding: 2.5rem; height: 100%;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .benefits-panel h4 {
      font-size: 1.2rem; font-weight: 700; color: #212529;
      margin-bottom: 1.5rem; padding-bottom: 1rem;
      border-bottom: 2px solid var(--primary-green);
    }
    .benefit-item {
      display: flex; align-items: flex-start; gap: 0.75rem;
      margin-bottom: 1.1rem;
    }
    .benefit-item:last-child { margin-bottom: 0; }
    .benefit-check {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--primary-green); display: flex;
      align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }
    .benefit-check svg { width: 12px; height: 12px; color: white; }
    .benefit-item p { font-size: 0.95rem; color: #444; margin: 0; line-height: 1.6; }

    /* ── Modules / platform features ── */
    .modules-section { padding: 80px 0; background: white; }
    .module-card {
      border-radius: 14px; border: 1px solid #e9ecef;
      padding: 2rem 1.75rem; height: 100%;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
      position: relative; overflow: hidden;
    }
    .module-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--primary-green);
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .module-card:hover {
      border-color: transparent; box-shadow: 0 10px 30px rgba(0,0,0,0.09);
      transform: translateY(-4px);
    }
    .module-card:hover::before { transform: scaleX(1); }
    .module-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--green-light); display: flex; align-items: center;
      justify-content: center; margin-bottom: 1.25rem;
    }
    .module-icon svg { width: 26px; height: 26px; color: var(--primary-green); }
    .module-card h5 { font-size: 1.05rem; font-weight: 700; color: #212529; margin-bottom: 0.6rem; }
    .module-card p { font-size: 0.9rem; color: #666; line-height: 1.65; margin: 0; }

    /* ── GLP-1 section ── */
    .glp1-section { padding: 80px 0; background: #f8f9fa; }
    .glp1-badge {
      display: inline-block; font-size: 0.75rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      background: rgba(255,193,7,0.12); border: 1px solid rgba(255,193,7,0.3);
      color: #b58900; padding: 0.3rem 0.85rem; border-radius: 100px;
      margin-bottom: 1.25rem;
    }
     /* ── Coaching approach ── */
    .coaching-section { padding: 80px 0; background: white; }
    .coaching-step {
      display: flex; gap: 1.5rem; align-items: flex-start;
      margin-bottom: 2rem;
    }
    .coaching-step:last-child { margin-bottom: 0; }
    .step-num {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--primary-green); color: white;
      font-size: 1rem; font-weight: 800; display: flex;
      align-items: center; justify-content: center; flex-shrink: 0;
    }
    .coaching-step h5 { font-size: 1.05rem; font-weight: 700; color: #212529; margin-bottom: 0.4rem; }
    .coaching-step p { font-size: 0.93rem; color: #666; margin: 0; line-height: 1.65; }


    /* ── Responsive ── */
    @media (max-width: 991px) {
      .hero-section { padding: 64px 0 56px; }
      .hero-img-wrap { margin-top: 2.5rem; }
      .showcase-img img { height: 260px; }
    }
    @media (max-width: 576px) {
      .delivers-section, .showcase-section, .modules-section,
      .outcomes-section, .everyone-section { padding: 56px 0; }
      .showcase-row { padding: 32px 0; }
      .why-section, .benefits-section, .modules-section { padding: 56px 0; }
      .benefits-panel { padding: 1.75rem; }
    }
/* How it works */
.how-it-works p.label {
  font-weight: 500;
  font-size: 1.2rem;
}
.pos-rel {
  position: relative;
}
.how-it-works .step-dash-line {
  position: absolute;
  left: 360px;
  color: #0f6b4f;
  top: 10px;
  width: 195px;
}
.how-it-works .step-dash-line.right-dash {
  right: 360px;
  left: auto;
}
.works-step .works-step-icon {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.works-step .works-step-icon img {
  width: 60px;
}
.works-step .works-step-item {
  display: inline-block;
  text-align: left;
}
.works-step .works-step-item h4 {
color: #0f6b4f;
font-weight: 700;
font-size: 1.7rem;
}
.works-step .works-step-item h6 {
font-weight: 700;
font-size: 1.2rem;
}
.works-step p {
color: #666666;
font-size: 1rem;
}
/* explore-modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}
#demoModal.modal {
  padding-top: 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  position: absolute;
    background: #000000;
    opacity: 1;
    color: #fff;
    font-size: 30px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
	text-align: center;
	line-height: 40px;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.video-scr-container {
	width: 900px;
	height: 500px;
	margin: 0 auto;
}
.video-scr-container iframe {
	width: 100%;
	height: 500px;
}

/* explore-modal */
.platform-section {
      padding: 50px 0 60px;
      font-size: 1.25rem;
}
.platform-sectionsub {
  padding: 60px 0;
  font-size: 1.25rem;
}
.grey-section {
  background-color: #f8f9fa;
}
.alert-success .close {
      background: none;
    border: none;
    color: #000;
    top: 6px;
    right: 5px;
}

/* team page */
.team-member-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      height: 100%;
      /* cursor: pointer; */
      display: flex;
      flex-direction: column;
    }

    .team-member-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .team-member-image {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.05) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .team-member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .team-member-info {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
    }

    .team-member-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #212529;
      margin-bottom: 0.5rem;
    }

    .team-member-title {
      color: var(--primary-green);
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* awards page  */
    .hg-150 img {
      height: 150px;
    }
    .hg-80 img {
      height: 80px;
    }
    .awards-styling .solution-card h5 {
      line-height: 1.4;
      font-weight: normal;
    }

     /* Blog grid  */
    .blog-section { padding: 0 0 80px; background: white; }

    .blog-card {
      border-radius: 12px; overflow: hidden; background: white;
      border: 1px solid #e9ecef; height: 100%;
      display: flex; flex-direction: column;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .blog-card:hover {
      border-color: transparent; box-shadow: 0 10px 28px rgba(0,0,0,0.09);
      transform: translateY(-5px);
    }
    .blog-card-img {
      width: 100%; height: 200px; overflow: hidden;
      background: #f0f7f1; flex-shrink: 0;
    }
    .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .blog-card:hover .blog-card-img img { transform: scale(1.04); }
    .blog-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
    .blog-card-cat {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--primary-green); margin-bottom: 0.75rem;
    }
    .blog-card h5 {
      font-size: 1rem; font-weight: 700; color: #212529;
      line-height: 1.4; margin-bottom: 0.75rem; flex-grow: 1;
    }
    .blog-card h5 a { color: inherit; text-decoration: none; }
    .blog-card h5 a:hover { color: var(--primary-green); }
    .blog-card p { font-size: 0.9rem; color: #666; line-height: 1.65; margin-bottom: 1.25rem; }
    .blog-card-footer {
       align-items: center; justify-content: space-between;
      margin-top: auto; padding-top: .5rem; border-top: 1px solid #f0f0f0;text-align: right;
    }
    .blog-card-footer .author { font-size: 0.8rem; color: #999; }
    .read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s;
}
.client-response-blog {
    border: 1px solid #000000;
    padding: 10px;
    background: #beddee;
    border-radius: 6px;
}
.double-btn-banner .cta-title {
  margin-bottom: 1rem;
}
 .double-btn-banner .cta-sub { font-size: 1.1rem; color: #ffffff; max-width: 520px; margin: 0 auto 2.5rem; }
 .text-left {
  text-align: left;
 }
    /* Responsive */
    @media (max-width: 768px) {
      .mobile-image-item {
    display: block;
}
.web-image-item {
  display: none;
}
      .hero-section {
        /* padding: 60px 0; */
        padding: 20px 0 60px;
      }

      .hero-image-background {
        display: none;
      }

      .hero-image {
        margin-top: 2rem;
      }

      .solution-card {
        margin-bottom: 1.5rem;
      }

      .stats-section {
        padding: 60px 0;
      }

      /* .solutions-section,
      .testimonial-section,
      .security-section,
      .ai-section,
      .cta-section {
        padding: 60px 0;
      } */

      .ai-diagram {
        min-height: 300px;
      }

      .ai-center-circle {
        width: 120px;
        height: 120px;
        font-size: 1.5rem;
      }

      .ai-surrounding-icon {
        width: 60px;
        height: 60px;
      }

      .ai-surrounding-icon svg {
        width: 24px;
        height: 24px;
      }
      .step-dash-line {
        display: none;
      }
      .stats-card {
        margin-top: 2rem !important;
      }
      .navbar-collapse .btn-blue.ms-3 {
      margin-left: 0 !important;
    }
    .video-scr-container {
    width: 100%;
	height: 225px;
  }
  .video-scr-container iframe {
	height: 225px;
  }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 1.75rem;
      }

      .section-title {
        font-size: 1.5rem;
      }

      .stat-item {
        padding: 1rem !important;
        text-align: left;
      }

      .solution-card {
        padding: 1.5rem;
      }

      .btn-success,
      .btn-outline-secondary {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
      }

      .button-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .bb-card .team-member-image {
        height: 345px;
      }
    }