@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@4100;00;600;700&display=swap');

/* Fonts */
:root {
    --default-font: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    --nav-font: 'Poppins', sans-serif;
}

/* 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: #ffffff;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #47b2e4;
    /* 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. */
    --background-blue: #3f00ff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #47b2e4;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #47b2e4;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the same color scheme. */

.light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #37517e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/* text animation */
.char {
    display: inline-block;
    /* Make each character a block to animate individually */
    opacity: 0;
    /* Start invisible */
    transform: translateY(50px);
    /* Start lower */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    /* Animation */
}

/* Animation class to trigger */
.char.visible {
    opacity: 1;
    /* Fade in */
    transform: translateY(0);
    /* Move to original position */
}


body {
    overflow-x: hidden;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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

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

h1 {
    /* color: var(--heading-color); */
    font-family: var(--heading-font);
    font-weight: 600;
}

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

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

/* .header {
    margin-top: 72px;
    display: none;
    transition: transform 0.3s ease-in-out, margin-top 0.3s ease-in-out;
} */

.header-hidden {
    transform: translateY(-100%);
    margin-top: -72px !important;
}

/* General Styles */
.header {
    margin-top: 72px;
    padding: 20px 0px 20px 20px;
    display: none;
    transition: transform 0.3s ease-in-out, margin-top 0.3s ease-in-out;
    z-index: 1000;
}

.navbar-nav {
    text-transform: uppercase;
    color: #fff;
}

.nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.09px;
    text-align: right;
    color: #fff;
}

.navbar-toggler {
    border: none;
    outline: none !important;
}

.navbar-toggler .navbar-toggler-icon {
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: block;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -10px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 10px;
}

/* When toggler is collapsed (menu open) */
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.toggler-black .navbar-toggler-icon,
.toggler-black .navbar-toggler-icon::before,
.toggler-black .navbar-toggler-icon::after {
    background-color: black;
}


/* Full-page overlay for mobile menu */
.fullscreen-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.fullscreen-menu.show {
    display: flex;
}

.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullscreen-menu ul li {
    margin: 20px 0;
}

.fullscreen-menu ul li a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.fullscreen-menu ul li a:hover {
    color: #aaa;
}

/* Hide original menu in mobile */
@media (max-width: 992px) {
    .navbar-collapse {
        display: none;
    }

    .arrow-down {
        display: none;
    }

}


#fullpage {
    height: 100vh;
    width: 100vw;
}

section {
    height: 100vh;
    width: 100vw;
}

#what-we-do {
    height: 50vh;
}

#main {
    background: url('../images/home-bg.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

#main+.content {
    display: none;
}

/* @media only screen and (max-width: 768px) and (orientation: landscape) {
    #main {
        background: url('../images/home-bg.png') no-repeat center center/contain;
        background-size: 115%;
        height: 23vh;
        background-color: #161616;
    }

    .main-text {
        margin-top: 0px;
        padding-top: 0px !important;
    }

    .lead {
        margin-bottom: 150px !important;
    }

    .main-text h1 {
        font-size: 28px !important;
    }


    #main+.content {
        display: block;
        background-color: #161616;
        color: white;
        padding: 20px;
        height: 77vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .text-content {
        width: 82px !important;
        font-size: 15px !important;
        margin-right: 10px !important;
    }

    .separator {
        margin: 0px 0px !important;
    }

    .highlight-content {
        font-size: 18px !important;
    }

    #products {
        padding: 110px 0 254px 0px !important;
    }

    .slider-container {
        margin-right: 525px !important;
    }

    .footer-left-bottom {
        display: none !important;
    }

    .footer-right .footer-links {
        float: left !important;
    }

    .footer-right .footer-logo {
        text-align: center;
        margin-top: 157px;
    }

    .footer-logo {
        display: none;
    }

    .footer-bottom p {
        margin: 0;
    }
} */

