/*
Theme Name: Braintel Theme
Theme URI: https://example.com/braintel-theme/
Author: Your Name
Author URI: https://example.com/
Description: A custom WordPress theme for Braintel LLC, based on a single-page design.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: braintel-theme
*/

body {
    font-family: 'Inter', sans-serif;
    background-color: #F7F7F7;
    color: #1a202c;
}
.nav-link {
    transition: color 0.3s;
}
.nav-link:hover {
    color: #007A7A;
}
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-tab {
    transition: all 0.3s ease;
}
.service-tab.active {
    background-color: #007A7A;
    color: white;
    border-color: #007A7A;
}
.process-step {
    transition: all 0.3s ease;
}
.process-step:hover {
    transform: scale(1.05);
    border-color: #007A7A;
}
.process-line {
    height: 2px;
    background-color: #CBD5E0;
    top: 50%;
    transform: translateY(-50%);
}
