/* What We Do section styles extracted from yeo.css */

.idea-do {
    background: linear-gradient(134deg, #0C0091 0%, #00A87E 100%);
    padding: 56px 0 48px 0;
    text-align: center;
    color: #fff;
}

.idea-do .idea-do-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    margin-bottom: 24px;
    height: 100%;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), background 0.3s, color 0.3s;
    color: #222;
}
.idea-do .idea-do-content h3 {
    color: #0a007e;
    font-size: .9rem;
    font-weight: 700;
    padding: 1rem 0 .1rem 0;
    transition: color 0.2s;
}
.idea-do .idea-do-content p {
    color: #333;
    font-size: .8rem;
    font-weight: 400;
    opacity: .8;
    transition: color 0.2s;
}
.idea-do .idea-do-content:hover {
    background: linear-gradient(135deg, #91D0FF 0%, #2881EE 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.idea-do .idea-do-content:hover h3,
.idea-do .idea-do-content:hover p {
    color: #fff;
}
.idea-do .idea-do-content:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}
.idea-do .idea-do-content img {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}
.idea-do .idea-do-content {
    width: 100%;
    padding: 40px 24px;
}
.idea-do a {
    color: #382CBE;
}
.idea-do .feature-title {
    color: #fff;
}
@media (max-width: 900px) {
    .idea-do .idea-do-content {
        padding: 32px 12px;
    }
}

.highlight-service {
  box-shadow: 0 0 0 4px #00A87E, 0 0 24px 8px #00A87E66;
  border: 2px solid #00A87E;
  transition: box-shadow 0.3s, border 0.3s;
  z-index: 2;
  position: relative;
  animation: highlightServiceGlow 1.5s cubic-bezier(.4,0,.2,1);
}
@keyframes highlightServiceGlow {
  0% { box-shadow: 0 0 0 0 #00A87E, 0 0 0 0 #00A87E00; border-color: #00A87E; }
  60% { box-shadow: 0 0 0 8px #00A87E, 0 0 32px 16px #00A87E66; border-color: #00A87E; }
  100% { box-shadow: 0 0 0 0 #00A87E, 0 0 0 0 #00A87E00; border-color: #fff; }
} 