/**
 * Template Name: CLOUDCONTAINER
 * Author: DA TECHNOLOGIES


/* General */
body {
    background: #000; /* Dark background for contrast */
    color: #ffffff; /* Neon white text */
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    color: #ffffff; /* Neon white */
    transition: color 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #e0e0e0; /* Slightly off-white for hover effect */
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Header */
#header {
    background: #000; /* Dark background for contrast */
    transition: background 0.5s;
    z-index: 997;
    height: 70px;
}

@media (max-width: 992px) {
    #header {
        height: 60px;
    }
}

#header.fixed-top {
    background: rgba(0, 0, 0, 0.85);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff; /* Neon white */
}

#header .logo a {
    color: #ffffff; /* Neon white */
}

#header .logo img {
    height: 50px;
}

.scrolled-offset {
    margin-top: 70px;
}

@media (max-width: 992px) {
    .scrolled-offset {
        margin-top: 60px;
    }
}

/* Navigation Menu */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #ffffff; /* Neon white */
    white-space: nowrap;
    transition: color 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #e0e0e0; /* Slightly off-white */
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #000; /* Dark background for contrast */
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3); /* White shadow */
    transition: opacity 0.3s, top 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: #ffffff; /* Neon white */
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #e0e0e0; /* Slightly off-white */
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff; /* Neon white */
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: color 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9); /* Dark background for contrast */
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #000; /* Dark background for contrast */
    overflow-y: auto;
    transition: opacity 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #ffffff; /* Neon white */
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #e0e0e0; /* Slightly off-white */
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #000; /* Dark background for contrast */
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3); /* White shadow */
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #e0e0e0; /* Slightly off-white */
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/* Page Title */
.page-title {
    background: url("../img/8machine-_-LhNDEs4MP5w-unsplash.jpg") top center;
    background-size: cover;
    padding: 200px 0 100px;
    position: relative;
    z-index: 1;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text contrast */
    z-index: -1;
}

.page-title .heading h1 {
    color: #ffffff; /* Neon white */
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Glow effect */
}

.page-title .heading p {
    color: #e0e0e0; /* Slightly off-white */
    font-size: 18px;
    margin: 0 0 10px 0;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: #000; /* Dark background */
}

.breadcrumbs ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.breadcrumbs ol li {
    color: #ffffff; /* Neon white */
    margin-right: 10px;
}

.breadcrumbs ol li a {
    color: #ffffff; /* Neon white */
    transition: color 0.3s;
}

.breadcrumbs ol li a:hover {
    color: #e0e0e0; /* Slightly off-white */
}

/* Online Training Section */
#online-training {
    padding: 60px 0;
    background: #181818; /* Dark background for contrast */
    color: #ffffff; /* Neon white text */
}

#online-training h3 {
    font-size: 36px;
    color: #ffffff; /* Neon white */
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Glow effect */
}

#online-training h4 {
    font-size: 24px;
    color: #e0e0e0; /* Slightly off-white */
    margin-bottom: 15px;
}

#online-training p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly off-white */
    margin-bottom: 30px;
}

/* Footer */
#footer {
    background: rgba(0, 0, 0, 0.8); /* Dark background for contrast */
    color: #ffffff; /* Neon white text */
    padding: 40px 0;
    text-align: center;
}

#footer h3 {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff; /* Neon white text */
}

#footer p {
    margin-bottom: 20px;
    color: #e0e0e0; /* Slightly off-white text for contrast */
}

#footer .social-links {
    margin-top: 20px;
}

#footer .social-links a {
    font-size: 24px;
    color: #ffffff; /* Neon white */
    transition: color 0.3s;
    margin: 0 10px;
}

#footer .social-links a:hover {
    color: #e0e0e0; /* Slightly off-white for hover effect */
}

@media (max-width: 768px) {
    #footer h3 {
        font-size: 20px;
    }

    #footer .social-links a {
        font-size: 20px;
        margin: 0 8px;
    }
}


