/* About Page Specific Styles */

/* Value Cards */
.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

/* Mission Vision Cards */
.mission-vision-card {
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: scale(1.02);
}

/* Team Member Cards */
.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

/* Certification Cards */
.certification-card {
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Stats Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stats-counter {
    animation: countUp 0.8s ease-out;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    background-size: 400% 400%;
    animation: placeholderShimmer 2s ease-in-out infinite;
}

@keyframes placeholderShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .value-card {
        margin-bottom: 2rem;
    }
    
    .mission-vision-card {
        margin-bottom: 1.5rem;
    }
    
    .team-member {
        margin-bottom: 2rem;
    }
}

/* Smooth Scroll for Internal Links */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading-placeholder {
    opacity: 0.7;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Gradient Overlays */
.gradient-overlay {
    background: linear-gradient(135deg, rgba(2, 153, 180, 0.1) 0%, rgba(2, 84, 121, 0.1) 100%);
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #0299b4, transparent);
    margin: 2rem 0;
}

/* Content Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Highlight */
.feature-highlight {
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(2, 153, 180, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

