@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

.primary-color {
    background-color: #43C2D0;
}

.secondary-color {
    background-color: #D3C6BA;
}

.dark-color {
    background-color: #09161C;
}

.text-primary {
    color: #43C2D0;
}

.text-secondary {
    color: #D3C6BA;
}

.text-dark {
    color: #09161C;
}

.bg-primary {
    background-color: #43C2D0;
}

.bg-secondary {
    background-color: #D3C6BA;
}

.bg-dark {
    background-color: #09161C;
}

.hero-gradient {
    background: linear-gradient(135deg, #09161C 0%, #43C2D0 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

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