/* ==========================================================
   ShareMarketGyan
   About Page Styles
========================================================== */


/* ==========================================================
   ABOUT HERO
========================================================== */

.about-hero{
    position:relative;
    overflow:hidden;
    padding:120px 0 80px;
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbff 100%
    );
}

.about-hero::before{
    content:"";

    position:absolute;
    top:-180px;
    right:-150px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(37,99,235,.08);
    filter:blur(80px);

    z-index:0;
}

.about-hero .container{
    position:relative;
    z-index:2;
}


/* ==========================================================
   ABOUT BREADCRUMB
========================================================== */

.about-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:28px;

    font-size:.95rem;
}

.about-breadcrumb a{
    color:var(--text);
    text-decoration:none;
    transition:var(--transition);
}

.about-breadcrumb a:hover{
    color:var(--primary);
}

.about-breadcrumb span{
    color:var(--text);
}


/* ==========================================================
   ABOUT HERO BADGE
========================================================== */

.about-section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 14px;
    margin-bottom:18px;

    border:1px solid rgba(15,76,129,.15);
    border-radius:999px;

    background:rgba(15,76,129,.06);
    color:var(--primary);

    font-size:.78rem;
    font-weight:700;
    line-height:1;

    letter-spacing:.08em;
    text-transform:uppercase;
}


/* ==========================================================
   ABOUT HERO CONTENT
========================================================== */

.about-hero__content{
    max-width:780px;
    margin-bottom:70px;
}

.about-hero__title{
    margin-bottom:28px;

    font-size:3.8rem;
    line-height:1.15;
    font-weight:800;

    color:var(--heading);
}

.about-hero__description{
    max-width:700px;
    margin-bottom:42px;

    color:var(--text);

    font-size:1.15rem;
    line-height:1.9;
}


/* ==========================================================
   ABOUT HERO ACTIONS
========================================================== */

.about-hero__actions{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}


/* ==========================================================
   ABOUT HERO BUTTON
========================================================== */

.about-hero__actions .btn-outline{
    background:transparent !important;
    color:var(--primary) !important;
    border:2px solid var(--primary) !important;
}

.about-hero__actions .btn-outline:hover{
    background:var(--primary) !important;
    color:#fff !important;
}

/* ==========================================================
   ABOUT HERO HIGHLIGHTS
   WHAT YOU GET
========================================================== */

.about-hero__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}


/* ==========================================================
   HIGHLIGHT CARD
========================================================== */

.about-highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;

  min-height: 285px;
  padding: 28px;

  border: 1px solid var(--border);
  border-radius: 24px;

  background: #ffffff;

  text-decoration: none;
  overflow: hidden;

  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Decorative glow */

.about-highlight-card::before {
  content: "";
  position: absolute;

  width: 140px;
  height: 140px;

  top: -70px;
  right: -70px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.08);

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}


/* Bottom accent */

.about-highlight-card::after {
  content: "";

  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 0;

  height: 3px;

  border-radius: 3px 3px 0 0;

  background: var(--primary);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}


/* ==========================================================
   HOVER
========================================================== */

.about-highlight-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.12);

  border-color: rgba(37, 99, 235, 0.25);
}

.about-highlight-card:hover::before {
  transform: scale(1.5);
  opacity: 0.8;
}

.about-highlight-card:hover::after {
  transform: scaleX(1);
}


/* ==========================================================
   ICON
========================================================== */

.about-highlight-icon {
  position: relative;
  z-index: 2;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 17px;

  background: rgba(37, 99, 235, 0.09);

  color: var(--primary);

  font-size: 1.25rem;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.about-highlight-card:hover .about-highlight-icon {
  transform: scale(1.08) rotate(-3deg);

  background: var(--primary);

  color: #ffffff;
}


/* ==========================================================
   NUMBER
========================================================== */

.about-highlight-number {
  position: absolute;

  top: 22px;
  right: 24px;

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.08em;

  color: var(--text-light);

  opacity: 0.65;
}


/* ==========================================================
   LABEL
========================================================== */

.about-highlight-label {
  display: inline-block;

  margin-bottom: 8px;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.12em;

  color: var(--primary);
}


/* ==========================================================
   TITLE
========================================================== */

.about-highlight-card h3 {
  margin: 0 0 12px;

  font-size: 1.2rem;
  line-height: 1.3;

  color: var(--heading);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.about-highlight-card p {
  margin: 0;

  color: var(--text-light);

  font-size: 0.94rem;
  line-height: 1.65;
}


/* ==========================================================
   LINK
========================================================== */

.about-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: auto;
  padding-top: 22px;

  font-size: 0.88rem;
  font-weight: 700;

  color: var(--primary);

  transition: gap 0.3s ease;
}

.about-highlight-card:hover .about-highlight-link {
  gap: 13px;
}


/* ==========================================================
   CARD VARIATIONS
========================================================== */

.about-highlight-card--learning::after {
  background: #2563eb;
}

.about-highlight-card--market::after {
  background: #059669;
}

.about-highlight-card--resources::after {
  background: #7c3aed;
}

.about-highlight-card--risk::after {
  background: #dc2626;
}


/* Icon variations */

.about-highlight-card--market .about-highlight-icon {
  background: rgba(5, 150, 105, 0.09);
  color: #059669;
}

.about-highlight-card--resources .about-highlight-icon {
  background: rgba(124, 58, 237, 0.09);
  color: #7c3aed;
}

.about-highlight-card--risk .about-highlight-icon {
  background: rgba(220, 38, 38, 0.09);
  color: #dc2626;
}


/* ==========================================================
   KEYBOARD ACCESSIBILITY
========================================================== */

.about-highlight-card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: 4px;
}


