/* ---------- CSS: style.css ---------- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

header {
  background: #003366;
  color: white;
  padding: 1rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

nav ul li.dropdown {
  position: relative;
}

nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #005288;
  list-style: none;
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 999;
  border-radius: 0 0 5px 5px;
}

nav ul li .dropdown-content li a {
  display: block;
  padding: 0.75rem;
  color: white;
  text-decoration: none;
}

nav ul li .dropdown-content li a:hover {
  background-color: #0069a1;
}

nav ul li.dropdown:hover .dropdown-content {
  display: block;
}

.hero, .features, .support, .testimonials, .contact {
  padding: 2rem;
  background: #ffffff;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* ---------------- Floating Buttons (top-right) ---------------- */
.floating-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
  flex-direction: row;           /* Ensures side-by-side */
  justify-content: flex-end;
}

.floating-btn {
  background-color: #003366;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: none;
  white-space: nowrap;
}

/* ---------------- Modal Styling ---------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 8% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal-content h2 {
  text-align: center;
}

.modal-content label,
.modal-content input,
.modal-content textarea {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.modal-content button {
  margin-top: 1rem;
  padding: 0.6rem;
  background: #003366;
  color: white;
  border: none;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
}

.close {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-size: 1.4rem;
  cursor: pointer;
  color: #333;
}

.msg {
  color: red;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ---------------- Marquee Text (Scrolling Offers) ---------------- */
.marquee {
  background: #003366;
  color: white;
  padding: 10px 0;
  overflow: hidden;
  position: fixed;
  bottom: 45px; /* Slightly above logo track */
  width: 100%;
  z-index: 998;
  font-weight: bold;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  font-size: 1rem;
  padding-left: 100%;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------------- Client Logo Marquee ---------------- */
.client-marquee {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #002244;
  overflow: hidden;
  padding: 10px 0;
  z-index: 997;
}

.client-track {
  display: flex;
  width: fit-content;
  animation: scrollLeft 40s linear infinite;
}

.client-item {
  display: flex;
  align-items: center;
  margin: 0 30px;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.client-item img {
  height: 30px;
  width: auto;
  vertical-align: middle;
}

@keyframes scrollLeft {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

/* ---------------- WhatsApp Button ---------------- */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
