/* About Us Page Styles - WebHoneyBee Theme */

.about-hero {
    background: linear-gradient(135deg, #ebc346 0%, #ff6b35 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.8;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(235, 195, 70, 0.4);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: rgba(255, 107, 53, 0.4);
    animation-duration: 25s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.company-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
    color: white;
    font-weight: 600;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 107, 53, 0.4); }
    to { box-shadow: 0 0 30px rgba(235, 195, 70, 0.6); }
}

.story-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5e6 100%);
    position: relative;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(235, 195, 70, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #ebc346;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
    border-top-color: #ff6b35;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #ebc346, #ff6b35);
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.story-card:hover::before {
    transform: scaleY(1);
}

.mission-vision-container {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ebc346 0%, #ff6b35 100%);
    color: white;
    position: relative;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin: 1rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .vision-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.mission-card:hover::before, .vision-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.tech-stack-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ebc346 100%);
    color: white;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    margin: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.tech-item:hover .tech-icon {
    transform: rotateY(360deg);
    color: #ebc346;
    text-shadow: 0 0 20px rgba(235, 195, 70, 0.5);
}

.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5e6 0%, #f8f9fa 100%);
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 10px 30px rgba(235, 195, 70, 0.1);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card:nth-child(1) { border-left-color: #ebc346; }
.value-card:nth-child(2) { border-left-color: #ff6b35; }
.value-card:nth-child(3) { border-left-color: #ebc346; }
.value-card:nth-child(4) { border-left-color: #ff6b35; }
.value-card:nth-child(5) { border-left-color: #ebc346; }

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.value-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ebc346, #ff6b35);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(235, 195, 70, 0.3);
}

.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    border-left: 3px solid #ebc346;
    margin-left: 2rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ebc346, #ff6b35);
    box-shadow: 0 0 0 4px #2c3e50, 0 0 20px rgba(235, 195, 70, 0.5);
}

.timeline-year {
    background: linear-gradient(45deg, #ebc346, #ff6b35);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(235, 195, 70, 0.3);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-section {
    background: linear-gradient(135deg, #ebc346 0%, #ff6b35 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
}

.cta-section::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 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><ellipse cx="50" cy="0" rx="50" ry="20" fill="url(%23a)"/></svg>') no-repeat center top;
    background-size: 100% 20px;
    pointer-events: none;
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Hero service icons styling */
.hero-service-icon {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-service-item h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-service-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Mission/Vision icon colors */
.mission-icon, .vision-icon {
    color: white !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
    }
    
    .story-card, .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .tech-item {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    .timeline-item {
        margin-left: 1rem;
        padding-left: 2rem;
    }
}