/* About Page Modern Styles */

:root {
    --primary-color: #00bcd4;
    --secondary-color: #1e88e5;
    --accent-color: #fdd835;
    --bg-dark: #0a0e1a;
    --glass-bg: rgba(22, 27, 34, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #b0b3b8;
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.15), transparent 60%);
}

/* General Layout */
.about-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
    background-color: var(--bg-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: 85vh;
    align-items: center;
    padding: 2rem 5% 4rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    background: rgba(253, 216, 53, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(253, 216, 53, 0.2);
}

.about-hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-card strong {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.stat-card .plus {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 2px;
}

.stat-card span[class*="Label"] {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card {
    padding: 2.5rem;
    width: 80%;
    position: relative;
    z-index: 2;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.floating-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.badge-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
    color: #f48fb1;
}

.badge-2 {
    bottom: 15%;
    left: 0%;
    animation-delay: 2s;
    color: #81d4fa;
}

.badge-3 {
    top: 40%;
    right: -5%;
    animation-delay: 4s;
    color: #a5d6a7;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Intro */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
    position: relative;
    padding: 2rem;
}

.intro-badge {
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-intro p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

/* Pillars Grid */
.pillars-section {
    margin-bottom: 8rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-main);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pillar-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 188, 212, 0.3);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* What We Offer */
.what-we-offer {
    margin-bottom: 8rem;
}

.offer-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.offer-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.offer-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.offer-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background: rgba(22, 27, 34, 0.8);
    transform: translateY(-5px);
}

.offer-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.offer-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.offer-card h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-main);
}

.offer-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Mission / Vision */
.mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 8rem;
    position: relative;
    /* removed border/bg from wrapper, applied to cards implicitly layout */
}

.mv-card {
    display: flex;
    gap: 1.5rem;
    padding: 3rem;
    align-items: flex-start;
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.mv-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.mv-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.mv-divider {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
}

/* Founder Section */
.founder-section {
    max-width: 900px;
    margin: 0 auto 8rem;
}

.founder-card {
    padding: 0;
    /* Clear internal padding if grid handles it or keep it wrapper */
    overflow: hidden;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Full width for now */
    padding: 4rem;
    position: relative;
    background: radial-gradient(circle at top right, rgba(0, 188, 212, 0.05), transparent 50%);
}

.quote-icon-large {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    display: block;
}

.founder-card h3 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-size: 1.8rem;
    line-height: 1.5;
    font-family: serif;
    /* Blend with sans-serif */
    color: #fff;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.founder-signature {
    display: flex;
    flex-direction: column;
}

.signature-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.signature-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Redesigned */
.cta-section-redesigned {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.3);
}

.cta-mesh-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H22v20h-2V22h-2v20h-2V22h-2v20h-2V22h-2v20H0v-2h10v-2H0v-2h10v-2H0v-2h10v-2H0z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-wrapper h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-content-wrapper p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-actions-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.white-btn {
    background: #fff;
    color: var(--secondary-color);
}

.white-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.outline-btn {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.outline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Response */
@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        gap: 2rem;
        text-align: center;
    }

    .hero-eyebrow,
    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .hero-card {
        width: 100%;
        transform: rotate(0);
    }

    .mission-vision-wrapper {
        grid-template-columns: 1fr;
    }

    .mv-divider {
        display: none;
    }

    .mv-card {
        padding: 2rem;
    }
}