/* Styles specific to the index.html page (Services, About, and Contact sections) */

.qb-text {
    font-family: 'Google Sans Flex', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 40px;
}

.material-text {
    font-family: 'Noto Sans Cham', system-ui;
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    line-height: 60px;
    /* Matches the vertical space of the icons */
    color: #562D8E;
}

.trademark {
    border: 2px solid #562D8E;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 24px;
    font-weight: bold;
}

.social-icon {
    font-size: 2rem;
    color: #562D8E;
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.whatsapp:hover {
    color: #25D366;
}

.facebook:hover {
    color: #1877F2;
}

.instagram:hover {
    color: #E4405F;
}

.form-control:focus {
    border-color: #562D8E;
    box-shadow: 0 0 0 0.25rem rgba(86, 45, 142, 0.25);
}

#formStatus {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    /* Scale down large icons/text for the services grid on mobile */
    .material-text {
        font-size: 32px;
        line-height: 40px;
    }

    /* Targets material-icons specifically within the services section */
    .material-icons {
        font-size: 48px;
    }

    .trademark {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .qb-text {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}