@media only screen and (max-width: 768px) and (orientation: portrait) {

    .header {
        margin-top: 0;
        padding: 0px 0px 0px 0px;
        height: 50px;
    }

    .navbar-nav {
        justify-content: center;
        align-items: center;
    }

    .navbar {
        padding: .5rem 0rem;
    }

    #main {
        background: url('../images/home-bg-mob.png') no-repeat center center/contain;
        background-size: 115%;
        height: 23vh;
        background-color: #161616;
    }

    .main-text {
        margin-top: 0px;
        padding-top: 0px !important;
    }

    .lead {
        margin: 21px 0px 42px 0 !important;
        margin-bottom: 150px !important;
    }

    .main-text h1 {
        font-size: 28px !important;
    }

    .main-text-desktop {
        display: none;
    }

    #main+.content {
        /* Target the text section after the main */
        background-color: #161616;
        color: white;
        padding: 0px;
        height: 77vh;
        /* Remaining space after background */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .text-content {
        width: 82px !important;
        font-size: 15px !important;
        margin-right: 10px !important;
    }

    .separator {
        margin: 0px 0px !important;
    }

    .highlight-content {
        font-size: 22px !important;
    }

    #what-we-do {
        height: auto;
        padding: 0px 0 !important;
    }

    .service-section {
        display: none;
    }

    #services .img-fluid {
        width: 100px !important;
    }

    .marshall {
        width: 60px;
    }

    #services .col-auto {
        margin: 10px 0px !important;
    }

    #products {
        padding: 0px 0 0 0px !important;
        align-items: center !important;
    }

    .slider-container {
        margin-right: 525px !important;
    }

    .footer-left-bottom {
        display: none !important;
    }

    .footer-right .footer-links {
        float: left !important;
    }

    .footer-right .footer-logo {
        text-align: center;
        margin-top: 157px;
    }

    .footer-logo {
        display: none;
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer {
        padding: 35px 0 0 0px !important;
    }

    .logo_mobile {
        display: block !important;
    }

    .footer-mobile {
        text-align: center;
        display: block !important;
        font-size: 11px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #767676;
        padding-bottom: 20px;
    }


}

.main-text {
    text-align: left;
    padding-top: 250px;
    position: relative;
}

.main-text h1 {
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: normal;
    margin-bottom: 0;
}

.blue-underline-main {
    position: absolute;
    top: calc(70% - 5px);
    left: 355px;
    /* width: calc(12% - 20px); */
    width: 48px;
    height: 3px;
    background-color: #2f4cef;
}

.display-4 {
    font-weight: bold;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.lead {
    /* width: 497px; */
    height: 54px;
    margin: 21px 0px 42px 0;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.71;
    color: #cecece;
}

.get-a-quote {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 300;
    color: var(--contrast-color);
}

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--background-color);
}

.bg-blue {
    background-color: var(--background-blue);
}


#about {
    height: auto;
}

.team-section {
    width: 60%;
}

.text-muted {
    color: #000 !important;
    font-weight: 100;
}

.text-muted strong {
    font-weight: bold;
    font-family: var(--default-font);
}

.text-primary {
    color: #000 !important;
    font-family: var(--default-font);
    font-weight: 100 !important;
}

.separator {
    display: inline-block;
    height: 3.5em;
    border-left: 3px solid #2f4cef;
    margin: 0px 20px;
    vertical-align: middle;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    /* Align content to the left */
    padding: 20px;
    /* Optional: add padding to the container */
}

.text-content {
    display: flex;
    flex-direction: column;
    /* Stack text elements vertically */
    text-align: left;
    line-height: 22px;
    font-size: 20px;
    color: #000;
    font-family: var(--default-font);
    margin-right: 10px;
}

.highlight-content {
    display: flex;
    font-size: 40px;
    color: #000;
    font-family: var(--default-font);
    align-items: center;
}

@media (max-width: 768px) {

    .blue-underline-main {
        position: absolute;
        top: calc(31% - 5px);
        left: 255px;
        width: 30px;
        height: 3px;
        background-color: #2f4cef;
    }
}

#flip {
    height: 60px;
    overflow: hidden;
}

#flip>div>div {
    color: #000;
    padding: 4px 12px;
    height: 45px;
    margin-bottom: 50px;
    display: inline-block;
}

#flip>div>div+span {
    display: inline-block;
    margin-left: -10px;
}

#flip div:first-child {
    animation: show 6s linear infinite;
}

#flip div div {
    background: none;
}

@keyframes show {
    0% {
        margin-top: -270px;
    }

    5% {
        margin-top: -180px;
    }

    33% {
        margin-top: -180px;
    }

    38% {
        margin-top: -90px;
    }

    66% {
        margin-top: -90px;
    }

    71% {
        margin-top: 0px;
    }

    99.99% {
        margin-top: 0px;
    }

    100% {
        margin-top: -270px;
    }
}

.arrow-down {
    position: relative;
    text-align: center;
}

