/* Ana Section */
.ai-home-solutions-wrapper {
    background-color: var(--main-bg);
    padding: 30px 2%;
    font-family: "Segoe UI", sans-serif;
}

/* Kapsayıcı Container */
.ai-home-container {
    margin: 0 auto;
}

/* Başlıklar */
.ai-home-title {
    color: var(--title);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.ai-home-description {
    color: var(--second-text);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Yapısı */
.ai-home-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Kart (Box) Tasarımı */
.solution-box {
    background-color: var(--white);
    border: 1px solid var(--second-bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Kart Hover */
.solution-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(6, 92, 89, 0.12); /* main-text renginden hafif gölge */
    border-color: var(--accent);
}

/* İkon Alanı */
.box-visual {
    width: 64px;
    height: 64px;
    background-color: var(--second-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background-color 0.3s ease;
}

.box-visual svg {
    width: 28px;
    height: 28px;
    stroke: var(--main-text);
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.solution-box:hover .box-visual {
    background-color: var(--accent);
}

.solution-box:hover .box-visual svg {
    stroke: var(--white);
}

/* Kart Metinleri */
.box-title {
    color: var(--title);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.box-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Buton/Link */
.box-action {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.box-action:hover {
    color: var(--second-text);
    padding-left: 5px; /* Hover'da sağa kayma efekti */
}
