/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  padding: 0 20px;
}

/* Header */
.header {
  text-align: center;
  padding-top: 10px;
}

.header h1 {
  font-size: 2.5rem;
  color: white;
}

.header p {
  margin-top: 10px;
  color: #ccc;
}

/* Navigation */
nav {
  text-align: center;
  margin-bottom: 30px;
}

.nav-links {
  list-style: none;
  display: inline-flex;
  gap: 20px;
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float img {
  width: 28px !important;
  height: 28px !important;
}






.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0d6efd;
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 60px;
}

.contact-form, .contact-info {
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.15);
  flex: 1;
  min-width: 300px;
}

/* Form */
form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #000;
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.3s ease, box-shadow
}

button {
  position: relative;
  background-color: #0d6efd;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  z-index: 2;
}

.navbar a.active {
  color: #007bff;
  font-weight: bold;
  /*border-bottom: 2px solid #ff9800; underline effect */
}




button:hover::before {
  left: 125%;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.6);
}


/* Footer Styling Fix */
.site-footer {
  background: #000;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
  list-style: none;
  margin: 20px 0;
}

.footer-links li {
  flex: 1 1 auto;
  text-align: center;
  min-width: 120px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #00aaff;
}

/* Mobile-friendly: make them stack neatly */
@media (max-width: 500px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

.site-footer p {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.popup-box {
  background: #1b1b1b;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px #1e90ff99;
  text-align: center;
  max-width: 400px;
  color: white;
  animation: slideUp 0.4s ease;
}

.popup-box h2 {
  color: #1E90FF;
  margin-bottom: 10px;
}

.popup-box button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #1E90FF;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-box button:hover {
  background: #0077cc;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}