﻿body {
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4e95e4; /*79000c*/ /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.light-background {
    --background-color: #f4f6f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #0d83fd;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #409dfd;
    --contrast-color: #ffffff;
}

.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-4, .gx-4 {
    --bs-gutter-x: 1.5rem;
}

.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
    opacity: .20 !important;
    width: 2% !important;
}
.carousel-item {
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .section-title h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

    .section-title p {
        margin-bottom: 0;
    }


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    /*background:rgb(255, 255, 255);*/
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .services .service-card:hover {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    }

    .services .service-card:hover .icon {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

    .services .service-card:hover .read-more {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
    }

    .services .service-card .icon {
        width: 60px;
        height: 60px;
        margin-right: 30px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        /*color: var(--accent-color);*/
        color: #4e95e4; /*79000c*/
        font-size: 28px;
        transition: all 0.3s ease;
        line-height: 1;
    }

    .services .service-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .services .service-card p {
        margin-bottom: 25px;
        color: color-mix(in srgb, var(--default-color), transparent 25%);
        font-size: 18px;
        line-height: 1.6;
    }

    .services .service-card .read-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--accent-color);
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .services .service-card .read-more i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .services .service-card .read-more:hover i {
        transform: translateX(5px);
    }

    .section-title h2:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
