﻿:root {
    /* Company color palette */
    --palette_color_1: #156082;
    --palette_color_2: #A6CAEC;
    --palette_color_3: #F0F0F0;
    --palette_color_4: #595959;
    --palette_color_5: #000000;
    --palette_color_6: #FFFFFF;
}

/* Loader style */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--palette_color_1);
}

.loader-logo {
    width: 120px;
    height: 120px;
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Footer style */
.footer {
    color: var(--palette_color_6);
    background-color: var(--palette_color_4);
}

.footer-rights {
    color: var(--palette_color_4);
    background-color: var(--palette_color_3);
    height: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero section style */
#hero {
    background-image: url('/images/hero-bg-md.svg');
    background-color: var(--palette_color_1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 960px) {
    #hero {
        background-image: url('/images/hero-bg-xs.svg');
    }
}

.hero-normal-text {
    color: var(--palette_color_6);
}

.hero-highlited-text {
    color: var(--palette_color_2);
}

/* Services section style */
#services {
    color: var(--palette_color_1);
    background-image: url('/images/services-bg-md.svg');
    background-color: var(--palette_color_6);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 16px;
}

.services-card {
    border-radius: 30px !important;
    box-shadow: 0 4px 24px 0 var(--palette_color_2), 0 1.5px 6px 0 var(--palette_color_2);
    border: 3px solid var(--palette_color_1);
    transition: box-shadow 0.25s, transform 0.25s;
    padding: 0px 0px;
    min-height: 320px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .services-card:hover {
        box-shadow: 0 8px 32px 0 var(--palette_color_2), 0 3px 12px 0 var(--palette_color_2);
        transform: translateY(-4px) scale(1.02);
        border-color: var(--palette_color_2);
    }

    .services-card .mud-card-header {
        color: var(--palette_color_6);
        background-color: var(--palette_color_1);
        border-top-left-radius: 26px !important;
        border-top-right-radius: 26px !important;
        font-weight: 400;
        font-size: 1.5rem;
        margin-bottom: 0px;
    }

    .services-card .mud-card-content {
        color: var(--palette_color_1);
        background-color: var(--palette_color_6);
        border-bottom-left-radius: 30px !important;
        border-bottom-right-radius: 30px !important;
        font-size: 1rem;
    }

.service-card-list-item {
    color: var(--palette_color_1);
    background-color: var(--palette_color_6);
    list-style-type: none;
    padding-left: 4px;
    padding-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 500;
}

    .service-card-list-item:hover {
        color: var(--palette_color_2);
        background-color: var(--palette_color_6);
        font-size: 1.4rem;
        font-weight: 500;
    }

/*Company section style */
#company {
    color: var(--palette_color_1);
    background-image: url('/images/company-bg-md.svg');
    background-color: var(--palette_color_3);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 120px 16px;
}

/* About Us section style */
#about-us {
    color: var(--palette_color_1);
    min-height: 100px;
    justify-content: center;
    padding: 0px 16px;
}

/* About Us section style */
#contact-us {
    color: var(--palette_color_1);
    min-height: 100px;
    padding: 64px 16px;
}
