.syne-font {
    font-family: 'Syne', sans-serif;
}

/* Gradient Pill */
.pill-wrapper {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pill-text {
    color: linear-gradient(to right, #0088CC, #06d6a0);
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Image Mask */
.image-mask {
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(6, 214, 160, 0.2));
    padding: 4px;
}

.image-content {
    border-radius: 1.5rem;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    /* On mobile might need adjustment */
    width: 128px;
    height: 128px;
    background-color: #10b981;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    font-family: 'Syne', sans-serif;
    z-index: 2;
}

/* Mission/Vision Cards */
.mv-card {
    padding: 2rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    transition: all 0.3s;
}

.mv-card:hover {
    border-color: #06b5d44e;
    background-color: #06b5d409;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Value Cards */
.value-card {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: #06b5d44e;
    transform: translateY(-5px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

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

/* Background Gradient */
.page-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 136, 204, 0.05), transparent, rgba(6, 214, 160, 0.05));
    z-index: -1;
    pointer-events: none;
}

.services .card-icon {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-color);
    color: #06b6d4;
}