/* ============================================
   ABOUT HERO
   ============================================ */

.about-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: #0d1117;
}

/* Glow blobs */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 55% at 0% 100%, rgba(226,79,6,0.22) 0%, transparent 65%),
        radial-gradient(ellipse 45% 60% at 100% 0%,  rgba(41,121,196,0.14) 0%, transparent 65%),
        radial-gradient(ellipse 70% 40% at 50% 80%,  rgba(226,79,6,0.06) 0%, transparent 70%);
}

/* Blueprint grid */
.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(226,79,6,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226,79,6,0.07) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
}

.ah-svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.ah-beam {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e24f06 0%, #c8860a 50%, transparent 100%);
    z-index: 6;
}

.ah-content {
    position: relative;
    z-index: 5;
    padding: 0 80px;
    max-width: 780px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ah-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #e24f06;
    margin-bottom: 20px;
    animation: heroFadeIn 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.ah-eyebrow-line {
    width: 28px;
    height: 1px;
    background: #e24f06;
}

.ah-title {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: clamp(64px, 10vw, 110px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.92;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.25s;
    opacity: 0;
}

.ah-title span { color: #e24f06; }

.ah-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    border-left: 2px solid rgba(226,79,6,0.5);
    padding-left: 14px;
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.7;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.45s;
    opacity: 0;
}

.ah-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.65s;
    opacity: 0;
}

.ah-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ah-badge:hover {
    background: rgba(226,79,6,0.15);
    border-color: rgba(226,79,6,0.4);
}

.ah-badge i {
    color: #e24f06;
    font-size: 14px;
}

/* Stats bar pinned to bottom of hero */
.ah-stats {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: stretch;
    background: rgba(0,0,0,0.55);
    border-top: 1px solid rgba(226,79,6,0.2);
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 0.85s;
    opacity: 0;
    flex-shrink: 0;
}

.ah-stat {
    flex: 1;
    padding: 26px 36px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}

.ah-stat:last-child { border-right: none; }
.ah-stat:hover { background: rgba(226,79,6,0.08); }

.ah-stat-num {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #e24f06;
    line-height: 1;
    margin-bottom: 4px;
}

.ah-stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}


/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e24f06;
    margin-bottom: 12px;
}

.sey-line { width: 28px; height: 1px; background: #e24f06; }

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1410;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin: 0;
}

.section-head h2 span { color: #e24f06; }
.section-head .section-eyebrow { justify-content: center; }


/* ============================================
   WHO WE ARE
   ============================================ */

.who-section {
    padding: 100px 0;
    background: #ffffff;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-img-wrap { position: relative; padding-bottom: 30px; }

.who-img {
    height: 460px;
    border-radius: 12px;
    background-image: url('../assets/images/About_us2.png');
    background-size: cover;
    background-position: center;
    background-color: #b0906a;
}

.who-img-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: #e24f06;
    color: #ffffff;
    padding: 18px 22px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(226,79,6,0.4);
}

.who-img-badge i { font-size: 2rem; }

.wib-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.wib-label { font-size: 11px; opacity: 0.85; margin-top: 2px; }

.who-text h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1410;
    line-height: 1.1;
    margin-bottom: 18px;
}

.who-text h2 span { color: #e24f06; }

.who-lead {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.75;
    margin-bottom: 16px;
    border-left: 3px solid #e24f06;
    padding-left: 16px;
}

.who-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 14px;
}

.who-pillars {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.who-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #f9f6f2;
    border-radius: 8px;
    border-left: 3px solid #e24f06;
}

.who-pillar i {
    font-size: 1.3rem;
    color: #e24f06;
    flex-shrink: 0;
    margin-top: 2px;
}

.who-pillar strong {
    display: block;
    font-size: 14px;
    color: #1a1410;
    margin-bottom: 2px;
}