.arrow-down::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
    position: absolute;
    left: 13%;
    transform: translateX(-50%);
}

#what-we-do {
    height: auto;
    padding: 60px 0;
    background-color: #111;
}

.highlight-title {
    font-size: 18px;
    font-family: var(--default-font);
    font-weight: 100;
    /* line-height: 2.56; */
    color: #828282;
}

#what-we-do h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    font-family: var(--default-font);
    margin-bottom: 20px;
}

#what-we-do .service-title {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 600;
    color: #000000;
    font-family: var(--default-font);
}

#what-we-do .service-text {
    margin: 9px 0 0;
    font-family: var(--default-font);
    font-size: 16px;
    line-height: 1.44;
    color: #949494;
    margin-bottom: 10px;
}

#services {
    padding: 60px 0;
    height: auto;
}

#services .col-auto {
    margin: 10px 20px;
}

#services .highlight-title {
    font-size: 18px;
    font-family: var(--default-font);
    font-weight: 100;
    /* line-height: 2.56; */
    color: #ffffff;
}

#services h2 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--default-font);
    margin-bottom: 20px;
}

#services .service-text p {
    font-family: var(--default-font);
    /* margin: 46px 27px 299px 19px; */
    margin: 46px 0px 0px 0px;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.63;
    color: #fff;
}

#services .service-center-text {
    /* margin: 32px 12px 274px 260px; */
    margin-top: 100px;
    margin-bottom: 100px;
}

#services .service-center-text h4 {
    font-size: 32px;
    font-family: var(--default-font);
    font-size: 32px !important;
    line-height: 1.56;
    text-align: center;
    color: #fff;
}

#services .img-fluid {
    max-height: 100px;
    object-fit: contain;
}



#products {
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 0 0 120px;
    background-color: #1f1d1f;
}

#products .container {
    max-width: 100% !important;
    padding-right: 1px !important;
}

.slider-wrapper {
    overflow-x: auto;
    display: flex;
    /* scroll-behavior: smooth; */
    width: 100%;
    height: 100%;
}

.slider-container {
    display: grid;
    grid-template-areas:
        "left-top right"
        "left-bottom right";
    grid-gap: 8px;
    width: 100%;
    margin: 0 auto;
    margin-right: 10px;
}

.slider-wrapper::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.slider-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.left-top,
.left-bottom,
.right {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
}

.left-top {
    grid-area: left-top;
    width: 100%;
    max-width: 245px;
    height: 273px;

}

.left-bottom {
    grid-area: left-bottom;
    width: 100%;
    max-width: 245px;
    height: 273px;
}

.right {
    grid-area: right;
    width: 100%;
    max-width: 636px;
    height: 554px;
}

.section img {
    height: auto;
    object-fit: cover;
}

.footer {
    background-color: #000;
    color: #aeaeae;
    padding: 131px 0 0 0px;
    font-family: var(--default-font);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-left,
.footer-middle,
.footer-right {
    /* flex: 1; */
    min-width: 200px;
    margin: 10px 0;
}

.footer-left p,
.footer-left a {
    margin: 5px 0;
    color: #aeaeae;
    font-size: 20px;
    min-width: 60%;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
}

.footer-left a {
    font-size: 20px;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 40px;
}

.footer-left a:hover {
    text-decoration: underline;
}

.footer-middle .footer-address {
    float: right;
}

.footer-right .footer-links {
    list-style: none;
    padding: 0;
    margin-right: 70px;
    float: right;
}

.footer-right .footer-links li {
    margin: 5px 0;
}

.footer-right .footer-links li a {
    color: #aeaeae;
    text-decoration: none;
}

.footer-right .footer-links li a:hover {
    text-decoration: underline;
}

.footer-right .footer-logo {
    text-align: center;
    margin-top: 157px;
}

.footer-right .footer-logo img {
    max-width: 150px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-left-bottom {
    display: flex;
    align-items: center;
    gap: 80px;
}

.footer-bottom p {
    margin: 0;
}

.blue-underline {
    width: 50px;
    height: 2px;
    background-color: #2f4cef;
    margin-top: 24px;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.footer-bottom-links li {
    margin: 0;
}

.footer-bottom-links li a {
    color: #b0b0b0;
    text-decoration: none;
}

.footer-bottom-links li a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    color: #b0b0b0;
    gap: 20px;
}

.logo_mobile {
    display: none;
}

.footer-mobile {
    display: none;
}