/* About Us Page Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #00d9ff;
    --accent-color: #ff6b6b;
    --dark-color: #121212;
    --light-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6c63ff, #00d9ff);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b, #ffc107);
    --gradient-mixed: linear-gradient(135deg, #6c63ff, #ff6b6b);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --glow: 0 0 20px rgba(108, 99, 255, 0.5);
}

/* Company Intro Section */
.company-intro {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 120px 0 80px;
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* 3D Scene Background */
.intro-3d-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.scene-container {
    width: 100%;
    height: 100%;
}

/* Digital Grid */
.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-line {
    position: absolute;
    background: rgba(108, 99, 255, 0.1);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    transform-origin: left;
    transform: scaleX(0);
    animation: grid-line-horizontal 2s forwards;
}

.grid-line.horizontal:nth-child(1) {
    top: 20%;
    animation-delay: 0.2s;
}

.grid-line.horizontal:nth-child(2) {
    top: 40%;
    animation-delay: 0.4s;
}

.grid-line.horizontal:nth-child(3) {
    top: 60%;
    animation-delay: 0.6s;
}

.grid-line.horizontal:nth-child(4) {
    top: 80%;
    animation-delay: 0.8s;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    transform-origin: top;
    transform: scaleY(0);
    animation: grid-line-vertical 2s forwards;
}

.grid-line.vertical:nth-child(5) {
    left: 20%;
    animation-delay: 0.3s;
}

.grid-line.vertical:nth-child(6) {
    left: 40%;
    animation-delay: 0.5s;
}

.grid-line.vertical:nth-child(7) {
    left: 60%;
    animation-delay: 0.7s;
}

.grid-line.vertical:nth-child(8) {
    left: 80%;
    animation-delay: 0.9s;
}

@keyframes grid-line-horizontal {
    0% { transform: scaleX(0); opacity: 0; }
    100% { transform: scaleX(1); opacity: 1; }
}

@keyframes grid-line-vertical {
    0% { transform: scaleY(0); opacity: 0; }
    100% { transform: scaleY(1); opacity: 1; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-cube, .floating-sphere, .floating-torus {
    position: absolute;
    opacity: 0.6;
    filter: blur(1px);
}

.floating-cube {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid rgba(108, 99, 255, 0.4);
    transform-style: preserve-3d;
    animation: float-rotate 15s infinite linear;
}

.floating-cube::before, .floating-cube::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.3);
}

.floating-cube::before {
    transform: rotateY(90deg) translateZ(30px);
}

.floating-cube::after {
    transform: rotateX(90deg) translateZ(30px);
}

.floating-cube.cube-1 {
    top: 15%;
    left: 10%;
    animation-duration: 20s;
}

.floating-cube.cube-2 {
    bottom: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.floating-cube.cube-3 {
    top: 60%;
    left: 80%;
    width: 30px;
    height: 30px;
    animation-duration: 18s;
}

.floating-sphere {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.4), rgba(0, 217, 255, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.3);
    animation: float 10s infinite ease-in-out;
}

.floating-sphere.sphere-1 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 20%;
}

.floating-sphere.sphere-2 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.floating-torus {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 15px solid rgba(255, 107, 107, 0.3);
    top: 70%;
    left: 60%;
    animation: float-rotate 25s infinite linear;
}

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

@keyframes float-rotate {
    0% { transform: rotate3d(1, 1, 1, 0deg); }
    100% { transform: rotate3d(1, 1, 1, 360deg); }
}

/* Content Styling */
.intro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.intro-text-wrapper {
    flex: 1;
    min-width: 300px;
}

.intro-text {
    max-width: 600px;
}

.intro-badge {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}

.badge-text {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badge-glow 3s infinite;
}

@keyframes badge-glow {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-alt {
    color: var(--accent-color);
}

.digital-text {
    position: relative;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
    animation: digital-text-flicker 3s infinite;
}

@keyframes digital-text-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: 1; }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 0.5; }
}

.intro-description {
    position: relative;
    margin-bottom: 40px;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.description-accent {
    position: absolute;
    top: 0;
    left: -20px;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.intro-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(108, 99, 255, 0.3);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.value-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    border-radius: 2px;
    animation: progress 2s forwards ease-out;
}

@keyframes progress {
    0% { width: 0; }
    100% { width: 100%; }
}

.intro-visual {
    flex: 1;
    min-width: 300px;
}

.visual-container {
    position: relative;
    height: 500px;
}

.visual-element {
    position: absolute;
}

.main-visual {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.vision-mission {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 80%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.vision-card {
    border-left: 4px solid var(--primary-color);
}

.mission-card {
    border-left: 4px solid var(--accent-color);
}

.vm-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.vm-card h3 i {
    color: var(--primary-color);
}

.mission-card h3 i {
    color: var(--accent-color);
}

.vm-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.vm-card ul {
    padding-left: 20px;
    margin: 0;
}

.vm-card li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    position: relative;
}

.vm-card li:last-child {
    margin-bottom: 0;
}

.floating-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float-icon 6s infinite ease-in-out;
}

.tech-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(108, 99, 255, 0.2);
}