.who-pillar span { font-size: 12.5px; color: #888; line-height: 1.5; }


/* ============================================
   STATS BAR
   ============================================ */

.stats-bar-section {
    padding: 70px 0;
    background: #1a1410;
    border-top: 3px solid #e24f06;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stats-bar-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s ease;
}

.stats-bar-item:last-child { border-right: none; }
.stats-bar-item:hover { background: rgba(226,79,6,0.08); }

.sbi-icon { font-size: 1.8rem; color: #e24f06; margin-bottom: 10px; }

.sbi-num {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.sbi-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}


/* ============================================
   MISSION & VISION
   ============================================ */

.mv-section {
    padding: 100px 0;
    background: #f4f0eb;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 44px 38px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-top: 4px solid #e24f06;
}

.mv-vision { border-top-color: #2979c4; }

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(226,79,6,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i { font-size: 1.6rem; color: #e24f06; }
.mv-icon-blue { background: rgba(41,121,196,0.1); }
.mv-icon-blue i { color: #2979c4; }

.mv-card h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a1410;
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 22px;
}

.mv-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #444;
}

.mv-list i { color: #e24f06; font-size: 1rem; flex-shrink: 0; }
.mv-vision .mv-list i { color: #2979c4; }


/* ============================================
   TIMELINE
   ============================================ */

.timeline-section {
    padding: 100px 0;
    background: #ffffff;
}

.timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e24f06, #2979c4);
    transform: translateX(-50%);
}

.tl-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    gap: 30px;
}

.tl-left  { flex-direction: row-reverse; }
.tl-right { flex-direction: row; }

.tl-content {
    width: calc(50% - 40px);
    background: #f9f6f2;
    border-radius: 10px;
    padding: 24px 26px;
    border-left: 3px solid #e24f06;
}

.tl-right .tl-content {
    border-left: none;
    border-right: 3px solid #2979c4;
}

.tl-year {
    font-family: 'Barlow Condensed', 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #e24f06;
    line-height: 1;
    margin-bottom: 6px;
}

.tl-right .tl-year { color: #2979c4; }

.tl-content h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a1410;
    margin-bottom: 8px;
}

.tl-content p { font-size: 13px; color: #666; line-height: 1.75; }

.tl-dot {
    width: 18px;
    height: 18px;
    background: #e24f06;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #e24f06;
    flex-shrink: 0;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.tl-right .tl-dot {
    background: #2979c4;
    box-shadow: 0 0 0 2px #2979c4;
}


/* ============================================
   TEAM
   ============================================ */

.team-section-new {
    padding: 100px 0;
    background: #f4f0eb;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card-new {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

.tcn-img {
    height: 240px;
    background: linear-gradient(135deg, #e24f06, #c8860a);
    background-size: cover;
    background-position: center top;
}

.tcn-img1 { background-image: url('../assets/images/team1.jpg'); background-color: #b0906a; }
.tcn-img2 { background-image: url('../assets/images/team2.jpg'); background-color: #5a7a9a; }
.tcn-img3 { background-image: url('../assets/images/team3.jpg'); background-color: #6a8a7a; }

.tcn-info { padding: 24px; }

.tcn-role-tag {
    display: inline-block;
    background: rgba(226,79,6,0.1);
    color: #e24f06;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.tcn-blue { background: rgba(41,121,196,0.1); color: #2979c4; }

.tcn-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1410;
    margin-bottom: 8px;
}

.tcn-info p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tcn-socials { display: flex; gap: 10px; }

.tcn-socials a {
    width: 34px;
    height: 34px;
    background: #f4f0eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tcn-socials a:hover { background: #e24f06; color: #ffffff; }


/* ============================================
   CTA STRIP
   ============================================ */

.about-cta-strip {
    padding: 70px 0;
    background: #e24f06;
}

.acs-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.acs-text h3 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.acs-text p { font-size: 14px; color: rgba(255,255,255,0.75); }

.acs-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

.acs-btn-primary {
    background: #ffffff;
    color: #e24f06;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.acs-btn-primary:hover { background: #1a1410; color: #ffffff; }

.acs-btn-secondary {
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.acs-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
}


/* ============================================
   HERO ANIMATIONS
   ============================================ */

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-bottom { transform: translateY(55px); }
.reveal.from-left   { transform: translateX(-55px); }
.reveal.from-right  { transform: translateX(55px); }

.reveal.show {
    opacity: 1;
    transform: translate(0, 0);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .who-grid       { grid-template-columns: 1fr; gap: 60px; }
    .mv-grid        { grid-template-columns: 1fr; }
    .team-grid-new  { grid-template-columns: 1fr; }
    .stats-bar-grid { grid-template-columns: repeat(3, 1fr); }
    .ah-content     { padding: 40px 30px; }
    .ah-stats       { flex-wrap: wrap; }
    .ah-stat        { flex: 1 1 48%; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .timeline::before { left: 20px; }
    .tl-item        { flex-direction: column; padding-left: 50px; }
    .tl-left        { flex-direction: column; }
    .tl-content     { width: 100%; }
    .tl-dot         { position: absolute; left: 11px; top: 28px; margin: 0; }
    .acs-inner      { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .who-img        { height: 300px; }
    .who-img-badge  { right: 0; }
}