:root {
    --default-color: #444444;
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --accent-color: #007bff;
    --contrast-color: rgb(255, 255, 255);
    --surface-color: rgb(255, 255, 255);
}

:root {
    --background-color: rgb(255, 255, 255);
}

:root {
    --heading-color: rgb(255, 255, 255);
    --heading-font: "Raleway",  sans-serif;
}

:root {
    --newsletter-background: rgba(255, 255, 255);
    --newsletter-color: #444444;
    --newsletter-border-color: rgba(255, 255, 255);
}

:root {
    --header-color: #444444;
    --header-background-color: rgb(0, 9, 47);
}

:root {
    --footer-color: rgb(255, 255, 255);
    --footer-background-color: rgb(249, 115, 5);
    
    --footer-logo-max-height: 40px;
    --footer-logo-margin-right: 6px;
}

:root {
    --subscription-background: rgb(255, 255, 255);
    --subscription-color: #444444;

    --subscription-error-background: #df1529;
    --subscription-error-color: rgb(255, 255, 255);

    --subscription-success-background: #059652;
    --subscription-success-color: rgb(255, 255, 255);
}

:root {
    --about-title-color: rgb(0, 9, 47);
}

:root {
    --our-missions-color: rgb(255, 255, 255);
    --our-missions-background: rgb(249, 115, 5);
}

:root {
    --it-solutions-color: rgb(255, 255, 255);
    --it-solutions-background: rgb(21, 178, 214);
}

:root {
    --it-infrastructure-color: rgb(255, 255, 255);
}

:root {
    --advanced-cctv-solutions-color: rgb(255, 255, 255);
}

:root {
    --services-title-color: rgb(249, 115, 5);
    --services-heading-color: rgb(0, 0, 0, 0.3);
    --services-title-sm-color: rgb(21, 178, 214);
}

:root {
    --nav-color: rgb(255, 255, 255);
    --nav-hover-color: rgb(21, 178, 214);
    --nav-active-color: rgb(249, 115, 5);
    --nav-font: "Poppins",  sans-serif;
    --nav-font-size: 16px;
    --nav-font-weight: 400;

    --nav-dropdown-bg-color: rgb(255, 255, 255);
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #007bff;

    --nav-mobile-bg-color: rgb(255, 255, 255);
}

:root {
    --logo-max-width: 56px;
    --logo-margin-right: 8px;
}

:root {
    --empowering-color: rgb(255, 255, 255);
    --empowering-em-color: rgb(249, 115, 5);
}

:root {
    --section-color: #444444;
    --section-background: rgb(255, 255, 255);
    --section-title-color: rgb(0, 9, 47);
    --section-title-color-lite: rgb(255, 255, 255);
}

:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}
  
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
  
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}
  
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* ------------------------------------------------------------------- */
/* header */
/* ------------------------------------------------------------------- */

.header {
    color: var(--header-color);
    background-color: var(--header-background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}
  
.header .logo {
    line-height: 1;
}
  
.header .logo img {
    max-height: var(--logo-max-width);
    margin-right: var(--logo-margin-right);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------- */
/* footer */
/* ------------------------------------------------------------------- */

.footer {
    color: var(--footer-color);
    background-color: var(--footer-background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--footer-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}
  
.footer .footer-about .logo img {
    max-height: var(--footer-logo-max-height);
    margin-right: var(--footer-logo-margin-right);
}
  
.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}
  
.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}
  
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--footer-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--footer-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}
  
.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}
  
.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}
  
.footer .footer-links {
    margin-bottom: 30px;
}
  
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
  
.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}
  
.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
  
.footer .footer-links ul li:first-child {
    padding-top: 0;
}
  
.footer .footer-links ul a {
    color: color-mix(in srgb, var(--footer-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}
  
.footer .footer-links ul a:hover {
    color: var(--accent-color);
}
  
.footer .footer-contact p {
    margin-bottom: 5px;
}
  
.footer .footer-newsletter .newsletter-form-input {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--newsletter-border-color), transparent 80%);
    display: flex;
    background-color: var(--newsletter-background);
    transition: 0.3s;
}
  
