/* ======== SERVICES TOOLKIT SECTION ======== */

.services-section {
    padding: 10vh 0;
}

.services-title {
    text-align: center;
    font-size: 36px; /* Matches "Innovation Toolkit" size */
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-subtitle {
    text-align: center;
    color: #9CA3AF; /* Muted grey */
    font-size: 16px;
    margin-bottom: 60px;
    font-weight: 300;
}

/* --- THE GRID --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Equal Columns */
    gap: 20px;
    width: 100%;
}

/* --- INDIVIDUAL CARD --- */
.toolkit-card {
    background-color: #161B22; /* Dark Card BG */
    border: 1px solid #30363D; /* Subtle Border */
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.toolkit-card:hover {
    transform: translateY(-5px);
    border-color: #58A6FF; /* Highlight on hover */
}

/* Icon Box (Blue Square) */
.icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(31, 111, 235, 0.15); /* Transparent Blue */
    border-radius: 8px; /* Slightly rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
   font-size: 24px;
   color: #8B949E;
    /* Use CSS filter to make SVG blue if it isn't already */
    /* filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(203deg) brightness(119%) contrast(119%); */
}

/* Card Title */
.toolkit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    min-height: 44px; /* Keeps titles aligned if 2 lines */
    display: flex;
    align-items: center;
}

/* Tags */
.toolkit-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.toolkit-tags span {
    background-color: #21262D;
    color: #8B949E;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #30363D;
}

/* Feature List */
.toolkit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left; /* Align list items left */
}

.toolkit-list li {
    font-size: 13px;
    color: #8B949E;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Checkmark Icon Styling */
.toolkit-list li i {
    color: #238636; /* Success Green color for checkmarks */
    /* Or use #2563EB for Blue */
    font-size: 14px;
    flex-shrink: 0;
}


/* --- RESPONSIVE --- */
@media only screen and (max-width: 1100px) {
    .service-grid {
        grid-template-columns: 1fr 1fr; /* 2 Columns on Tablet */
        gap: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }

    .toolkit-card {
        padding: 30px;
    }

    .services-title {
        font-size: 28px;
    }
}
