/*--------------------------------------------------------------
# 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: #444444;    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #124265;    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #2487ce;     /* 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. */
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0ms !important;
    }
}


/*--------------------------------------------------------------
# Main Section
--------------------------------------------------------------*/
.main {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.main:before {
    content: '';
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.main img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.main .container {
    position: relative;
    z-index: 3;
}

.main h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
}

.main p {
    margin: 10px 0 0 0;
    font-size: 22px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
    .main h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .main p {
        font-size: 18px;
        line-height: 24px;
    }
}

.main .icon-box {
    background-color: var(--surface-color);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.main .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.main .icon-box .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.main .icon-box .description {
    font-size: 15px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.main .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: var(--accent-color);
}

@media (min-width: 640px) {
    .main .icon-box:hover {
        transform: scale(1.05);
    }

    .main .icon-box:hover .title a {
        color: var(--accent-color);
    }
}
