/* --- Specialities Landing Page CSS --- */

.specs-hero-section {
    background-image: linear-gradient(to bottom, rgba(27,32,50,0.9) 0%, rgba(27,32,50,0.95) 100%), url('../../img/bg/specialities_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px 0;
    text-align: center;
}
.specs-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}
.specs-hero-title span {
    color: #8cc63f;
}
.specs-hero-desc {
    font-size: 18px;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.specs-grid-section {
    padding: 80px 0;
    background: #f8fbf9;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.spec-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    border-bottom: 3px solid transparent;
}
.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
    border-bottom-color: #8cc63f;
}
.spec-icon {
    width: 80px;
    height: 80px;
    background: #f4f9eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8cc63f;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.spec-card:hover .spec-icon {
    background: #8cc63f;
    color: #fff;
}
.spec-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b2032;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.spec-card:hover .spec-title {
    color: #8cc63f;
}
.spec-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.spec-link {
    font-size: 14px;
    font-weight: 700;
    color: #1b2032;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.spec-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.spec-card:hover .spec-link {
    color: #8cc63f;
}
.spec-card:hover .spec-link i {
    transform: translateX(5px);
}