/* ==========================================================
   WHY WE EXIST
========================================================== */

.about-story{
    padding:100px 0;
    background:#ffffff;
}

.story-quote{
    max-width:900px;

    margin:0 auto 55px;
    padding:36px 45px;

    background:#f8fafc;

    border:1px solid var(--border);
    border-left:4px solid var(--primary);
    border-radius:18px;

    box-shadow:var(--shadow);
}

.story-quote blockquote{
    margin:0;

    color:var(--heading);

    font-family:'Poppins',sans-serif;
    font-size:1.35rem;
    font-weight:600;
    line-height:1.7;

    text-align:center;
}


/* ==========================================================
   STORY JOURNEY
========================================================== */

.story-journey{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;

    margin-bottom:60px;
}

.journey-card{
    position:relative;

    padding:35px 30px;

    background:#ffffff;

    border:1px solid var(--border);
    border-radius:20px;

    box-shadow:var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.journey-card:hover{
    transform:translateY(-6px);

    border-color:rgba(15,76,129,.20);

    box-shadow:
        0 20px 45px rgba(0,0,0,.09);
}


/* ==========================================================
   JOURNEY NUMBER
========================================================== */

.journey-number{
    width:54px;
    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#ffffff;

    font-size:1rem;
    font-weight:700;
}

.journey-card h3{
    margin-bottom:13px;

    color:var(--heading);

    font-size:1.25rem;
    line-height:1.3;
}

.journey-card p{
    margin:0;

    color:var(--text);

    font-size:1rem;
    line-height:1.75;
}


/* ==========================================================
   STORY CONTENT
========================================================== */

.story-content{
    max-width:850px;
    margin:0 auto;
}

.story-content p{
    margin:0 0 20px;

    color:var(--text);

    font-size:1rem;
    line-height:1.85;
}

.story-content p:last-child{
    margin-bottom:0;
}


/* ==========================================================
   MISSION & VISION
========================================================== */

.about-purpose{
    padding:100px 0;
    background:#f8fafc;
}

.purpose-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}


/* ==========================================================
   PURPOSE CARD
========================================================== */

.purpose-card{
    padding:40px;

    background:#ffffff;

    border:1px solid var(--border);
    border-radius:22px;

    box-shadow:var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.purpose-card:hover{
    transform:translateY(-6px);

    border-color:rgba(15,76,129,.20);

    box-shadow:
        0 20px 45px rgba(0,0,0,.09);
}


/* ==========================================================
   PURPOSE ICON
========================================================== */

.purpose-card__icon{
    width:68px;
    height:68px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;

    border-radius:18px;

    background:rgba(20,184,166,.10);
    color:var(--secondary);

    font-size:1.5rem;
}

.purpose-card h3{
    margin-bottom:15px;

    color:var(--heading);

    font-size:1.4rem;
    line-height:1.3;
}

.purpose-card p{
    margin:0;

    color:var(--text);

    font-size:1rem;
    line-height:1.8;
}


/* ==========================================================
   PURPOSE FOOTER
========================================================== */

.purpose-footer{
    margin-top:45px;

    text-align:center;
}

.purpose-footer p{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;

    gap:12px;

    margin:0;

    color:var(--text);
}

.purpose-footer strong{
    color:var(--heading);

    font-family:'Poppins',sans-serif;
    font-weight:700;
}

.purpose-footer span{
    color:var(--secondary);
    font-weight:700;
}


/* ==========================================================
   WHAT WE STAND FOR
========================================================== */

.about-values{
    padding:100px 0;
    background:#ffffff;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.value-card{
    padding:35px 30px;

    background:#ffffff;

    border:1px solid var(--border);
    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.value-card:hover{
    transform:translateY(-6px);

    border-color:rgba(15,76,129,.20);

    box-shadow:
        0 20px 45px rgba(0,0,0,.09);
}

.value-card > i{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 22px;

    border-radius:18px;

    background:rgba(15,76,129,.07);
    color:var(--primary);

    font-size:1.35rem;
}

.value-card h3{
    margin-bottom:12px;

    color:var(--heading);

    font-size:1.2rem;
    line-height:1.35;
}

.value-card p{
    margin:0;

    color:var(--text);

    font-size:1rem;
    line-height:1.7;
}