@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');


:root {
    --color-blue: #000073;
    /* --color-purple: #A944D2; */
    --color-purple: #943db6;
    --color-bluegrey: #2d3748;
    --color-lightbluegrey: #00007320;
    --sizing-default-rem: 1rem;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    color: var(--color-blue);
}

* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--color-blue);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0rem;
}

button {
    border: none;
    background-color: var(--color-purple);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    margin-top: 1rem;
    display: block;
}

em {
    font-style: normal;
    color: var(--color-purple);
    font-weight: 600;
    display: block;
    margin: 1rem 0;
}

a:hover{
    color: var(--color-purple)
}

.highlight {
    color: var(--color-purple);
    font-weight: 600;
}

section {
    scroll-margin-top: 55px;
}

.section-background {
    background: var(--color-lightbluegrey);
}


.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1rem 2rem 2.5rem;
    overflow: hidden;
}

.container-split-left,
.container-split-right {
    float: left;
    width: 50%
}

.container-split-left {
    float: left;
    padding-right: 1rem;
}

.container-split-right {
    float: right;
    padding-left: 1rem;
}

.multi-column-container {
    column-count: 2;
    column-gap: 3rem;

}

.multi-column-container p,
.multi-column-container li {
    orphans: 20;
    widows: 20;
    break-inside: avoid;
}

header {
    box-shadow: 0 2px 10px 0 rgba(44, 62, 80, 0.08), 0 1.5px 4px 0 rgba(44, 62, 80, 0.06);
    position: sticky;
    top: 0;
    z-index: 10;
    display: block;
    background-color: white;
}


nav {
    margin-top: 1rem 0;
    font-size: 0.9rem;

}

nav .container {
    padding: 5px 2rem;
    display: flex;
    justify-content: end;
    height: 58px;
}


nav #logo {
    margin-top: 0.05rem;
    margin-left: 0.3rem;
    margin-right: auto;
    display: block;
    width: auto;
}

nav #logo img {
    width: 150px;
}

nav ul {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-left: 0;
}

nav a {
    font-weight: 600
}

a {
    text-decoration: none;
    color: var(--color-blue);
}

.nav-toggle {
    display: none;
    color: var(--color-blue)
}

#hero {
    background-color: white;

}

#hero>div {
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('assets/Background\ image\ 1.jpg');
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: 115%;
    overflow: hidden;
    text-align: center;
}

#hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 2rem;
}

#hero h1>span {
    font-weight: 700;
}

#hero .subtitle {
    font-size: 3.875rem;
    color: var(--color-blue);
    margin-top: 0.5rem;
    margin-bottom: 6rem;
    line-height: 4.2rem;
    font-weight: 400;
}

#hero h2 {
    font-size: 1.85rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

#hero p span.highlight {
    font-weight: 400;
}

.tabs-panel {
    display: none;
}

#pillars {
    display: flex;
    gap: 1rem;
    text-align: left;
}

#pillars h3 {
    color: var(--color-purple);
    white-space: pre-wrap;
    margin-top: 0rem
}

#pillars .pane {
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px)
}

#pillars button {
    display: block;
    clear: both;

}

#diff>div:nth-of-type(odd) {
    background: var(--color-lightbluegrey);
}


#diff div.container h2 {
    column-span: all;
}

#diff div.container.img-alternate h2 {
    column-span: unset;
}

#diff div.container p:first-of-type {
    font-weight: 600;
}

#diff div.container p:only-of-type {
    font-weight: 400;
}


div.diff-img {
    border: 2px solid rgb(217, 217, 217);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem;
    float: left;
    text-align: center;
    overflow: hidden;
}

.img-alternate div.diff-img {
    border-color: white;
}

div.diff-img img {
    max-width: 100%;
}

div.diff-img {
    margin-left: 0;
    margin-top: 2rem;
}

.img-alternate div.diff-img {
    margin-right: 0;

    margin-top: 1.5rem;
}

div.three-col {
    display: flex;
    gap: 2rem;
}

div.three-col div {
    flex: 1;
}

div.pane {
    flex: 1;
    background-color: white;
    padding: 1rem 2rem;
    /* border: 1px solid rgb(255, 255, 255); */
    border-radius: 0.5rem;
    box-shadow: 8px 8px 3px 3px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s, transform 0.2s;
}

.pane:hover {
    box-shadow: 0 4px 16px 0 rgba(44, 62, 80, 0.10);
    transform: translateY(-2px);
}


ul {
    contain: content;
    padding-left: 1rem;
}

