/* About Section Styles */
.about-section {
    background-color: #f8f9fa;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(102, 153, 255, 0.1);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(102, 153, 255, 0.05);
    z-index: 1;
}

.about-content {
    display: flex;
    justify-content: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: justify;
    line-height: 1.8;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 153, 255, 0.15);
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(102, 153, 255, 0.3);
    font-weight: 400;
}

.about-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.about-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.about-links .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 153, 255, 0.4);
}

.about-links .btn:hover i {
    transform: rotate(15deg);
}

.about-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(102, 153, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
    padding: 15px;
    overflow: hidden;
}

.about-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.about-text:hover .about-icon {
    background-color: rgba(102, 153, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 153, 255, 0.2);
}

.about-text:hover .about-icon img {
    transform: scale(1.1);
}

.about-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.about-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.about-highlights {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(102, 153, 255, 0.05);
    min-width: 120px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: rgba(102, 153, 255, 0.1);
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 15px;
    }
    
    .about-text {
        padding: 30px 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .about-highlights {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 200px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .highlight-item i {
        margin-bottom: 0;
    }
}
