/* Consolidated styles from various HTML files */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8;
    color: #333;
}

.navbar {
    background-color: #001f3f; /* Dark Blue */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand, .nav-link {
    color: #ffffff !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.metallic-text {
    color: #e0e0e0;
    text-shadow: 2px 2px 4px #999999;
}

.hero-section {
    background: url('../images/digital_title_bar_two.jpeg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.hero-section .content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

footer {
    background-color: #001f3f;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container h1 {
    font-size: 5em;
    margin: 0;
}

.container p {
    font-size: 1.5em;
}

.container a {
    color: #00f;
    text-decoration: underline;
}

.rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.drop {
    position: absolute;
    top: -100px;
    color: rgba(82, 78, 183, 0.9); /* (82, 78, 183);, 1 */
    font-size: 20px;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

.services-section, .demo-content, .form-container {
    padding: 60px 0;
}

.service-container, .dashboard-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-container:hover, .dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 40px;
    color: #001f3f;
    margin-bottom: 10px;
}

.sway-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.sway-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.close-btn {
    background: #001f3f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-primary {
    background-color: #001f3f;
    border-color: #001f3f;
}

.btn-primary:hover {
    background-color: #003366;
    border-color: #003366;
}

.page-title {
    color: #001f3f;
    margin-bottom: 2rem;
}

.form-container {
    width: 80%;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 100px auto 0; /* Adjust margin to account for fixed navbar */
}

iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.value-section {
    padding-top: 80px; /* Adjust this value if needed to ensure content is not obscured */
} 