
body {
    font-family: Arial, sans-serif;
    background-image: url('/static/img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.6;
}

/* Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

header {
    background-color: rgba(0, 68, 102, 0.8);
    text-align: center;
    padding: 10px 0;
}

.site-logo {
    height: 50px;
    max-width: 180px;
}

nav {
    padding: 10px;
    text-align: center;
    background-color: rgba(0, 68, 102, 0.9);
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    max-width: 100%;
    box-sizing: border-box;
}

form button {
    background-color: #004466;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
}

form button:hover {
    background-color: #006080;
}

blockquote {
    border-left: 4px solid #004466;
    margin: 20px 0;
    padding-left: 15px;
    color: #eee;
    font-style: italic;
}

h1, h2, h3 {
    color: #ffffff;
}

/* Slider */
.slider {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 30px;
}

.product-card {
    flex: 1 1 30%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    min-width: 30%;
}

.product-card img {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
    border-radius: 6px;
}

/* Client Slider */
.client-slider {
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px 0;
}

.slide-track {
    display: flex;
    width: calc(250px * 34);
    animation: scroll 80s linear infinite;
}

.slide {
    flex: 0 0 auto;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.slide img {
    max-width: 220px;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s;
}

.slide img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
}

.social-icons img {
    width: 26px;
    height: 26px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 1;
}

/* Footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 68, 102, 0.9);
    padding: 10px 20px;
    color: white;
    flex-wrap: wrap;
    font-size: 14px;
}

.site-footer .footer-left,
.site-footer .footer-center,
.site-footer .footer-right {
    flex: 1;
    text-align: center;
}

.site-footer .footer-left {
    text-align: left;
}

.site-footer .footer-right {
    text-align: right;
}

.site-footer img {
    width: 26px;
    height: 26px;
    margin: 0 5px;
    vertical-align: middle;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.site-footer img:hover {
    opacity: 1;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    .slider {
        flex-wrap: wrap;
    }

    .product-card {
        flex: 1 1 100%;
        min-width: 100%;
        margin-bottom: 20px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-card img {
        max-width: 100px;
        max-height: 100px;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }

    .site-footer .footer-left,
    .site-footer .footer-center,
    .site-footer .footer-right {
        text-align: center;
        margin: 5px 0;
    }

    .slide-track {
        animation-duration: 100s;
    }

    body,
    main,
    .container,
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }
}



/* === Hamburger Menu Styling === */
.top-nav {
  display: flex;
  align-items: center;
  background-color: rgba(0, 68, 102, 0.9);
  padding: 10px 20px;
  position: relative;
}

.menu-icon {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding: 5px 10px;
}

#menu-toggle {
  display: none;
}

.top-nav .logo-area {
  flex: 1;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(0, 68, 102, 0.95);
    padding: 10px 0;
    z-index: 999;
  }

  #menu-toggle:checked + .menu-icon + .logo-area + .menu {
    display: flex;
  }

  .menu li {
    text-align: center;
    margin: 10px 0;
  }

  .top-nav {
    flex-wrap: wrap;
  }
}
