:root {
    --primary-color: #1a2b49;
    /* Dark Blue from CMT profile */
    --secondary-color: #f58220;
    /* Orange from CMT profile */
    --light-bg: #f8f9fa;
    --text-color: #333;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary-color) !important;
}

.navbar-brand,
.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-logo {
    max-height: 40px;
    width: auto;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #e67610;
    border-color: #e67610;
}

.section-padding {
    padding: 80px 0;
}

.bg-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
}

.text-orange {
    color: var(--secondary-color);
}

.footer {
    background-color: #111;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

/* Glassmorphism for hero overlays if needed */
.glass-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 2rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Clients Section */
.client-logo-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition-speed);
}

.client-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo {
    max-height: 60px;
    width: auto;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    /* transition: var(--transition-speed); */
}

.client-logo-wrapper:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}