.tech-icon.icon-2 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
    background: rgba(0, 217, 255, 0.2);
}

.tech-icon.icon-3 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(255, 107, 107, 0.2);
}

.tech-icon.icon-4 {
    top: 70%;
    right: 25%;
    animation-delay: 3s;
    background: rgba(255, 193, 7, 0.2);
}

.tech-icon.icon-5 {
    top: 10%;
    right: 30%;
    animation-delay: 4s;
    background: rgba(76, 175, 80, 0.2);
}

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

.intro-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 0 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-indicator a {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: var(--transition);
}

.scroll-indicator a:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-color);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background: var(--light-color);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

.scroll-text {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro-content {
        flex-direction: column;
    }
    
    .intro-text, .intro-visual {
        width: 100%;
    }
    
    .intro-title {
        font-size: 2.8rem;
    }
    
    .visual-container {
        height: 400px;
    }
    
    .visual-hologram {
        height: 350px;
    }
    
    .hologram-projection {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .company-intro {
        padding: 100px 0 60px;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-values {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex-basis: 50%;
        margin-bottom: 30px;
    }
    
    .visual-container {
        height: 350px;
    }
    
    .intro-content {
        flex-direction: column;
    }
    
    .intro-text-wrapper {
        order: 1;
    }
    
    .intro-visual-container {
        order: 0;
        margin-bottom: 40px;
    }
    
    .visual-hologram {
        height: 300px;
    }
    
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .intro-title {
        font-size: 2rem;
    }
    
    .stat-item {
        flex-basis: 100%;
    }
    
    .visual-container {
        height: 300px;
    }
    
    .visual-hologram {
        height: 250px;
    }
    
    .hologram-projection {
        width: 200px;
        height: 200px;
    }
    
    .intro-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .tech-stack-showcase {
        gap: 15px;
    }
    
    .tech-item {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.intro-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.primary-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    border-radius: 30px;
    color: var(--light-color);
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.primary-btn:hover .btn-glow {
    opacity: 1;
    transform: scale(1.2);
}

.video-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.video-btn:hover {
    color: var(--primary-color);
}

.video-btn-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.video-btn:hover .video-btn-icon {
    background: var(--primary-color);
    color: var(--light-color);
}

.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Visual Hologram */
.intro-visual-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.visual-hologram {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
}

.hologram-platform {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.platform-light {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 10px;
    background: rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    filter: blur(5px);
    animation: platform-pulse 2s infinite alternate;
}

@keyframes platform-pulse {
    0% { opacity: 0.5; width: 150px; }
    100% { opacity: 1; width: 180px; }
}

.hologram-projection {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram-rays {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
    opacity: 0.5;
}

.ray {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to top, rgba(0, 217, 255, 0.8), transparent);
    transform-origin: bottom;
}

.ray-1 {
    height: 300px;
    transform: translateX(-50%) rotate(-30deg);
}

.ray-2 {
    height: 300px;
    transform: translateX(-50%);
}

.ray-3 {
    height: 300px;
    transform: translateX(-50%) rotate(30deg);
}

/* Vision Mission Cards */
.vision-mission-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.vm-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vision-card {
    border-left: 4px solid var(--primary-color);
}

.mission-card {
    border-left: 4px solid var(--accent-color);
}

.card-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.vision-card .card-icon {
    background: rgba(108, 99, 255, 0.2);
    color: var(--primary-color);
}

.mission-card .card-icon {
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent-color);
}

.icon-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: icon-particles 3s infinite;
}

.vision-card .icon-particles {
    border: 2px solid rgba(108, 99, 255, 0.3);
}

.mission-card .icon-particles {
    border: 2px solid rgba(255, 107, 107, 0.3);
}

@keyframes icon-particles {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.card-content ul {
    padding-left: 20px;
    margin: 0;
}

.card-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    position: relative;
}

.card-content li:last-child {
    margin-bottom: 0;
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 1px;
}

.vision-card .deco-line {
    background: rgba(108, 99, 255, 0.3);
}

.mission-card .deco-line {
    background: rgba(255, 107, 107, 0.3);
}

.deco-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.vision-card .deco-circle {
    background: rgba(108, 99, 255, 0.5);
}

.mission-card .deco-circle {
    background: rgba(255, 107, 107, 0.5);
}

/* Core Values */
.core-values {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Company Stats */
.company-stats {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-ring {
    position: relative;
    width: 120px;
    height: 120px;
}

.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.stat-circle {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circle-progress 2s forwards ease-out;
}

@keyframes circle-progress {
    to {
        stroke-dashoffset: calc(283 - (283 * var(--percent)) / 100);
    }
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Tech Stack Showcase */
.tech-stack-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.tech-item {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--light-color);
    transition: var(--transition);
    animation: tech-item-appear 0.5s forwards ease-out;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: var(--delay);
}

@keyframes tech-item-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-item:hover {
    background: rgba(108, 99, 255, 0.2);
    color: var(--primary-color);
    transform: translateY(-5px);
}