/* Enhanced About Section - High Priority Styles */
#about.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 1) 0%,
        rgba(22, 33, 62, 1) 50%,
        rgba(16, 21, 30, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

#about.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

#about.about .container {
    position: relative;
    z-index: 2;
}

#about.about .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

/* Company Story - Left Side */
#about.about .about-story {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    height: fit-content;
}

#about.about .about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transition: left 0.8s ease;
}

#about.about .about-story:hover::before {
    left: 100%;
}

#about.about .story-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

#about.about .story-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #6366f1);
    border-radius: 1px;
}

#about.about .story-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

#about.about .story-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#about.about .story-header p {
    color: #b3b3b3;
    font-size: 1.1rem;
    line-height: 1.6;
}

#about.about .story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#about.about .story-text {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

#about.about .story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #6366f1);
    border-radius: 0 2px 2px 0;
}

#about.about .story-text p {
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

#about.about .story-text p:last-child {
    margin-bottom: 0;
}

#about.about .story-text strong {
    color: #00d4ff;
    font-weight: 600;
}

#about.about .story-text em {
    color: #ffffff;
    font-style: italic;
}

/* About Details - Right Side */
#about.about .about-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Core Values */
#about.about .values-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

#about.about .values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.8s ease;
}

#about.about .values-section:hover::before {
    left: 100%;
}

#about.about .values-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

#about.about .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

#about.about .value-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.8rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#about.about .value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

#about.about .value-item:hover::before {
    left: 100%;
}

#about.about .value-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.1);
}

#about.about .value-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

#about.about .value-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

#about.about .value-item p {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Technology Stack */
#about.about .tech-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

#about.about .tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    transition: left 0.8s ease;
}

#about.about .tech-section:hover::before {
    left: 100%;
}

#about.about .tech-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

#about.about .tech-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

#about.about .tech-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

#about.about .tech-category:hover {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(5px);
}

#about.about .tech-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#about.about .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

#about.about .tech-tag {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#about.about .tech-tag:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Company Stats */
#about.about .company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

#about.about .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#about.about .stat-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;
}

#about.about .stat-card:hover::before {
    left: 100%;
}

#about.about .stat-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

#about.about .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

#about.about .stat-label {
    color: #b3b3b3;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

#about.about .stat-description {
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    #about.about .about-wrapper {
        gap: 3rem;
    }
    
    #about.about .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #about.about .company-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    #about.about {
        padding: 3rem 0;
    }
    
    #about.about .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    #about.about .about-story,
    #about.about .values-section,
    #about.about .tech-section {
        padding: 2rem;
    }
    
    #about.about .story-header h3 {
        font-size: 1.5rem;
    }
    
    #about.about .values-title,
    #about.about .tech-title {
        font-size: 1.2rem;
    }
    
    #about.about .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    #about.about .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #about.about .about-story,
    #about.about .values-section,
    #about.about .tech-section {
        padding: 1.5rem;
    }
    
    #about.about .story-text {
        padding: 1.5rem;
    }
    
    #about.about .value-item {
        padding: 1.2rem;
    }
    
    #about.about .tech-category {
        padding: 1.2rem;
    }
    
    #about.about .stat-card {
        padding: 1.5rem 1rem;
    }
}

/* High specificity overrides */
body #about.about .story-header h3 {
    color: #ffffff !important;
    background: linear-gradient(135deg, #ffffff, #b3b3b3) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

body #about.about .values-title,
body #about.about .tech-title {
    color: #ffffff !important;
}

body #about.about .value-item h4 {
    color: #ffffff !important;
}

body #about.about .tech-category h4 {
    color: #10b981 !important;
}

body #about.about .stat-number {
    color: #00d4ff !important;
}
