/* About Section Styles */
:root {
    --primary-rgb: 78, 107, 255;
}

.about {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(78, 107, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.about-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    overflow: hidden;
    width: 100%;
}
.about {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.about-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 2rem auto;
    max-width: 1000px;
    transition: all 0.3s ease;
}

.about-text {
    text-align: right;
    line-height: 1.8;
    color: #333;
}

.main-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.8;
}

.company-name {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(78, 107, 255, 0.3);
}

.achievements {
    background: linear-gradient(135deg, rgba(78, 107, 255, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(78, 107, 255, 0.2);
}

.highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.highlight {
    color: var(--primary-color);
    font-size: 1.6em;
    font-weight: 700;
}

.process-text {
    font-size: 1.1rem;
    color: #444;
    margin: 2rem 0;
    padding: 1.5rem;
    border-right: 4px solid var(--primary-color);
    background: rgba(78, 107, 255, 0.05);
    border-radius: 0 15px 15px 0;
}

.ceo-signature {
    text-align: left;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(78, 107, 255, 0.1);
}

.position {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.ceo-name {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .about-box {
        padding: 1.5rem;
        margin: 1rem;
    }

    .main-description,
    .highlight-text {
        font-size: 1.1rem;
    }

    .process-text {
        font-size: 1rem;
        padding: 1rem;
    }

    .ceo-name {
        font-size: 1.4rem;
    }
}
