/* --- Independent Tech Showcase Module (.ts- prefix) --- */
.ts-section {
    padding: 100px 0;
    background-color: #f9fbfc;
    font-family: 'Montserrat', sans-serif;
    clear: both;
}

.ts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Text */
.ts-header {
    text-align: center;
    margin-bottom: 50px;
}

.ts-header h2 {
    color: #002147;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.ts-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Layout Wrapper */
.ts-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Visual Side (Left) */
.ts-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ts-image {
    width: 100%;
    max-width: 500px; /* Keeps the circle perfectly sized */
    border-radius: 50%; /* Creates the circular mask */
    box-shadow: 0 20px 50px rgba(0, 33, 71, 0.08);
    object-fit: cover;
    aspect-ratio: 1 / 1; /* Forces a perfect circle even if the image isn't perfectly square */
}

/* Grid Side (Right) */
.ts-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ts-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.ts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,33,71,0.08);
    border-color: #FF9900;
}

.ts-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.ts-card h3 {
    color: #002147;
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.ts-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .ts-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .ts-grid {
        grid-template-columns: 1fr; /* Stacks the 4 cards on mobile */
        width: 100%;
    }
    
    .ts-image {
        max-width: 350px;
        margin-bottom: 20px;
    }
}