/* ===================================
   Graphin8 - About Page Theme
   File: pages/about/assets/css/about.css
   =================================== */

:root {
  --abt-navy: #060a20;
  --abt-card-bg: #0f1738;
  --abt-blue: #1F3C88;
  --abt-cyan: #5893D4;
  --abt-orange: #F7B633;
  --abt-orange-hover: #e69a2b;
  --abt-text-main: #e6eefb;
  --abt-text-muted: #94a3b8;
  --abt-border: rgba(255, 255, 255, 0.08);
  --abt-glass: rgba(15, 23, 56, 0.7);
  --abt-glow: radial-gradient(circle at center, rgba(88, 147, 212, 0.15) 0%, transparent 70%);
}

/* --- Global Resets for About Scope --- */
.abt-wrapper {
    background-color: var(--abt-navy);
    color: var(--abt-text-main);
    overflow-x: hidden;
    width: 100%;
}

.abt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-section {
    padding: 100px 0;
    position: relative;
}

.abt-section-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

/* --- TYPOGRAPHY --- */
.abt-heading-lg {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.abt-heading-md {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.abt-text-gradient {
    background: linear-gradient(90deg, var(--abt-cyan), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-desc {
    color: var(--abt-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
}

.abt-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(88, 147, 212, 0.1);
    border: 1px solid var(--abt-border);
    color: var(--abt-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* --- HERO SECTION --- */
.abt-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abt-hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1000px;
    background: var(--abt-glow);
    z-index: 0;
    pointer-events: none;
}

.abt-hero-content {
    position: relative;
    z-index: 1;
}

/* --- IMAGE & TEXT GRID (Story Section) --- */
.abt-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.abt-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--abt-border);
    background: var(--abt-card-bg);
}

.abt-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: 0.3s;
}

.abt-img-wrapper:hover img {
    opacity: 1;
    transform: scale(1.02);
}

/* --- STATS BAR --- */
.abt-stats-bar {
    display: flex;
    justify-content: space-between;
    background: var(--abt-glass);
    border: 1px solid var(--abt-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
}

.abt-stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--abt-border);
}

.abt-stat-item:last-child {
    border-right: none;
}

.abt-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--abt-cyan);
    margin-bottom: 5px;
}

.abt-stat-label {
    font-size: 0.9rem;
    color: var(--abt-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- VALUES CARDS --- */
.abt-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.abt-card {
    background: var(--abt-card-bg);
    border: 1px solid var(--abt-border);
    padding: 35px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.abt-card:hover {
    transform: translateY(-5px);
    border-color: var(--abt-cyan);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.abt-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--abt-orange);
    margin-bottom: 25px;
    font-size: 1.5rem; /* Icon size */
}

.abt-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.abt-card p {
    color: var(--abt-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- CTA SECTION --- */
.abt-cta-section {
    background: linear-gradient(180deg, var(--abt-navy) 0%, var(--abt-card-bg) 100%);
    text-align: center;
}

.abt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--abt-orange);
    color: var(--abt-navy);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 30px;
    transition: 0.3s;
}

.abt-btn:hover {
    background: var(--abt-orange-hover);
    transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .abt-heading-lg { font-size: 2.8rem; }
    .abt-grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .abt-stats-bar { flex-wrap: wrap; gap: 20px; }
    .abt-stat-item { border-right: none; min-width: 45%; border-bottom: 1px solid var(--abt-border); padding-bottom: 20px; }
}

@media (max-width: 768px) {
    .abt-grid-3 { grid-template-columns: 1fr; }
    .abt-heading-lg { font-size: 2.2rem; }
}