body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    margin: 0;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.about-page {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 2rem;
    perspective: 1000px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-info h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, #fff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,123,255,0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 30px rgba(0,123,255,0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(0,123,255,0.8);
    }
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.info-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: #007bff;
    box-shadow: 0 20px 40px rgba(0,123,255,0.2);
}

.description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    transform: translateZ(20px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    transform: translateZ(30px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(0,123,255,0.5);
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
}

.icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.detail-item:hover .icon {
    background: rgba(0,123,255,0.2);
    border-color: #007bff;
    transform: rotate(360deg);
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        border-color: rgba(0,123,255,0.5);
    }
    100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .company-info h1 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .info-card:hover {
        transform: translateY(-5px) rotateX(2deg);
    }
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
} 