body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #87CEEB;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: #003c8f;
    color: white;
    padding: 8px 20px;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
}

/* Navbar */
nav {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
    background: white;
    padding: 15px 30px;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center-right;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav ul {
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
}
nav ul li {
	flex: 0 0 auto;
}

nav .logo {
    font-size: 22px;
    font-weight: bold;
    color: #003c8f;
}

nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-end; /* Align buttons horizontally to the right */
      gap: 15px; /* Space between buttons */
    }
    nav ul li {
      margin: 0;
    }
    nav ul li a {
      display: inline-block;
      padding: 10px 18px;
      background: #0056b3;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      transition: background 0.3s ease;
    }
    nav ul li a:hover {
      background: #003f7f;
    }
    /* Unique Request a Quote Button */
    nav ul li.quote a {
      background: #ff9800; /* Orange to stand out */
      color: #fff;
      font-weight: bold;
      border-radius: 25px; /* Rounded pill shape */
      padding: 10px 22px;
    }
    nav ul li.quote a:hover {
      background: #e68900;
    }

/* Hero Section */
.hero {
    height: 480px;
    background: url('images/bg-desks.jpg') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    top: 30%;
}

.hero-content h1 {
    font-size: 42px;
}

.hero-btn {
    padding: 14px 30px;
    background: #003c8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Sections */
.section {
    padding: 60px 15%;
    background: white;
    margin-top: 40px;
}

.section h2 {
    text-align: center;
    color: #003c8f;
    margin-bottom: 25px;
}

/* Product Cards */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    width: 280px;
    background: #f0f4ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 6px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #003c8f;
}

.order-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #003c8f;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: #003c8f;
    color: white;
    padding: 12px;
}

.pricing-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

/* Contact */
.contact {
    text-align: center;
}

/* Footer */
footer {
    background: #003c8f;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

body {
	margin: 0;
	padding: 0;
    font-family: Arial, sans-serif;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px;
	box-sizing: border-box;
}	

.quote-container {
    max-width: 450px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: auto;
}

.quote-container h2 {
    text-align: center;
    color: #0a3d62;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #0a3d62;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #0a3d62;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #1e5799;
}

/* Popups */
.popup {
    padding: 15px;
    color: white;
    border-radius: 6px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    margin: 10px auto;
    display: none;
}

.success { background: #2ecc71; }
.error { background: #e74c3c; }

@media (max-width: 768px) {
	nav {
		display: block;
		text-align: center;
	}
	
	.menu {
		display: block;
	}
	
	.section {
		width: 100%;
		padding: 10px;
	}
	
	img {
		width: 100%;
	height: auro;}
}

/* Marquee Navbar CSS starts here */
.marquee-nav {
  overflow: hidden;
  background-color: #333;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
}

.marquee-track ul {
  display: flex;
  animation: scroll 20s linear infinite;
}

.marquee-track ul:hover {
  animation-play-state: paused; /* pause on hover */
}

.marquee-track li {
  list-style: none;
  margin: 0 25px;
}

.marquee-track a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: color 0.3s;
}

.marquee-track a:hover {
  color: #ffcc00;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* scroll half since we duplicated the items */
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .marquee-track ul {
    animation-duration: 35s; /* slower on small screens */
  }
  .marquee-track li {
    margin: 0 15px;
  }
}