/* Mega Awesome CSS for Phase Shift Services */
body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background: linear-gradient(135deg, #1f1f1f, #3a3a3a);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.title-banner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 80px;
    height: auto;
    margin-right: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #00d9ff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ff007a;
}

main {
    padding: 40px 20px;
}

section {
    margin-bottom: 50px;
}

.chart-demo {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

footer {
    background: #1f1f1f;
    padding: 15px;
    font-size: 14px;
    color: #aaaaaa;
}

/* List Styling Fix */
ul {
    list-style: disc; /* Default bullet style */
    padding-left: 20px;
    text-align: left;
}

ul li {
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 16px;
}

/* Panel Styling */
.panel {
    background: linear-gradient(135deg, #222, #444);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Depth Effect for Panels */
.panel.depth-effect {
    perspective: 1000px;
    transform: translateY(0px) scale(1);
}

.panel.depth-effect:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.5);
}

.panel h2, .panel h3 {
    color: #00d9ff;
}

.panel ul li::before {
    color: #ff007a; /* Keeping custom color for bullets if needed */
}

.panel p {
    color: #cccccc;
}
/* Form-specific styles */
#enquiryForm {
    background-color: #f9f9f9; /* Light gray background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

#enquiryForm h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

#enquiryForm .form-group {
    margin-bottom: 15px;
}

#enquiryForm label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

#enquiryForm input,
#enquiryForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box; /* To include padding and border in width calculation */
}

#enquiryForm input[type="text"],
#enquiryForm input[type="email"] {
    height: 40px;
}

#enquiryForm textarea {
    resize: vertical;
    min-height: 100px;
}

#enquiryForm .form-group input:focus,
#enquiryForm .form-group textarea:focus {
    outline: none;
    border-color: #5c6bc0; /* Highlight color when focused */
}

#enquiryForm button[type="submit"] {
    background-color: #5c6bc0; /* Stylish button color */
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

#enquiryForm button[type="submit"]:hover {
    background-color: #3f4c96; /* Slightly darker shade on hover */
}

#enquiryForm .honeypot {
    display: none; /* Hide honeypot field */
}
