/* About Page Styles */
.about-page .header-minimal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-darker) 100%);
    min-height: 80px;
}

/* Footer */
.about-footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.about-footer a {
    transition: color 0.2s ease;
}

.about-footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.about-footer .social-links a {
    font-size: 24px;
    transition: transform 0.2s ease;
}

.about-footer .social-links a:hover {
    transform: scale(1.2);
}

.about-footer h6 {
    font-weight: 600;
    color: #333;
}

.about-footer ul li {
    margin-bottom: 8px;
}

/* General Page Styling */
.about-page section {
    position: relative;
}

.about-page .card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-page .btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-page .btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.about-page .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Scrollbar */
.about-page::-webkit-scrollbar {
    width: 10px;
}

.about-page::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.about-page::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

.about-page::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-darker);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
        display: block;
        margin-bottom: 10px;
    }
    
    .about-footer .col-md-4,
    .about-footer .col-md-2 {
        text-align: center;
    }
}

/* Animation on scroll (optional enhancement) */
@media (prefers-reduced-motion: no-preference) {
    .about-page section > * {
        animation: fadeInUp 0.6s ease-out;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

