@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 {
    height: 100svh;

    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: 60em;
    text-align: center;
    padding: 0em 2em;

    position: relative;
    z-index: 2;
}
.HeroSection .Subtitle {
    background: linear-gradient(to top, #1fb8ff, #9fe1ff);
    -webkit-background-clip: text;
    font: 600 1.6em Calibri;
    background-clip: text;
    margin-bottom: 0.3em;
    color: transparent;
}
.HeroSection .Title {
    font: 800 3em Calibri;
    line-height: 1.2;
}
.HeroSection .Description {
    margin: 2.5em 0em;
    font-size: 1.15em;
    opacity: 0.9;
}
.HeroSection .Buttons {
    display: flex; gap: 1.5em;
    justify-content: center;
}
.HeroSection .Buttons a {
    padding: 0.6em 1.5em;
    border-radius: 0.5em;
    text-decoration: none;
    font: 700 1.1em Poppins;
    text-transform: uppercase;
    transition: all 0.3s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.HeroSection .Primary {
    background-color: #0ea5e9;
    color: #fff;
}
.HeroSection .Primary:hover {
    background-color: #0091da;
}
.HeroSection .Secondary {
    background-color: #fff;
    color: #000;
}
.HeroSection .Secondary:hover {
    background-color: #dfdfdf;
}

.FeaturesSection {
    padding: 4em 1em;
    background-color: #e4eaf0;
}
.FeaturesSection .Header {
    max-width: 50em;
    margin: 0em auto 4em;
    text-align: center;
}
.FeaturesSection .Header .Title {
    font: 700 3em Montserrat;
    margin-top: 0.2em;
}
.FeaturesSection .Subtitle {
    font-size: 1.2em;
}
.FeaturesSection .Body {
    max-width: 75em;
    margin: 0em auto;
    text-align: justify;
    text-align-last: center;

    display: flex; gap: 3.5em;
    justify-content: center;
    flex-wrap: wrap;
}
.FeaturesSection .CardBackground {
    padding: 1.75em;
    max-width: 22.5em;
    border-radius: 0.5em;
    background-color: #fff;
    box-shadow: 0em 0em 0.75em 0.25em rgba(0, 0, 0, 0.2);

    display: flex; gap: 0.75em;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.FeaturesSection .Body .Title {
    font: 700 1.3em Poppins;
    text-align: center;
}
.FeaturesSection .Summary, .FeaturesSection .Details {
    font: 500 1.1em Calibri;
}
.FeaturesSection img {
    width: 100%;
    border-radius: 0.75em;
}

.TestimonialsSection {
    padding: 4em 1em;
    background-color: #d0d5da;
}
.TestimonialsSection .Content {
    max-width: 75em;
    margin: 0em auto;

    display: flex; gap: 3.5em;
    justify-content: center;
    flex-wrap: wrap;
}
.TestimonialsSection .CardBackground {
    padding: 1.5em;
    max-width: 22.5em;
    border-radius: 0.5em;
    background-color: #fff;
    box-shadow: 0em 0em 0.75em 0.25em rgba(0, 0, 0, 0.2);

    display: flex; gap: 0.75em;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}
.TestimonialsSection .Message {
    font: italic 500 1.1em Calibri;
    margin-bottom: 1.25em;
    text-align: center;
    color: #111827;
}
.TestimonialsSection .Seperator {
    border-top: 0.15em dashed #9e9e9e;
}
.TestimonialsSection .Author {
    margin-top: 1em;

    display: flex;
    align-items: center;
}
.TestimonialsSection .Author img {
    border-radius: 50%;
    margin-right: 0.75em;
    width: 2.75em; height: 2.75em;
    background-color: rgba(3, 0, 100, 0.4);
}
.TestimonialsSection .Name {
    font: 600 0.9em Sarala;
}
.TestimonialsSection .Position {
    font: 500 0.9em Calibri;
    color: #6b7280;
}

.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.75) {
    .FeaturesSection .Body, .TestimonialsSection .Content {
        gap: 2em;
    }
}

@media screen and (max-aspect-ratio: 1.125) {
    .FeaturesSection .CardBackground, .TestimonialsSection .CardBackground {
        max-width: 30em;
    }

    .ChatWindow .WindowContainer {
        max-width: unset; max-height: unset;
        width: 95vw; height: 80vh;
    }
}

@media screen and (max-aspect-ratio: 0.6) {
    body {
        font-size: 3vmin;
    }

    .HeroSection .Title {
        font-size: 3em;
    }
    .HeroSection .Subtitle {
        font: 600 1.5em Calibri;
    }
		
	.Footer .Content {
		padding: 1.5em 0.75em;
	}
}