/* About Us Page Enhancements */

/* Company Statistics Section */
.company-stats {
    background: linear-gradient(135deg, #6A47ED 0%, #8B6CE3 100%);
    border-radius: 20px;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.company-stats::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 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: floating 6s ease-in-out infinite;
}

.stats-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

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

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.stats-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Mission Vision Values Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    position: relative;
}

.mission-vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(106, 71, 237, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 3px solid transparent;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6A47ED, #8B6CE3, #A28AED);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(106, 71, 237, 0.15);
    border-color: #6A47ED;
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.mission-vision-icon i {
    font-size: 2rem;
    color: #fff;
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-vision-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.mission-vision-text {
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
    font-size: 1.1rem;
}

/* Company Timeline */
.company-timeline {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    text-align: left;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(106, 71, 237, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(106, 71, 237, 0.15);
    border-color: #6A47ED;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #6A47ED;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(106, 71, 237, 0.3);
    z-index: 10;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-description {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(106, 71, 237, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-card:hover::before {
    opacity: 0.95;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(106, 71, 237, 0.2);
    border-color: #6A47ED;
}

.team-card:hover .team-content {
    color: #fff;
    z-index: 2;
    position: relative;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 5px solid #6A47ED;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    border-color: #fff;
    transform: scale(1.05);
}

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

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-position {
    color: #6A47ED;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.team-bio {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(106, 71, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6A47ED;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-card:hover .team-social a {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.team-social a:hover {
    transform: translateY(-3px);
    background: #fff !important;
    color: #6A47ED !important;
}

/* YouTube Integration Section */
.youtube-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.youtube-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.youtube-embed-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.youtube-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.youtube-cta {
    text-align: center;
    margin-top: 50px;
}

.youtube-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #FF0000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.youtube-subscribe-btn:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
    color: #fff;
}

.youtube-subscribe-btn i {
    font-size: 1.3rem;
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.tech-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(106, 71, 237, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 30px;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(106, 71, 237, 0.15);
    border-color: #6A47ED;
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
}

.tech-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Section Titles Enhancement */
.section-title-enhanced {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-enhanced h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-title-enhanced p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 30px 0 60px;
        text-align: left;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .stats-card {
        margin-bottom: 30px;
    }
    
    .mission-vision-card {
        margin-bottom: 30px;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title-enhanced h2 {
        font-size: 2.2rem;
    }
    
    .timeline-content {
        margin: 0 15px 0 45px;
        padding: 20px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
    }
    
    .mission-vision-card {
        padding: 30px 25px;
    }
    
    .stats-card {
        padding: 30px 20px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
}

/* Animation keyframes */
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom scrollbar for sections */
.custom-scroll::-webkit-scrollbar {
    width: 8px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6A47ED, #8B6CE3);
    border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #6A47ED;
} 