
:root {
    --primary: #0F3C5F;
    --secondary: #2A7B9B;
    --accent: #E85C41;
    --light-accent: #F8CB4E;
    --background-light: #F5F7FA;
    --background-dark: #1A2A36;
    --text-primary: #1A2A36;
    --text-secondary: #546A7B;
    --text-light: #FFFFFF;
    --border: #D1DCE6;
}


.font-karla {
    font-family: 'Karla', sans-serif;
}

.font-spectral {
    font-family: 'Spectral', serif;
}


.text-primary {
    color: var(--text-primary);
}

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

.text-accent {
    color: var(--accent);
}


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

.bg-secondary {
    background-color: var(--secondary);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-background-light {
    background-color: var(--background-light);
}

.bg-background-dark {
    background-color: var(--background-dark);
}


.iti {
    width: 100%;
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


.portfolio-filter.active {
    background-color: var(--accent);
    color: white;
}


.toggle-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 48px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-checkbox:checked {
    background-color: var(--accent);
}

.toggle-checkbox:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.toggle-checkbox:checked:before {
    transform: translateX(24px);
}

.toggle-checkbox:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


html {
    scroll-behavior: smooth;
}


@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}


.faq-toggle .fa-plus {
    transition: transform 0.3s ease;
}

.faq-toggle.active .fa-plus {
    transform: rotate(45deg);
}


.dashboard-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.data-widget {
    position: relative;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.data-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.data-widget-title {
    font-weight: 600;
    color: var(--text-primary);
}

.data-widget-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.overlap-section {
    position: relative;
    z-index: 1;
}

.overlap-layer {
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.layer-card {
    position: relative;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
}

.layer-card-alt {
    transform: rotate(2deg);
}

.peeking-image {
    position: absolute;
    z-index: 3;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.peeking-top-right {
    top: -40px;
    right: -40px;
}

.peeking-bottom-left {
    bottom: -40px;
    left: -40px;
}


.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}