/* ===============================
   GRADIENT BAŞLIK (Tüm Hizmetlerimiz)
=============================== */
.page-title-gradient {
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0ee92f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ===============================
   GRID
=============================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* ===============================
   CARD
=============================== */
.service-card {
    background: white;
    border-radius: 18px;
    padding: 20px;
    border: 4px solid transparent;

    background-image:
       linear-gradient(white, white),
       linear-gradient(90deg, #0ee92f, #14b8a6);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    transition: all 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* ===============================
   IMAGE
=============================== */
.service-card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* ===============================
   TITLE
=============================== */
.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

/* ===============================
   DESCRIPTION (truncate)
=============================== */
.service-card-desc {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============================
   LİNK
=============================== */
.service-card-link {
    font-weight: 600;
    color: #0d9488;
    text-decoration: none;
    transition: 0.3s ease;
}

.service-card-link:hover {
    padding-left: 4px;
    color: #14b8a6;
}
