/* ======== ENGINEERING EXCELLENCE SECTION ======== */

.excellence-section {
    background-color: #161B22; /* Slightly lighter than pure black */
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle border */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.excellence-content {
    max-width: 800px; /* Constrains width to keep text readable */
    margin: 0 auto;
    text-align: center;
}

.excellence-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.excellence-text {
    font-size: 16px;
    line-height: 1.7; /* Good readability */
    color: #9CA3AF;   /* Muted Grey */
    margin-bottom: 25px;
}

/* The blue link inside the text */
.text-link {
    color: #3B82F6; /* Bright Blue */
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.text-link:hover {
    text-decoration: underline;
    color: #60A5FA;
}

.excellence-btn-wrapper {
    margin-top: 40px;
}

/* The Solid Blue Button */
.btn-blue-solid {
    background-color: #2563EB;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 6px; /* Slightly rounded corners, not full pill */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #2563EB;
}

.btn-blue-solid:hover {
    background-color: #1D4ED8;
    border-color: #1D4ED8;
    transform: translateY(-2px);
    color: #fff;
}

/* --- RESPONSIVE --- */
@media only screen and (max-width: 768px) {
    .excellence-section {
        padding: 60px 20px;
    }

    .excellence-content h2 {
        font-size: 28px;
    }

    .excellence-text {
        font-size: 14px;
    }
}