li {
    padding-left: 0rem;
}


#services {
    text-align: center;
}

#services .three-col .pane h2 {
    text-align: left;
    font-size: 1.1rem;

}

#services li {
    list-style: disc;
    text-align: left;
}

#tailored {
    display: flex;
    text-align: center;
    margin-top: 1rem;
    padding: 1rem 10rem;
    flex-direction: column;
    gap: 0rem;
}

#tailored button {
    display: inline-block;
    /* or just remove display altogether */
    align-self: center;
    /* or center, as desired */
    margin-left: 0;
    /* remove if you want it left-aligned */
    margin-right: 0;
    /* remove if you want it left-aligned */
}

footer h1 {
    margin-top: 1rem;
}

footer h2 {
    margin-bottom: 0.5rem;
    margin-top: 0;
}

footer p {
    margin-top: 0px;
}

#prompt-management h1,
#prompt-management h2,
#prompt-management div.intro {
    column-span: all;
}

#prompt-management h1 {
    line-height: 2.95rem;
    margin-top: 3rem;
}

#prompt-management h2 {
    margin-bottom: 0rem;
}


#prompt-management div.intro {
    column-span: all;
    font-size: 1.05rem;
    color: var(--color-blue)
}

#prompt-management h2+p {
    font-weight: 600;
    margin-top: 0.5rem;
}


#prompt-management li,
#prompt-management ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.hidden {
    display: none !important;
}

@media (max-width: 1024px) {


    #hero h1 {
        font-size: 3rem;
    }

    #hero p.subtitle {
        font-size: 2.8rem;
        line-height: 3.3rem;
    }

    #hero h2 {
        font-size: 1.35rem;
    }

}

@media (max-width: 767px) {

    .container-split-left,
    .container-split-right  {
        width: 100%;
        padding: 0;
    }

    h1 {
        line-height: 3rem ;
        margin-bottom: 1.5rem;
    }

    h2 {
        line-height: 2rem;
    }

    em {
        line-height: 1.35rem;
    }
    #pillars {
        display: none;
    }


    #hero > div {
        background-size: 300%;
    }
    #hero .tabs-panel {
        display: flex;
        flex-direction: column;
        border-radius: 0.5rem;
        box-shadow: 8px 8px 3px 3px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        max-width: 100%;
        background: none;
        margin: 0 auto;
        text-align: left;
    }

    .tabs {
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: space-between;
        background: var(--color-lightbluegrey);
        text-align: left;

    }

    .tabs a {
        font-size: 1.1rem;
        padding: 1rem;
        font-weight: 600;
        /* border-left: 4px solid var(--color-lightbluegrey); */

    }

    .tabs a.active {
        background: #fff;
        color: var(--color-purple);
        font-weight: 600;
        border-left: 4px solid var(--color-purple);
        /* padding-left: 2rem ; */
    }


    .tabs a:not(.active):hover {
        background: #ececec;
        color: var(--color-purple);
    }

    .tab-content {
        flex: 2;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;

    }

    #hero h1 {
        font-size: 2.4rem;
        line-height:3rem;
        margin-bottom: 1rem;

    }

    #hero p.subtitle {
        font-size: 1.8rem;
        line-height: 2.25rem;
        margin-bottom: 2rem;

    }

    #hero h2 {
        font-size: 1.1rem;
        line-height: 1.5rem;
        font-weight: 600;
    }

    #hero .panel {
        display: flex;
        flex-direction: column;
    }


    .multi-column-container {
        column-count: 1;
    }

    div.diff-img {
        padding: 0;
    }

    .container-split-right div.diff-img {
        background-color: white;
    }

    .img-alternate div.diff-img {
        margin: 0
    }

    div.three-col {
        display: unset;
    }

    .pane {
        margin-top: 1rem;
    }

#services h1 {
    text-align: left;
}

    #tailored {

        padding: 1rem;
        margin-top: 1rem;
        gap: 0.2rem;
        text-align: left;
    }

    #tailored p {
        margin-top: 0;
    }

    .tabs {
        flex-direction: column;
    }

    .tabs-content {
        flex: 2;
    }

    .tabs a,
    .tabs-content {
        font-size: 1rem
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        margin-top: 0;
        padding: 0;
    }

    nav ul {
        display: none;
        margin-left: 1.5rem;

    }

    nav ul.open {
        display: flex;
    }

    #about h1 {
        margin-bottom: -2.5rem;
    }

    #about h2:first-of-type {
        margin-top: 3.5rem;
    }
}