/* about.css */

.about-main {
    padding-top: 100px;
    padding-bottom: 50px;
    background: var(--bg);
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, rgba(89, 247, 228, 0.05), transparent);
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cyan);
    letter-spacing: 2px;
}

.about-sub {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-main .section-head h2 {
    color: var(--cyan);
}

.section-head p {
    color: var(--muted);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Founders Section – Alternating Row Layout */
.about-founders {
    padding: 60px 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(89, 247, 228, 0.1);
}

.founder-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Reverse order for 2nd founder: image goes right */
.founder-row-reverse {
    flex-direction: row-reverse;
}

.founder-img-wrap {
    flex: 0 0 38%;
    max-width: 38%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(89, 247, 228, 0.3);
    box-shadow: 0 20px 60px rgba(89, 247, 228, 0.12);
    aspect-ratio: 4 / 5;
    position: relative;
}

.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.founder-row:hover .founder-img-wrap img {
    transform: scale(1.04);
}

.founder-text {
    flex: 1;
    position: relative;
    padding: 10px 0;
}

.founder-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(89, 247, 228, 0.08);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: -10px;
    user-select: none;
    pointer-events: none;
}

.founder-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    margin-top: 30px;
}

.founder-title {
    color: var(--cyan);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.founder-bio {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 520px;
}

.founder-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.founder-tags li {
    background: rgba(89, 247, 228, 0.08);
    border: 1px solid rgba(89, 247, 228, 0.25);
    color: var(--cyan);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 50px;
    transition: background 0.2s ease;
}

.founder-tags li:hover {
    background: rgba(89, 247, 228, 0.18);
}

@media (max-width: 768px) {
    .founder-row,
    .founder-row-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .founder-img-wrap {
        flex: unset;
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
    }

    .founder-text h3 {
        font-size: 1.7rem;
        margin-top: 20px;
    }

    .founder-number {
        font-size: 3.5rem;
    }

    .about-founders {
        padding: 40px 20px;
    }
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media (min-width: 768px) {
    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        width: calc(33.333% - 20px);
    }
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.process-step:hover::before {
    width: 100%;
    opacity: 0.1;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
}

.step-icon {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Platforms Grid */
.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.platform-card {
    background: var(--cyan);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(89, 247, 228, 0.2);
    color: #000;
}

.platform-card.pulse-anim {
    animation: floatIcon 4s ease-in-out infinite;
}

.platform-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 30px rgba(89, 247, 228, 0.4);
    animation: none;
}

.platform-card i {
    font-size: 4rem;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-card:hover i {
    transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(89, 247, 228, 0.2);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(89, 247, 228, 0.3);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(89, 247, 228, 0.2);
    }
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.content-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(89, 247, 228, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-card:hover {
    background: rgba(89, 247, 228, 0.05);
    border-color: var(--cyan);
    transform: translateY(-5px);
}

.card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(89, 247, 228, 0.2);
    transition: color 0.3s ease;
}

.content-card:hover .card-num {
    color: rgba(89, 247, 228, 0.5);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(89, 247, 228, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.content-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.content-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Growth Cards */
.growth-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.growth-card {
    width: 260px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-top: 4px solid;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.growth-card:hover {
    transform: translateY(-10px);
}

.growth-card.attract {
    border-color: #59f7e4;
}

.growth-card.engage {
    border-color: #59f7e4;
}

.growth-card.convert {
    border-color: #59f7e4;
}

.growth-card.retain {
    border-color: #59f7e4;
}

.g-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.growth-card.attract .g-icon {
    color: #59f7e4;
}

.growth-card.engage .g-icon {
    color: #59f7e4;
}

.growth-card.convert .g-icon {
    color: #59f7e4;
}

.growth-card.retain .g-icon {
    color: #59f7e4;
}

.growth-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.growth-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* SMM + Content Creation Strategy */
.smm-content-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.smm-step {
    background: var(--cyan);
    color: #000;
    border-radius: 10%;
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(89, 247, 228, 0.2);
    transition: transform 0.3s ease;
}

.smm-step:hover {
    transform: translateY(-10px);
}

.smm-icon {
    font-size: 4rem;
    margin-bottom: 12px;
    color: #000;
}

.smm-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-weight: 800;
    color: #000;
}

.step-arrow {
    font-size: 2rem;
    color: var(--cyan);
}

@media (max-width: 900px) {
    .smm-content-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.team-card {
    width: 200px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
    border-color: var(--cyan);
}

.team-img {
    width: 100%;
    height: 100%;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}