@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sarala:wght@400;700&display=swap');

@keyframes MessagePopup {
    0%, 60% {
        opacity: 0;
        transform: translateX(2em);
    }
    61.5% {
        opacity: 1;
        transform: translateX(-1em);
    }
    62%, 96% {
        opacity: 1;
        transform: translateX(0em);
    }
    100% {
        opacity: 0;
        transform: translateX(1em);
    }
}


/* Miscellaneous Classes */
html {
    scrollbar-width: none;
}
* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Calibri, sans-serif;
}
::-webkit-scrollbar {
    width: 0em; display: none;
}
body {
    background-color: #d4d4d4;
    font-family: Claibri, Tahoma, Geneva, Verdana, sans-serif;
    font-size: min(2.25vmin, 18px);
}

/* Main Container */
.MainContainer {
    width: 100svw; height: 100svh;
    overflow: scroll;
}
.MainContainer.NoSccroll {
    overflow: hidden;
}

.NavContainer {
    width: 100%;

    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 20;
}
.NavBar {
    width: 100%; max-width: 75em;
    background-color: #000c;
    margin: 1.2em 0.5em 0em;
    padding: 0.6em 1.25em;
    border-radius: 0.6em;
    opacity: 0.95;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.NavBar .LOGO {
    height: 2.5em; width: auto;
}
.NavBar .Links a {
    color: #fff;
    margin-left: 2em;
    text-decoration: none;
    font: 700 1em Montserrat;
    transition: all 0.2s ease;
    text-transform: uppercase;

    display: inline-block;
}
.NavBar .Links a:hover {
    color: #38bdf8;
    transform: scale(1.05);
}

.HeroSection {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.HeroSection .ImageOverlay {
    background-image: linear-gradient(to bottom, #0f0070, #0700db);
    opacity: 0.75;

    position: absolute;
    inset: 0; z-index: 1;
}
.HeroSection .HeroBackground {
    background: url('Images/HeroBackground_SMALL.webp') center / cover no-repeat;

    position: absolute;
    inset: 0;
}
.HeroSection .HeroBackground img {
    width: 100%; height: 100%;
    object-position: center;
    object-fit: cover;
    opacity: 0;
}
.HeroSection .Content {
    color: #fff;
    max-width: 75em;
    text-align: center;
    padding: 0em 1.2em;

    position: relative;
    z-index: 2;
}
.HeroSection .Title {
    font: 700 3.75em Montserrat;
    text-transform: uppercase;
    margin: 1.75em 0em 0.25em;
}
.HeroSection .Description {
    font: 500 1.2em Calibri;
    color: rgba(255, 255, 255, 0.95);
}
.HeroSection .Statistics {
    margin: 2.75em 0em;
    white-space: nowrap;

    display: grid; gap: 2em;
    grid-template-columns: repeat(4, 1fr);
}
.HeroSection .Value {
    font: 600 1.25em Poppins;
}
.HeroSection .Label {
    font: 700 0.9em Montserrat;
    text-transform: uppercase;
}

.OverviewSection {
    background-color: #fff;
    text-align: center;
    padding: 4em 2em;
}
.OverviewSection .ContentWrapper {
    max-width: 70em;
    margin: 0em auto;
}
.OverviewSection .Subtitle {
    color: #0700db;
    font: 600 1.2em Calibri;
    margin-bottom: 0.5em;
}
.OverviewSection .Title {
    font: 700 2em Montserrat;
    margin-bottom: 48px;
    padding: 0em 1em;
}
.OverviewSection .Content {
    padding-top: 1.5em;
    border-top: 0.1em solid rgba(0, 0, 0, 0.5);

    display: flex; gap: 2em;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.OverviewSection .Item {
    width: clamp(12.5em, 100%, 20em);

    display: flex; gap: 1.5em;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.OverviewSection .Item i {
    color: #0700db;
    font-size: 2em;
    margin-right: 12px;
}
.OverviewSection .Item .Description {
    font: 500 1.2em Calibri;
    text-align: justify;
    text-align-last: center;
}

.EpsonSection {
    background-color: #edf0ff;
    padding: 4em 2em;
}
.EpsonSection .ContentWrapper {
    max-width: 70em;
    margin: 0em auto;

    display: flex; gap: 3.5em;
    justify-content: center;
}
.EpsonSection .ImageContainer {
    flex: 1 1 100%; max-width: 25em;
    padding: 1em 1.5em 2em;
    box-shadow: 0em 0em 0.75em 0.25em rgba(0, 0, 0, 0.4);
    border-radius: 0.75em;

    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    overflow: hidden;
}
.EpsonSection .ImageOverlay {
    opacity: 0.3;
    background-color: #000;

    position: absolute;
    inset: 0; z-index: 1;
}
.EpsonSection img {
    width: 100%; height: 100%;
    object-position: center;
    object-fit: cover;

    position: absolute;
    inset: 0;
}
.EpsonSection .Quote {
    color: #fff;

    position: relative;
    z-index: 2;
}
.EpsonSection .Quote blockquote {
    font: 700 1.18em Sarala;
    text-align: justify;
}
.EpsonSection .Quote figcaption {
    margin-top: 1em; font-size: 1em;
    text-indent: 1em; opacity: 0.75;
}
.EpsonSection .Content {
    padding: 1em 0em;
}
.EpsonSection .Subtitle {
    font: 600 1.2em Calibri;
    margin-bottom: 0.25em;
    color: #3b82f6;
}
.EpsonSection .Title {
    font: 700 2em Montserrat;
    line-height: 1.4;
    text-align: left;
}
.EpsonSection .Services {
    padding: 1.5em 0em;
}
.EpsonSection .Services div {
    font-size: 1.2em;
    margin-bottom: 1em;
    text-align: justify;
}
.EpsonSection .Statistics {
    border-top: 0.1em solid rgba(0, 0, 0, 0.1);
    padding-top: 1.2em;

    display: flex; gap: 2em 4em;
    align-items: center;
    flex-wrap: wrap;
}
.EpsonSection .Item {
    min-width: 12.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.EpsonSection .Label {
    font: 600 1.1em Calibri;
    text-transform: uppercase;
    white-space: nowrap;
    color: #555;
}
.EpsonSection .Value {
    margin-top: 0.25em;
    font: 700 1.5em Poppins;
}
.EpsonSection .LearnMore {
    margin-top: 1.5em;
    font: 700 1.25em Poppins;
    text-transform: uppercase;
    white-space: nowrap;
    color: #0700db;

    display: inline-flex; gap: 0.5em;
    align-items: center;
}
.EpsonSection .LearnMore:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.2em;
}

.PartnersSection {
    background-color: #fff;
    padding: 4em 2em;
}
.PartnersSection .Content {
    max-width: 50em; margin: 0 auto;
    text-align: center;
}
.PartnersSection .Title {
    font: 700 2em Montserrat;
    margin-bottom: 0.5em;
    line-height: 1.4;
}
.PartnersSection .Description {
    font: 500 1.2em Calibri;
    text-align: justify;
    text-align-last: center;
}
.PartnersSection .LOGOs {
    margin: 2.5em 0em;

    display: flex; gap: 5em;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}
.PartnersSection .LOGOs img {
    height: 4em; width: auto;
}
.PartnersSection .CTA_Buttons {
    display: flex; gap: 2em;
    justify-content: center;
}
.PartnersSection .CTA_Buttons .LearnMore {
    color: #fff;
    padding: 0.3em 1em;
    border-radius: 0.5em;
    font: 600 1.1em Poppins;
    background-color: #006fee;
    transition: all 0.3s ease-out;
}
.PartnersSection .CTA_Buttons .LearnMore:hover {
    background-color: #0066db;
}
.PartnersSection .CTA_Buttons .ContactUs {
    color: #000;
    font: 700 1.2em Poppins;
    transition: all 0.3s ease-out;

    display: inline-flex;
    align-items: center;
}
.PartnersSection .CTA_Buttons .ContactUs:hover {
    color: #0700db;
}
.PartnersSection .CTA_Buttons .ContactUs i {
    transition: all 0.3s ease-out;
    margin: 0.05em 0em 0em 0.25em;
}
.PartnersSection .CTA_Buttons .ContactUs:hover i {
    transform: translateX(0.2em);
}

.UserReviews {
    background-color: #edf0ff;
    padding: 4em 2em;
}
.UserReviews .Display {
    max-width: 70em;
    margin: 0em auto;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
}
.UserReviews .Subtitle {
    font: 600 1.2em Calibri;
    margin-bottom: 0.25em;
    color: #3b82f6;
}
.UserReviews .Title {
    font: 700 2.25em Montserrat;
    line-height: 1.4;
}
.UserReviews .Reviews {
    margin-top: 3em;

    display: flex; gap: 2em 3em;
    justify-content: center;
    flex-wrap: wrap;
}
.UserReviews .CardBackground {
    box-shadow: 0em 0.3em 0.25em rgba(0, 0, 0, 0.3);
    background-color: #fff;
    text-align-last: center;
    padding: 1.5em 1.75em;
    border-radius: 0.75em;
    max-width: 22.5em;
}
.UserReviews .CardBackground blockquote {
    font: italic 500 1.2em Calibri;
    margin-bottom: 1.2em;
    text-align: center;
}
.UserReviews .Author {
    margin-top: 1.5em;
    font: 500 1em Sarala;

    display: flex;
    align-items: center;
}

.ContactSection {
    background-color: #fff;
    padding: 4em 2em;
}
.ContactSection .Content {
    max-width: 75em;
    margin: 0em auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.ContactSection .Subtitle {
    text-transform: uppercase;
    font: 600 1.2em Calibri;
    margin-bottom: 0.25em;
    color: #3b82f6;
}
.ContactSection .Title {
    font: 700 2em Montserrat;
    text-align: center;
    margin-bottom: 1em;
    line-height: 1.4;
}
.ContactSection .Description {
    max-width: 50em;
    font: 500 1.2em Calibri;
    margin-left: 0.75em;
    text-align: center;
}
.ContactSection .Options {
    padding: 2.5em 0em;

    display: flex; gap: 3em 4em;
    justify-content: center;
    flex-wrap: wrap;
}
.ContactSection .Options .Option {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ContactSection .Options .Option i {
    font-size: 2em; color: #0700db; 
}
.ContactSection .Options .Option strong {
    margin-top: 1em;
    font: 700 1.25em Poppins;
    text-transform: uppercase;
    text-align: center;
}
.ContactSection .Options .Option div {
    max-width: 20em;
    margin-top: 0.5em;
    font: 500 1.1em Calibri;
    text-align: center;
}
.ContactSection .DiscoverMore {
    padding: 0.5em 1em;
    border-radius: 0.75em;
    font: 700 1em Poppins;
    text-transform: uppercase;
    background-color: #3b82f6;
    box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    white-space: nowrap;
    color: #fff;
}
.ContactSection .DiscoverMore:hover {
    background-color: #0060d4;
}

.Footer {
    background: linear-gradient(to bottom, #0700db, #030064);
    color: #fff;
}
.Footer .Content {
    padding: 1.5em;
    max-width: 75em;
    margin: 0em auto;
    text-align: center;
}
.Footer .CompanyName {
    font: 700 2.5em Montserrat;
    text-transform: uppercase;
    padding: 0.25em 0em;
}
.Footer .ContactInfo div {
    font-size: 1.1em;
    margin-bottom: 0.9em;
}
.Footer .QuickLinks {
    margin-top: 3.5em;
	padding: 0em 1em;

    display: flex; gap: 1em 2em;
    justify-content: center;
    flex-wrap: wrap;
}
.Footer .QuickLinks a {
    color: #fff;
    text-decoration: none;
    font: 700 1em Poppins;
    text-transform: uppercase;
    transition: all 0.2s ease;

    display: inline-block;
}
.Footer .QuickLinks a:hover {
    transform: scale(1.1);
}
.Footer .Copyright {
    background-color: #03014d;
    text-transform: uppercase;
    font: 600 0.9em Sarala;
    text-align: center;
    text-wrap: wrap;
    padding: 0.4em;
}

.ChatBot {
    margin: 0em 1em 1em 0em;

    position: fixed;
    bottom: 0; right: 0;
    z-index: 100;
}
.ChatBot .IconContainer {
    width: 4em; height: 4em;
    border-radius: 50%;
    box-shadow: 0em 0.3em 0.5em rgba(0, 0, 0, 0.4);
    cursor: pointer;

    overflow: clip;
}
.ChatBot .IconContainer img {
    width: 100%; height: 100%;
    object-position: center;
    object-fit: cover;
}
.ChatBot .IconContainer .Close {
    background-color: #000;
    transition: all 0.3s ease-out;
    border-radius: 50%;
    opacity: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    inset: 0; z-index: 1;
}
.ChatBot .IconContainer.Active .Close {
    opacity: 0.85;
}
.ChatBot .Close i {
    color: #fff; font-size: 1.5em;
}
.ChatBot .Message {
    width: 13em; padding: 0.5em 1em;
    transform-origin: calc(100% + 3.25em) 50%;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(2em);
    font: 700 1em Poppins;
    border-radius: 0.5em;
    color: #fff;
    opacity: 0;

    position: absolute;
    top: 50%; right: 100%;
    translate: -1.25em -50%;
}
.ChatBot .Message.Animate {
    animation: MessagePopup 20s linear infinite;
}
.ChatBot .Message::after {
    content: '';
    border-width: 0.75em;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);

    position: absolute;
    top: 50%; left: 100%;
    translate: -1px -50%;
}
.ChatWindow {
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%; left: 50%;
    translate: -50% -50%;
    z-index: 99;
}
.ChatWindow .WindowContainer {
    max-width: 40em; width: 100%;
    max-height: 40em; height: 100%;
    box-shadow: 0em 0.5em 0.5em rgba(0, 0, 0, 0.4);
    border-radius: 0.75em;

    overflow: hidden;
}
.ChatWindow .Display {
    height: calc(100% + 40px);
}
.ChatWindow .Display iframe {
    width: 100%; height: 100%;
}


@media screen and (max-aspect-ratio: 1.45) {
    .EpsonSection .ImageContainer {
        display: none;
    }
    .EpsonSection .Content {
        text-align: center;
    }
    .EpsonSection .Title {
        text-align: center;
    }
    .EpsonSection .Services div {
        margin: auto;
        max-width: 30em;
        margin-bottom: 1em;
        text-align-last: center;
    }
    .EpsonSection .Statistics {
        justify-content: center;
    }
}

@media screen and (max-aspect-ratio: 1.25) {
    .HeroSection .Statistics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-aspect-ratio: 1.175) {
    .UserReviews .Reviews {
        gap: 1em;
    }
}

@media screen and (max-aspect-ratio: 1.125) {
    .UserReviews .Reviews {
        gap: 2em;
    }
    .UserReviews .CardBackground {
        max-width: 80%;
    }

    .ChatWindow .WindowContainer {
        max-width: unset; max-height: unset;
        width: 95vw; height: 80vh;
    }
}

@media screen and (max-aspect-ratio: 0.6) {
    body {
        font-size: 3vmin;
    }

	.Footer .Content {
		padding: 1.5em 0.75em;
	}
}