.footer .footer-newsletter .newsletter-form-input:focus-within {
    border-color: var(--accent-color);
}
  
.footer .footer-newsletter .newsletter-form-input input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--newsletter-background);
    color: var(--newsletter-color);
}
  
.footer .footer-newsletter .newsletter-form-input input[type=email]:focus-visible {
    outline: none;
}
  
.footer .footer-newsletter .newsletter-form-input input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}
  
.footer .footer-newsletter .newsletter-form-input input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
  
.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
  
.footer .copyright p {
    margin-bottom: 0;
}
  
.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}
  
.footer .credits a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* ------------------------------------------------------------------- */
/* newsletter */
/* ------------------------------------------------------------------- */

.newsletter-form .subscription-error {
    display: none;
    background: var(--subscription-error-background);
    color: var(--subscription-error-color);
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
  
.newsletter-form .subscribed {
    display: none;
    color: var(--subscription-success-color);
    background: var(--subscription-success-background);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.newsletter-form .subscribing {
    display: none;
    background: var(--subscription-background);
    color: var(--subscription-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
  
.newsletter-form .subscribing:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: newsletter-form-subscribing 1s linear infinite;
}
  
@keyframes newsletter-form-subscribing {
    0% {
        transform: rotate(0deg);
    }
  
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 1200px) {
    .ng\:navbar {
        padding: 0;
    }

    .ng\:navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .ng\:navbar li {
        position: relative;
    }

    .ng\:navbar a, a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--nav-color);
        font-size: var(--nav-font-size);
        font-family: var(--nav-font);
        font-weight: var(--nav-font-weight);
        padding: 18px 15px;
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
    }

    .ng\:navbar a i,
    .ng\:navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .ng\:navbar li:last-child a {
        padding-right: 0;
    }

    .ng\:navbar li:hover>a,
    .ng\:navbar .active:focus {
        color: var(--nav-hover-color);
    }

    .ng\:navbar .active {
        color: var(--nav-active-color);
    }

    .ng\:navbar .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-bg-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .ng\:navbar .dropdown ul li {
        min-width: 200px;
    }

    .ng\:navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .ng\:navbar .dropdown ul a i {
        font-size: 12px;
    }

    .ng\:navbar .dropdown ul a:hover,
    .ng\:navbar .dropdown ul .active:hover,
    .ng\:navbar .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .ng\:navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    
    .ng\:navbar .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    
    .ng\:navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

@media (max-width: 1199px) {
    .ng\:mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .ng\:navbar {
        padding: 0;
        z-index: 9997;
    }

    .ng\:navbar ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-bg-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .ng\:navbar li {
        position: relative;
    }

    .ng\:navbar a, a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .ng\:navbar a i,
    .ng\:navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);    
    }

    .ng\:navbar li:last-child a {
        padding-right: 0;
    }

    .ng\:navbar li:hover>a,
    .ng\:navbar .active:focus {
        color: var(--nav-hover-color);
    }

    .ng\:navbar .active {
        color: var(--nav-active-color);
    }

    .ng\:navbar .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-bg-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .ng\:navbar .dropdown ul li {
        min-width: 200px;
    }

    .ng\:navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .ng\:navbar .dropdown ul a i {
        font-size: 12px;
    }

    .ng\:navbar .dropdown ul a:hover,
    .ng\:navbar .dropdown ul .active:hover,
    .ng\:navbar .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .ng\:navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    
    .ng\:navbar .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    
    .ng\:navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* ------------------------------------------------------------------- */
/* features */
/* ------------------------------------------------------------------- */

.features .features-item {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}
  
.features .features-item+.features-item {
    margin-top: 100px;
}
  
@media (max-width: 640px) {
    .features .features-item+.features-item {
        margin-top: 40px;
    }
}
  
.features .features-item h3 {
    font-weight: 700;
    font-size: 26px;
}
  
.features .features-item ul {
    list-style: none;
    padding: 0;
}
  
.features .features-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
  
.features .features-item ul li:last-child {
    padding-bottom: 0;
}
  
.features .features-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}
  
