/* TechBuzz Solution - About Page Styles */
.tb-about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--tb-light) 0%, var(--tb-gray) 100%);
    position: relative;
    overflow: hidden;
}

.tb-about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.tb-about-hero-text {
    flex: 1;
}

.tb-about-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--tb-dark);
}

.tb-about-hero-title span {
    color: var(--tb-primary);
    position: relative;
}

.tb-about-hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: var(--tb-secondary);
    z-index: -1;
    opacity: 0.7;
}

.tb-about-hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 90%;
}

.tb-about-hero-visual {
    flex: 1;
    position: relative;
    text-align: center;
}

.tb-hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--tb-primary-light), var(--tb-secondary));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--tb-light);
    box-shadow: var(--tb-shadow);
}

.tb-hero-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.tb-hero-image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Turning Point Section */
.tb-turning-point {
    padding: 100px 0;
    background: var(--tb-light);
}

.tb-turning-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tb-turning-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--tb-dark);
}

.tb-turning-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.tb-turning-description strong {
    color: var(--tb-primary);
    font-weight: 600;
}

.tb-turning-description em {
    color: var(--tb-dark);
    font-style: italic;
}

.tb-turning-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.tb-turning-stat {
    text-align: center;
    flex: 1;
}

.tb-turning-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--tb-primary);
    margin-bottom: 5px;
}

.tb-turning-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.tb-turning-visual {
    display: flex;
    justify-content: center;
}

.tb-turning-card {
    background: linear-gradient(135deg, var(--tb-primary), var(--tb-secondary));
    color: var(--tb-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--tb-shadow);
    max-width: 250px;
}

.tb-turning-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.tb-turning-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tb-turning-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Founders Section */
.tb-founders-section {
    padding: 100px 0;
    background: var(--tb-gray);
}

.tb-founders-grid {
    display: grid;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.tb-founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--tb-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--tb-shadow);
    transition: all 0.3s ease;
}

.tb-founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tb-founder-card.tb-cofounder {
    grid-template-columns: 1fr 300px;
}

.tb-founder-card.tb-cofounder .tb-founder-image {
    order: 2;
}

.tb-founder-card.tb-cofounder .tb-founder-info {
    order: 1;
}

.tb-founder-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.tb-image-placeholder {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, var(--tb-primary-light), var(--tb-secondary));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--tb-light);
    box-shadow: 0 10px 30px rgba(255,107,0,0.3);
}

.tb-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.tb-image-placeholder span {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
}

.tb-founder-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--tb-dark);
}

.tb-founder-role {
    color: var(--tb-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: block;
}

.tb-founder-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.tb-founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tb-expertise-tag {
    background: rgba(255,107,0,0.1);
    color: var(--tb-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,107,0,0.2);
}

.tb-founder-quote {
    background: rgba(255,107,0,0.05);
    border-left: 4px solid var(--tb-primary);
    padding: 20px;
    border-radius: 10px;
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.tb-founder-quote i {
    color: var(--tb-primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Partnership Story */
.tb-partnership-story {
    padding: 80px 0;
    background: var(--tb-light);
}

.tb-partnership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tb-partnership-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--tb-dark);
}

.tb-partnership-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.tb-partnership-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.tb-highlight {
    text-align: center;
}

.tb-highlight i {
    font-size: 2.5rem;
    color: var(--tb-primary);
    margin-bottom: 15px;
    display: block;
}

.tb-highlight span {
    font-weight: 600;
    color: var(--tb-dark);
}

/* Journey Timeline */
.tb-journey-timeline {
    padding: 100px 0;
    background: var(--tb-gray);
}

.tb-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.tb-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--tb-primary), var(--tb-secondary));
    transform: translateX(-50%);
    border-radius: 10px;
}

.tb-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.tb-timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.tb-timeline-item:nth-child(odd) .tb-timeline-content {
    text-align: right;
    margin-right: 50px;
    margin-left: 0;
}

.tb-timeline-item:nth-child(even) .tb-timeline-content {
    margin-left: 50px;
}

.tb-timeline-year {
    width: 120px;
    height: 120px;
    background: var(--tb-primary);
    color: var(--tb-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255,107,0,0.3);
}

.tb-timeline-item.tb-current .tb-timeline-year {
    background: linear-gradient(135deg, var(--tb-primary), var(--tb-secondary));
    animation: tb-pulse 2s infinite;
}

.tb-timeline-content {
    flex: 1;
    background: var(--tb-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--tb-shadow);
    margin-left: 50px;
}

.tb-timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--tb-dark);
}

.tb-timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tb-timeline-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tb-timeline-stats span {
    background: rgba(255,107,0,0.1);
    color: var(--tb-primary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Why Choose Us */
.tb-why-choose-us {
    padding: 100px 0;
    background: var(--tb-light);
}

.tb-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tb-why-card {
    background: var(--tb-light);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--tb-shadow);
    border-top: 5px solid var(--tb-primary);
    transition: all 0.3s ease;
}

.tb-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tb-why-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--tb-primary);
    font-size: 2rem;
}

.tb-why-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--tb-dark);
}

.tb-why-card p {
    color: #666;
    line-height: 1.6;
}

/* About CTA */
.tb-about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--tb-dark) 0%, #2d3748 100%);
    color: var(--tb-light);
    text-align: center;
}

.tb-about-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--tb-light);
}

.tb-about-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tb-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tb-about-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tb-about-hero-description {
        max-width: 100%;
    }
    
    .tb-turning-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tb-founder-card,
    .tb-founder-card.tb-cofounder {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tb-founder-card.tb-cofounder .tb-founder-image {
        order: 1;
    }
    
    .tb-founder-card.tb-cofounder .tb-founder-info {
        order: 2;
    }
    
    .tb-timeline::before {
        left: 30px;
    }
    
    .tb-timeline-item,
    .tb-timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .tb-timeline-item:nth-child(odd) .tb-timeline-content,
    .tb-timeline-item:nth-child(even) .tb-timeline-content {
        text-align: left;
        margin-left: 80px;
        margin-right: 0;
    }
    
    .tb-timeline-year {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .tb-about-hero-title {
        font-size: 2.5rem;
    }
    
    .tb-turning-stats,
    .tb-partnership-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .tb-founder-expertise {
        justify-content: center;
    }
    
    .tb-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tb-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .tb-about-hero {
        padding: 150px 0 80px;
    }
    
    .tb-about-hero-title {
        font-size: 2rem;
    }
    
    .tb-founder-card {
        padding: 30px 20px;
    }
    
    .tb-timeline-content {
        margin-left: 50px;
        padding: 20px;
    }
    
    .tb-about-cta-content h2 {
        font-size: 2.2rem;
    }
}
/* Fix for scroll animations - ensure elements are visible by default */
.tb-turning-content,
.tb-founder-card,
.tb-timeline-item,
.tb-why-card,
.tb-partnership-content {
    opacity: 1 !important;
    transform: none !important;
}

/* Only apply animations when the animated class is added */
.tb-turning-content.tb-scroll-animate,
.tb-founder-card.tb-scroll-animate,
.tb-timeline-item.tb-scroll-animate,
.tb-why-card.tb-scroll-animate,
.tb-partnership-content.tb-scroll-animate {
    animation: tb-fadeInUp 0.8s ease;
}

/* Ensure all sections are visible */
.tb-turning-point,
.tb-founders-section,
.tb-partnership-story,
.tb-why-choose-us {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}