/* OUR-STORY.CSS - Page Scoped Styles */

/* ── Reset & Protection ── */
  body { font-family:'Avenir Next','Avenir',sans-serif!important; margin:0!important; background:#fff!important; color:#3d4a5c; }
  footer a,header a { text-decoration:none!important; color:inherit!important; }
  footer ul { list-style:none!important; padding:0!important; margin:0!important; }
  footer h4 { font-size:1rem!important; font-weight:700!important; margin-bottom:1rem!important; color:#000!important; }
  footer p  { margin:0!important; }
  footer > div { display:grid!important; }
  footer .flex { display:flex!important; }
  footer > div.border-t { text-align:center!important; }
  header { text-align:left!important; }

  /* ── Our Story Main Scope ── */
  #our-story-scope { background:#fff; overflow-x:hidden; }

  /* Global Headings & Fonts */
  #our-story-scope h1,
  #our-story-scope h2,
  #our-story-scope h3,
  #our-story-scope h4,
  #our-story-scope .heading-font {
    font-family: 'Urbanist', 'Helvetica Neue', sans-serif !important;
    font-weight: 700;
  }
  #our-story-scope p,
  #our-story-scope span,
  #our-story-scope a,
  #our-story-scope input,
  #our-story-scope textarea,
  #our-story-scope button,
  #our-story-scope .body-font {
    font-family: 'Avenir Next', 'Avenir', sans-serif;
  }

  /* ── 1. Hero Section ── */
  #our-story-scope .os-hero {
    background:
                url('../../images/Group-1261153213.png') center/cover no-repeat !important;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    color: #fff;
  }
  #our-story-scope .os-hero h1 {
    font-size: 46px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
  }
  #our-story-scope .os-hero p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 500px;
    margin-bottom: 40px;
  }
  #our-story-scope .hero-badge {
    background: #ffffff;
    color: #2eb93e;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  #our-story-scope .hero-img-wrap {
    position: relative;
    text-align: center;
  }
  #our-story-scope .hero-img-wrap img {
    max-height: 380px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    vertical-align: bottom;
  }
  @keyframes h1-blink-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(0.85); }
  }
  .h1-blinking-icon {
    animation: h1-blink-pulse 1.2s infinite ease-in-out;
  }
  #our-story-scope .os-hero-blinking-badge {
    top: 18% !important;
    right: 36% !important;
    width: 22px !important;
    height: 22px !important;
    z-index: 12 !important;
  }
  @media (max-width: 991px) {
    #our-story-scope .os-hero-blinking-badge {
      top: 17% !important;
      right: 34% !important;
    }
  }
  @media (max-width: 576px) {
    #our-story-scope .os-hero-blinking-badge {
      top: 16% !important;
      right: 32% !important;
    }
  }

  /* ── 2. Overview / Intro Section ── */
  #our-story-scope .os-intro {
    padding: 80px 0 70px;
    text-align: center;
    background: #ffffff;
  }
  #our-story-scope .pill-badge {
    display: inline-block;
    background: #eef3ff;
    color: #0d38d3;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
  #our-story-scope .os-intro h2 {
    font-size: 38px;
    color: #183b56;
    margin-bottom: 24px;
  }
  #our-story-scope .os-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a7184;
    max-width: 960px;
    margin: 0 auto;
  }

  /* ── 3, 4, 5. Product Showcase Sections ── */
  #our-story-scope .product-section {
    padding: 60px 0;
    background: #ffffff;
  }
  #our-story-scope .product-section.bg-light-blue {
    background: #f8faff;
  }

  /* ── Our Story Product Stacking Sticky Scroll Slider ── */
  .os-stack-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
  }
  .os-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
  }
  .os-panel.os-panel-1 {
    background: #ffffff;
    z-index: 1;
    transform: translateY(0%);
  }
  .os-panel.os-panel-2 {
    background: #f8faff;
    z-index: 2;
    transform: translateY(100%);
    box-shadow: 0 -25px 50px rgba(15, 23, 42, 0.16);
  }
  .os-panel.os-panel-3 {
    background: #ffffff;
    z-index: 3;
    transform: translateY(100%);
    box-shadow: 0 -25px 50px rgba(15, 23, 42, 0.16);
  }

  @media (max-width: 991px) {
    .os-stack-wrapper {
      height: auto !important;
      overflow: visible !important;
      position: relative !important;
    }
    .os-panel {
      position: sticky !important;
      top: 75px !important;
      left: 0 !important;
      width: 100% !important;
      height: auto !important;
      transform: none !important;
      box-shadow: 0 -15px 35px rgba(15, 23, 42, 0.12) !important;
      padding: 40px 0 !important;
      margin-bottom: 30px !important;
      background: #ffffff !important;
    }
    .os-panel.os-panel-1 { z-index: 1 !important; }
    .os-panel.os-panel-2 { z-index: 2 !important; background: #f0f6ff !important; }
    .os-panel.os-panel-3 { z-index: 3 !important; background: #ffffff !important; }
  }

  #our-story-scope .product-card-title {
    font-size: 32px;
    color: #183b56;
    margin-bottom: 18px;
  }
  #our-story-scope .product-card-p {
    font-size: 15px;
    line-height: 1.75;
    color: #5a7184;
    margin-bottom: 24px;
  }
  #our-story-scope .product-card-p a {
    color: #2eb93e;
    text-decoration: underline;
  }
  /* ── btn-case-study (Exact match to Home Page) ── */
  #our-story-scope .btn-case-study {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-family: 'Urbanist', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    width: auto !important;
    max-width: 175px !important;
    min-width: 155px !important;
    height: 52px !important;
    opacity: 1 !important;
    border-radius: 8px !important;
    border: 1px solid #d7dfe9 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: background 0.42s ease, border-color 0.42s ease, transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease !important;
  }

  #our-story-scope .btn-face {
    width: 100% !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    padding: 0 26px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
  }

  #our-story-scope .btn-case-study .btn-face--front { color: #0f172a !important; }
  #our-story-scope .btn-case-study .btn-face--back  { color: #ffffff !important; }
  #our-story-scope .btn-case-study svg path { stroke: #0f172a !important; transition: stroke 0.42s ease !important; }
  #our-story-scope .btn-case-study:hover svg path { stroke: #ffffff !important; }
  #our-story-scope .btn-case-study:hover {
    background: #000000 !important;
    border-color: #000000 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25) !important;
  }
  #our-story-scope .btn-case-study:hover .btn-face {
    transform: translateY(-100%) !important;
  }
  #our-story-scope .img-badge-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
  }
  #our-story-scope .img-badge-wrap img.main-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  #our-story-scope .logo-badge-circle {
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #0d38d3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 5;
  }
  #our-story-scope .logo-badge-circle.badge-green {
    border-color: #2eb93e;
  }
  #our-story-scope .logo-badge-circle.bottom-left {
    bottom: -20px;
    left: -20px;
  }
  #our-story-scope .logo-badge-circle.bottom-right {
    bottom: -20px;
    right: -20px;
  }

  /* ── 6. Meet the Team ── */
  #our-story-scope .os-team {
    padding: 90px 0 80px;
    background: #ffffff;
  }
  #our-story-scope .os-team h2 {
    font-size: 40px;
    color: #183b56;
    margin-bottom: 12px;
  }
  #our-story-scope .os-team p.team-sub {
    font-size: 15px;
    color: #5a7184;
    max-width: 620px;
    margin: 0 auto 60px;
  }
  #our-story-scope .team-card {
    background: #FBFCFF;

    border: 1px solid #eef2f7;
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    height: 100%;
  }
  #our-story-scope .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 56, 211, 0.08);
    border-color: #d8e2f3;
  }
  #our-story-scope .team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    margin: 0 auto 20px;
    background-color: transparent;
    transition: all 0.3s ease;
  }
  #our-story-scope .team-card:hover .team-avatar,
  #our-story-scope .team-avatar:hover {
    filter: grayscale(0%);
    background-color: #0d38d3 !important;
  }
  #our-story-scope .team-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  #our-story-scope .team-name {
    font-size: 18px;
    font-weight: 700;
    color: #183b56;
  }
  #our-story-scope .team-role {
    font-size: 13px;
    color: #8392a5;
  }
  #our-story-scope .linkedin-icon {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: #0077b5;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none;
  }

  /* ── 7. Get in Touch Section ── */
  #our-story-scope .os-contact {
    padding: 80px 0;
    background: #f8fafc;
  }
  #our-story-scope .contact-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  }
  #our-story-scope .contact-info-panel {
    background: linear-gradient(135deg, #0d38d3 0%, #07259c 100%);
    color: #ffffff;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  #our-story-scope .contact-info-panel::after {
    content:''; position:absolute; bottom:-60px; right:-60px;
    width:220px; height:220px; border-radius:50%;
    background:rgba(255,255,255,0.08); pointer-events:none;
  }
  #our-story-scope .contact-info-panel h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 40px;
  }
  #our-story-scope .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
  }
  #our-story-scope .contact-item i {
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
  }
  #our-story-scope .contact-form-panel {
    padding: 50px 44px;
  }
  #our-story-scope .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #5a7184;
    margin-bottom: 6px;
  }
  #our-story-scope .form-control,
  #our-story-scope .form-select {
    border: 1px solid #dce2ec;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #183b56;
    outline: none;
    box-shadow: none;
  }
  #our-story-scope .form-control:focus,
  #our-story-scope .form-select:focus {
    border-color: #0d38d3;
    box-shadow: 0 0 0 3px rgba(13, 56, 211, 0.1);
  }
  #our-story-scope .btn-submit-form {
    background: #0d38d3;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
  }
  #our-story-scope .btn-submit-form:hover {
    background: #07259c;
  }

