/* Technology page specific styles */

.lead-text {
    font-size: 28px;
    font-family: "Sen", serif;
    color: rgb(33, 50, 96);
    font-weight: bold;
    margin-bottom: 20px;
}

/* Tech grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.tech-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #5db1ff, #9f72e1) 1;
}

.tech-category h3 {
    font-size: 18px;
    font-family: "Sen", serif;
    color: rgb(33, 50, 96);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    font-size: 16px;
    font-family: "Sen", serif;
    color: rgb(95, 124, 145);
    padding: 6px 0;
    border-bottom: 1px solid #e8eef2;
}

.tech-list li:last-child {
    border-bottom: none;
}

/* Industry tags */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.industry-tag {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #5db1ff 0%, #9f72e1 100%);
    color: white;
    font-family: "Sen", serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
}

/* Headings with gradient underline */
h2 {
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #5db1ff, #9f72e1, #f659a8, #e1c631) 1;
    padding-bottom: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .lead-text {
        font-size: 22px;
    }

    .industry-tags {
        justify-content: center;
    }
}
