/* About Page Enhancements CSS
   Modern styling for Fire Power Cloud About page
   ============================================== */

/* Hero Section Enhancements - New Gradient Style */
.about-hero-gradient {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #1f4037 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.about-hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="800" cy="300" r="1" fill="%23ffffff" opacity="0.15"/><circle cx="400" cy="600" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="900" cy="700" r="1" fill="%23ffffff" opacity="0.12"/></svg>');
    animation: twinkle 3s ease-in-out infinite alternate;
}

.about-hero-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.about-hero-gradient .subtitle {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.about-hero-gradient h1 {
    position: relative;
    z-index: 3;
}

.about-hero-gradient p {
    position: relative;
    z-index: 3;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.value-card:hover::before {
    transform: scale(1);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-description {
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-section {
    background: linear-gradient(180deg, #111122 0%, #0a0a0a 100%);
    padding: 80px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Benefits Cards */
.small-team-benefits {
    margin-top: 50px;
}

.team-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-benefit-card:hover::before {
    left: 100%;
}

.team-benefit-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.team-benefit-card h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.team-benefit-card p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Our Story Section */
.our-story-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111122 100%);
    padding: 80px 0;
}

.story-points {
    margin: 30px 0;
}

.story-point {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #00d4ff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.story-point:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(10px);
}

.story-point strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 10px;
}

/* Goals Section */
.goals-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
}

.goal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.goal-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.goal-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.goal-card p {
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #fff;
    border: none;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.cta-btn.secondary:hover {
    background: #00d4ff;
    color: #fff;
    transform: translateY(-3px);
}

/* Enhanced Testimonials */
.enhanced-testimonials {
    background: #0a0a0a;
    padding: 80px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #00d4ff;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.02);
}

.testimonial-content {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h5 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.author-info span {
    color: #00d4ff;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .team-benefit-card {
        margin-bottom: 15px;
    }
    
    .goal-card {
        margin-bottom: 20px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation for Stats */
.stat-number {
    position: relative;
    overflow: hidden;
}

.stat-number.counting::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
} 