@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: 60em;
    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.1em Calibri;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5em;
}

.AboutSection {
    background-color: #fff;
    padding: 4em 2em;
}
.AboutSection .ContentWrapper {
    max-width: 70em;
    margin: 0em auto;

    display: flex; gap: 3.5em;
    justify-content: center;
}
.AboutSection .ImageContainer {
    flex: 1 1 100%; max-width: 27em;
    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;
}
.AboutSection .ImageOverlay {
    opacity: 0.3;
    background-color: #000;

    position: absolute;
    inset: 0; z-index: 1;
}
.AboutSection img {
    width: 100%; height: 100%;
    object-position: center;
    object-fit: cover;

    position: absolute;
    inset: 0;
}
.AboutSection .Quote {
    color: #fff;

    position: relative;
    z-index: 2;
}
.AboutSection .Quote blockquote {
    font: 700 1.18em Sarala;
    text-align: justify;
}
.AboutSection .Quote figcaption {
    margin-top: 1em; font-size: 1em;
    text-indent: 1em; opacity: 0.75;
}
.AboutSection .Content {
    padding: 1em 0em;
}
.AboutSection .Subtitle {
    font: 600 1.1em Calibri;
    margin-bottom: 0.25em;
    color: #3b82f6;
}
.AboutSection .Title {
    font: 700 2em Montserrat;
    line-height: 1.4;
    text-align: left;
}
.AboutSection .About {
    padding: 1.5em 0em;
}
.AboutSection .About div {
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: justify;
}
.AboutSection .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;
}
.AboutSection .Item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.AboutSection .Label {
    font: 600 1em Calibri;
    text-transform: uppercase;
    white-space: nowrap;
    color: #555;
}
.AboutSection .Value {
    margin-top: 0.25em;
    font: 700 1.5em Poppins;
}
.AboutSection .Link {
    margin-top: 1.5em;
    padding: 0.5em 1em;
    border-radius: 0.75em;
    background-color: #3b82f6;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    color: #fff;

    display: inline-flex; gap: 1em;
    align-items: center;
}
.AboutSection .Link:hover {
    background-color: #0056be;
}
.AboutSection .Link span {
    font: 600 1em Poppins;
}
.AboutSection .Link svg {
    height: 1.3em; width: auto;
    margin-top: 0.05em;
}

.LocationSection {
    padding: 5em 3em;
    background-color: #fff;

    position: relative;
}
.LocationSection .BackgroundImage {
    background: url('Images/Map_SMALL.webp') center / cover no-repeat;

    position: absolute;
    inset: 0;
}
.LocationSection .BackgroundImage img {
    width: 100%; height: 100%;
    object-position: center;
    object-fit: cover;
    opacity: 0;
}
.LocationSection .Content {
    width: fit-content;
    background-color: #fff;
    backdrop-filter: blur(1em);
    box-shadow: 0em 0.3em 0.25em 0.1em rgba(0, 0, 0, 0.3);
    border-radius: 0.75em;
    padding: 2em 2.5em;
}
.LocationSection .Title {
    font: 700 2.25em Poppins;
    margin-bottom: 0.75em;
    line-height: 1;
}
.LocationSection .Description {
    font: 500 1.1em Calibri;
    margin-left: 0.75em;
}
.LocationSection .Locations {
    color: #3b82f6;
    font: 500 1.1em Poppins;
    margin: 0.5em 0em 0em 0.75em;

    display: flex; gap: 0.5em;
    align-items: center;
}
.LocationSection .Locations svg {
    height: 1.25em;
}

.FeaturesSection {
    background-color: #f5f7ff;
    padding: 4em 2em;
}
.FeaturesSection .ContentWrapper {
    max-width: 70em;
    margin: 0em auto;
}
.FeaturesSection .Header {
    max-width: 47.5em;
    text-align: center;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.FeaturesSection .Header .Title {
    text-transform: uppercase;
    font: 700 3em Montserrat;
}
.FeaturesSection .Header .Subtitle {
    text-transform: uppercase;
    font: 600 1.25em Calibri;
}
.FeaturesSection .Header .Description {
    font: 500 1.1em Calibri;
    margin-top: 1.5em;
    line-height: 1.5;
    color: #555;
}
.FeaturesSection .Display {
    margin-top: 5em;

    display: grid; gap: 2.5em;
    grid-template-columns: 6fr minmax(23em, 5fr);
}
.FeaturesSection .Content {
    text-align: justify;

    display: flex; gap: 2.5em;
    flex-direction: column;
    justify-content: space-around;
}
.FeaturesSection .Content .Item {
    display: flex; gap: 1.2em;
    align-items: center;
}
.FeaturesSection .Content .Item svg {
    height: auto;
    width: 1.75em; min-width: 1.75em;
    color: #3b82f6;
}
.FeaturesSection .Content .Label {
    font: 600 1.1em Calibri;
}
.FeaturesSection .UserComment {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: stretch;
}
.FeaturesSection .CommentContainer {
    border-left: 0.1em solid rgba(0, 0, 0, 0.5);
    padding-left: 2em;
}
.FeaturesSection .Comment {
    font: 600 1em Poppins;
    text-align: justify;
}
.FeaturesSection .Caption {
    margin-top: 1.75em;
    padding-left: 1em;
    font: 700 1em Sarala;
    text-transform: uppercase;

    display: flex; gap: 0.75em;
    align-items: center;
}

.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.5) {
    .AboutSection .ContentWrapper {
        max-width: 40em;
    }
    .AboutSection .ImageContainer {
        display: none;
    }
    .AboutSection .Content {
        text-align: center;
    }
    .AboutSection .Title {
        text-align: center;
    }
    .AboutSection .About div {
        text-align-last: center;
    }
    .AboutSection .Statistics {
        justify-content: center;
    }

    .LocationSection .Content {
        margin: auto;
    }
}

@media screen and (max-aspect-ratio: 1.125) {
    .LocationSection .Title {
        text-align: center;
    }
    .LocationSection .Description {
        margin: unset;
        text-align: justify;
        text-align-last: center;
    }
    .LocationSection .Locations {
        justify-content: center;
    }
    .LocationSection .Locations svg {
        display: none;
    }

    .FeaturesSection .Display {
        display: block;
    }
    .FeaturesSection .Content .Item {
        flex-direction: column;
        gap: 0.75em;
    }
    .FeaturesSection .Content .Item svg {
        height: 2em; width: auto;
        max-width: unset;
    }
    .FeaturesSection .Content .Label {
        display: block;
        text-align: center;
    }
    .FeaturesSection .Content .Value {
        text-align: center;
    }
    .FeaturesSection .UserComment {
        display: none;
    }

    .ChatWindow .WindowContainer {
        max-width: unset; max-height: unset;
        width: 95vw; height: 80vh;
    }
}

@media screen and (max-aspect-ratio: 0.6) {
    body {
        font-size: 3vmin;
    }

    .LocationSection {
        padding: 3em 1.5em;
    }
		
	.Footer .Content {
		padding: 1.5em 0.75em;
	}
}
