@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.hero-section {
    background: linear-gradient(rgba(26, 75, 95, 0.7), rgba(26, 75, 95, 0.7)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=1920&auto=format&fit=crop');
    /* mh-deep-teal overlay */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(254, 243, 199, 0.5);
    /* mh-cream with opacity */
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2a7d7b, #f59e0b, #2a7d7b);
    /* mh-teal, mh-gold, mh-teal */
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    animation: gradientMove 3s ease infinite;
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(26, 75, 95, 0.25), 0 10px 10px -5px rgba(26, 75, 95, 0.1);
    /* mh-deep-teal with opacity */
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.pattern-bg {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(42, 125, 123, 0.05) 0%, transparent 20%),
        /* mh-teal with opacity */
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 20%);
    /* mh-gold with opacity */
    background-size: 300px 300px;
}

.gradient-text {
    background: linear-gradient(135deg, #2a7d7b 0%, #d97706 50%, #f59e0b 100%);
    /* mh-teal, mh-amber, mh-gold */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-member {
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(26, 75, 95, 0.25), 0 10px 10px -5px rgba(26, 75, 95, 0.1);
    /* mh-deep-teal with opacity */
}

.team-image {
    transition: all 0.5s ease;
}

.team-member:hover .team-image {
    transform: scale(1.05);
}

.value-icon {
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #2a7d7b, #1a4b5f);
    /* mh-teal to mh-deep-teal */
}

.value-card:hover .value-icon i {
    color: white;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d97706;
    /* mh-amber */
    animation: pulse-slow 2s infinite;
}

@keyframes pulse-slow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-animation {
    animation: slideIn 0.5s ease-out forwards;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.counter-item {
    position: relative;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    /* Neutral light gray */
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2a7d7b, #d97706);
    /* mh-teal to mh-amber */
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.counter-item:hover::before {
    opacity: 1;
}

.counter-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(26, 75, 95, 0.15);
    /* mh-deep-teal with opacity */
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2a7d7b 0%, #d97706 100%);
    /* mh-teal to mh-amber */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2a7d7b;
    /* Fallback for browsers that don't support background-clip */
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
}

.counter-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2a7d7b;
    /* mh-teal */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.counter-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(42, 125, 123, 0.1);
    /* mh-teal with opacity */
    color: #2a7d7b;
    /* mh-teal */
    font-size: 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(42, 125, 123, 0.15);
    /* mh-teal with opacity */
}

.counter-item:hover .counter-icon {
    background: linear-gradient(135deg, #2a7d7b, #1a4b5f);
    /* mh-teal to mh-deep-teal */
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(26, 75, 95, 0.25);
    /* mh-deep-teal with opacity */
}

.counter-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right, transparent, #fef3c7, transparent);
    /* mh-cream */
    margin: 1.2rem 0;
}

.counter-divider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2a7d7b;
    /* mh-teal */
}

.counter-description {
    font-size: 0.9rem;
    color: #2a7d7b;
    /* mh-teal */
    line-height: 1.5;
}

@media (max-width: 768px) {
    .counter-number {
        font-size: 2.8rem;
    }

    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .counter-item {
        padding: 2rem 1rem;
    }
}