/* About Us Page Specific Styles */

/* Additional custom styles that can't be handled by Tailwind classes */
.about-hero {
    background: linear-gradient(135deg, #dbeafe 0%, #e9d5ff 100%);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.mission-section {
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #dbeafe 0%, #e9d5ff 50%);
    opacity: 0.5;
    z-index: -1;
}

.feature-card {
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-indicator {
    transition: all 0.2s ease;
}

.step-indicator:hover {
    transform: scale(1.1);
}

.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .cta-section {
        padding: 1.5rem;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
    animation: slideUp 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon styling */
.feature-icon {
    transition: all 0.2s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Button styling */
.cta-button {
    transition: all 0.2s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Section spacing */
.section-spacing {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    .section-spacing {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Text styling */
.about-text {
    line-height: 1.7;
}

.about-heading {
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Card styling */
.about-card {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.about-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gradient backgrounds */
.gradient-bg-blue {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
}

.gradient-bg-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
}

.gradient-bg-green {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Accessibility improvements */
.about-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #3b82f6;
    outline-offset: 2px;
}

/* Loading states */
.about-loading {
    opacity: 0.75;
    pointer-events: none;
}

/* Print styles */
@media print {
    .cta-section {
        background-color: #f0f0f0;
        color: #000;
    }

    .cta-button {
        background-color: #666;
        color: #fff;
        border: 1px solid #000;
    }
}