.features .features-item p:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------------- */
/* sections */
/* ------------------------------------------------------------------- */

section,
.section {
    color: var(--section-color);
    background-color: var(--section-background);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 58px;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}
  
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
  
.section-title p {
    margin-bottom: 0;
}

/* ------------------------------------------------------------------- */
/* hero carousel */
/* ------------------------------------------------------------------- */

.ng\:hero {
    background: url(/images/neural-network.jpg) center bottom no-repeat;
    background-size: cover; 
    width: 100%;
    min-height: 90vh;
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;  
}

@media (max-width: 1200px) {
    .ng\:hero {
      padding: 60px 0;
    }
}

.ng\:logo {
    width: 120px;
}

.ng\:empowering {
    color: var(--empowering-color) !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
}

.ng\:empowering > em {
    color: var(--empowering-em-color);
    font-size: 2rem;
}

.ng\:empowering-bg {
    background: linear-gradient(to right, rgba(0, 9, 47, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 9, 47, 0) 100%);
    padding: 80px;
}

.ng\:about-title, 
.ng\:our-missions-title, 
.ng\:it-solutions-title, 
.ng\:engineering-services-title, 
.ng\:it-infrastructure-title,
.ng\:advanced-cctv-solutions-title,
.ng\:contact-title {
    color: var(--section-title-color);
    font-size: 2.5rem !important;
}

.ng\:our-missions-title, 
.ng\:it-solutions-title, 
.ng\:engineering-services-title, 
.ng\:it-infrastructure-title,
.ng\:advanced-cctv-solutions-title {
    color: var(--section-title-color-lite);
}

.ng\:our-missions, .ng\:advanced-cctv-solutions {
    background-color: var(--our-missions-background);
}

.ng\:our-missions p {
    color: var(--our-missions-color);
}

.ng\:advanced-cctv-solutions ul li {
    color: var(--advanced-cctv-solutions-color);
}

.ng\:it-solutions, .ng\:engineering-services, .ng\:it-infrastructure {
    background-color: var(--it-solutions-background);
}

.ng\:it-solutions p, .ng\:engineering-services p {
    color: var(--it-solutions-color);
}

.ng\:services-title {
    font-size: 1.5rem;
    color: var(--services-title-color);
    text-transform: uppercase;
    font-weight: bold;
}

.ng\:services-heading {
    font-weight: bold;
    font-style: italic;
    color: var(--services-heading-color);
}

.ng\:services-title-sm {
    font-weight: bold;
    color: var(--services-title-sm-color);
}

.ng\:it-infrastructure-list li {
    color: var(--it-infrastructure-color);
}

.ng\:it-infrastructure p {
    color: var(--it-infrastructure-color);
}

/* contact */

.contact .info-item+.info-item {
    margin-top: 40px;
}
  
.contact .info-item i {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}
  
.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
  
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}
  
.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.ng\:contact-form input[type=text],
.ng\:contact-form input[type=email],
.ng\:contact-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.ng\:contact-form input[type=text]:focus,
.ng\:contact-form input[type=email]:focus,
.ng\:contact-form textarea:focus {
    border-color: var(--accent-color);
}

.ng\:contact-form input[type=text]::placeholder,
.ng\:contact-form input[type=email]::placeholder,
.ng\:contact-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.ng\:contact-form button[type=submit]{
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;  
}

/* preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}
  
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}
  
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
  
    100% {
        transform: rotate(360deg);
    }
}

.ng\:contact-loading {
}

.ng\:contact-error {
}

.ng\:contact-success {
}