/* General */
body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Header */
#header {
    padding: 15px 0;
    background: rgba(1, 19, 38, 0.97); /* Transparent header */
    transition: all 0.5s;
}

#header .logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

#header .logo img {
    height: 60px; /* Adjust logo height to fit the header */
    width: auto;
}

#header .nav-menu ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

#header .nav-menu ul li {
    margin-left: 20px;
    position: relative;
}

#header .nav-menu ul li a {
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: bold;
}

#header .nav-menu ul li a:hover {
    color: rgb(123, 192, 253);
}

.btn-quote.invisible{
    pointer-events: none;
}

/* Request a Quote Button */
.btn-quote {
    border: 1px solid rgb(123, 192, 253);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-quote:hover {
    /*background-color: #dfddd6; */
    color: rgb(123, 192, 253); /* White text on hover */
    transform: scale(1.05); /* Slightly scale up on hover */
}

#header .nav-menu ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(1, 19, 38, 0.97);
    padding: 10px 0;
    min-width: 220px;
    z-index: 999;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

#header .nav-menu .dropdown-menu.show {
    display: block; /* Corrected to block to properly show */
}


.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: background 0.3s, color 0.3s;
}

.nav-menu .dropdown-menu li a:hover {
    color: #1694ba;
    background-color: rgba(255, 255, 255, 0.05);
}


/* Footer */
.footer {
    background: rgba(1, 19, 38, 0.97);
    padding: 40px 0;
    color: #fff;
    font-size: 14px;
    margin:0;
    
}

.footer h3, .footer h4 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer p {
    color: #bbb;
    line-height: 1.6;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    margin-bottom: 10px;
}

.footer .footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-links ul li a:hover {
    color: rgb(123, 192, 253);
}

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #ccc;
    margin-right: 10px;
    transition: color 0.3s ease;
}
 
.footer .social-links a:hover {
    color: rgb(123, 192, 253);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgb(123, 192, 253);
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: rgba(2, 2, 36, 0.8);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.support-contact-frame {
    width: 100%;
    height: 800px;
    border: 1px solid #ddd;
}

#clients .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background-color: #cccccc; /* or #ffffff or #a3d5ff */
    opacity: 0.6; /* Slightly muted appearance */
}

.hide {
    display:none;
}