/* General Styles */
body {
    background-color: #f4f4f4; /* Light Gray */
    color: #333333; /* Dark Gray */
}

/* Header Styles */
.site-header {
    background-color: #ffffff; /* White */
    color: #333333; /* Dark Gray */
}

/* Navigation Menu Styles */
.main-navigation {
    background-color: #007bff; /* Bright Blue */
}

.main-navigation a {
    color: #ffffff; /* White */
}

.main-navigation a:hover {
    color: #ff5722; /* Vibrant Orange */
}

/* Footer Styles */
.site-footer {
    background-color: #333333; /* Dark Gray */
    color: #ffffff; /* White */
}

/* Link Styles */
a {
    color: #007bff; /* Bright Blue */
}

a:hover {
    color: #ff5722; /* Vibrant Orange */
}

/* Button Styles */
button, .button-primary {
    background-color: #ff5722; /* Vibrant Orange */
    color: #ffffff; /* White */
}

button:hover, .button-primary:hover {
    background-color: #e64a19; /* Darker Orange */
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    color: #333333; /* Dark Gray */
}

/* Form Styles */
input[type="text"], input[type="email"], textarea {
    background-color: #ffffff; /* White */
    border: 1px solid #cccccc; /* Light Gray */
    color: #333333; /* Dark Gray */
}

input[type="submit"], button[type="submit"] {
    background-color: #007bff; /* Bright Blue */
    color: #ffffff; /* White */
}

input[type="submit"]:hover, button[type="submit"]:hover {
    background-color: #0056b3; /* Darker Blue */
}


/* Basic reset for mobile devices */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

/* Mobile-first styles */
@media (max-width: 767px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .header, .footer {
        text-align: center;
    }

    .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navigation a {
        padding: 10px;
        display: block;
    }

    .content {
        padding: 15px;
    }

    .image {
        max-width: 100%;
        height: auto;
    }
}

/* Styles for tablets and up */
@media (min-width: 768px) {
    .container {
        width: 80%;
        margin: 0 auto;
    }

    .navigation {
        display: flex;
        justify-content: space-between;
    }

    .navigation a {
        padding: 15px;
    }

    .content {
        padding: 30px;
    }
}

/* Styles for large screens */
@media (min-width: 1024px) {
    .container {
        width: 70%;
    }

    .header, .footer {
        padding: 20px;
    }

    .navigation a {
        padding: 20px;
    }
}

/* 3D Text Effect */
.ThreeDText {
    font-size: 3em;
    font-weight: bold;
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5),
                 2px 2px 4px rgba(0, 0, 0, 0.4),
                 3px 3px 6px rgba(0, 0, 0, 0.3);
    transform: perspective(500px) rotateX(10deg) rotateY(10deg);
    transition: transform 0.3s ease;
}

.ThreeDText:hover {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.1);
}


/* Basic reset for menu */
.menu-bar {
    perspective: 1200px;
    background: #f0f0f0; /* Light background for the entire menu bar */
    padding: 10px 0; /* Add padding to the menu bar */
}

.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* White background for the menu container */
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    overflow: hidden;
}

.menu-item {
    position: relative;
    margin: 0 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Dark text color for contrast */
    text-transform: uppercase;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    background: #e0e0e0; /* Light gray background for menu items */
    border-radius: 8px;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateX(0deg);
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.menu-item:hover {
    background: #d0d0d0; /* Slightly darker gray on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15); /* Slightly more prominent shadow on hover */
    transform: perspective(600px) rotateX(-5deg);
}

.menu-item:nth-child(even) {
    transform: perspective(600px) rotateX(10deg);
}

.menu-item:nth-child(odd) {
    transform: perspective(600px) rotateX(-10deg);
}
/* Basic reset for menu */
.menu-bar {
    perspective: 1200px;
    background: #f0f0f0; /* Light background for the entire menu bar */
    padding: 10px 0; /* Add padding to the menu bar */
}

.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    background: #ffffff; /* White background for the menu container */
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    overflow: hidden;
    position: relative;
}

.menu-item {
    position: relative;
    margin: 0 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Dark text color for contrast */
    text-transform: uppercase;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    background: #e0e0e0; /* Light gray background for menu items */
    border-radius: 8px;
    transform-style: preserve-3d;
    transform: perspective(600px) rotateX(0deg);
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.menu-item:hover {
    background: #d0d0d0; /* Slightly darker gray on hover */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15); /* Slightly more prominent shadow on hover */
    transform: perspective(600px) rotateX(-5deg);
}

/* Dropdown menu */
.dropdown {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff; /* Dropdown background */
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Shadow for dropdown */
    padding: 0;
    margin: 0;
}

.dropdown li {
    margin: 0;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.dropdown li a {
    color: #333; /* Text color for dropdown items */
    text-decoration: none;
}

.dropdown li:hover {
    background: #f0f0f0; /* Slightly lighter background on hover */
}

/* Show dropdown on parent hover */
.menu-item:hover .dropdown {
    display: block;
}

/* Mobile view */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item {
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
    }

    .dropdown li {
        padding: 10px 15px;
    }
}
.ngls-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.ngls-form {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ngls-form h2 {
    margin-top: 0;
}

.ngls-form input[type="text"],
.ngls-form input[type="password"],
.ngls-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ngls-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.ngls-form input[type="submit"]:hover {
    background-color: #005177;
}
.ngct-container {
    max-width: 800
/* Adjust logo size */
.header-logo img {
    max-width: 150px; /* Set the maximum width for the logo */
    height: auto; /* Maintain aspect ratio */
}

/* Alternatively, if your logo is a background image */
.header-logo {
    background-size: contain; /* Ensure the logo fits within the container */
    background-repeat: no-repeat;
    background-position: center;
    height: 100px; /* Adjust height of the logo container */
}

/* Example if you need to target the logo on a specific page or section */
.page-id-XX .header-logo img {
    max-width: 120px; /* Customize for a specific page */
    height: auto;
}
#fcb-floating-button {
    position: fixed;
    bottom: 20px; /* Adjust distance from the bottom */
    right: 20px; /* Adjust distance from the right */
    width: 60px; /* Adjust size */
    height: 60px; /* Adjust size */
    border-radius: 50%;
    background-color: #0073aa; /* Button background color */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Ensure it stays on top */
}

#fcb-floating-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#fcb-floating-button img {
    width: 40px; /* Adjust icon size */
    height: 40px; /* Adjust icon size */
    border-radius: 50%;
}

#fcb-button-text {
    display: none; /* Hide text by default, adjust as needed */
    color: white;
    font-size: 12px;
    margin-left: 8px;
}
/* Basic styling for the scroll-to-top button */
#scroll-to-top {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333; /* Button color */
    color: #fff; /* Text color */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it stays on top */
}

#scroll-to-top:hover {
    background-color: #555; /* Button color on hover */
}
