
/* About Section */
.about-section-threejs {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    padding: 60px 0;
}

.about-threejs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.about-content-modern {
    padding: 0;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 110, 59, 0.1);
    color: #ff6b35;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 110, 59, 0.2);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #ff6b35;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.about-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
    opacity: 0.3;
}

.about-description-modern {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
    min-width: 150px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.value-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    background: rgba(255, 110, 59, 0.1);
        position: relative;
        z-index: 1;
}

/* Icon styling for premium look */
.value-icon i {
    font-size: 1.6rem;
    color: #ff6b35;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    opacity: 0.2;
    animation: glow-pulse 3s ease-in-out infinite;
        z-index: 0;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

.value-card h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.value-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 110, 59, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 50%;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: -2s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -8s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: -5s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Scroll Reveal Animations */
[data-reveal] {
    opacity: 0;
}

[data-reveal="slide-up"] {
    transform: translateY(60px);
}

[data-reveal="slide-right"] {
    transform: translateX(-60px);
}

[data-reveal="slide-left"] {
    transform: translateX(60px);
}

[data-reveal="float-in"] {
    transform: translateY(80px) scale(0.8);
}

[data-reveal="scale-in"] {
    transform: scale(0.5);
}

[data-reveal="rotate-in"] {
    transform: scale(0.5) rotate(180deg);
}

.revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills-floating-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .skills-title {
        font-size: 2.5rem;
    }
    
    .about-title-modern {
        font-size: 2.5rem;
    }
    
    .stats-row {
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-description-modern {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .skills-floating-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-item {
        padding: 25px 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .value-card {
        padding: 20px;
    }
}