/* Base Styles */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
}

/* Header */
.header {
  background-color: #1a1a1a;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.logo {
  height: 120px;
  width: auto;
}

.text-block {
  text-align: center;
}

.title {
  font-size: 26px;
  font-weight: bold;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 5px;
}

.menu-icon {
  font-size: 30px;
  cursor: pointer;
  margin-top: 10px;
}

/* Navigation */
.nav-links {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #111111;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 60px 20px 40px;
  gap: 20px;
}

.nav-links.show {
  display: flex;
}

.nav-links a {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  padding: 14px 24px;
  background-color: #222;
  border: 2px solid #444;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

.nav-links a:hover {
  background-color: #333;
  transform: scale(1.05);
}

.close-btn {
  font-size: 32px;
  color: #ffffff !important;
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: color 0.2s ease;
  padding-top: 10px;
}

.close-btn:hover {
  color: #ff4444;
}

/* Main Content */
.page-content {
  margin-top: 280px;
  padding: 0 20px 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: left;
}

.page-content h2,
.page-content h3 {
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #dddddd;
}

/* Services */
.services ul {
  list-style: disc;
  padding-left: 20px;
}

/* Contact Details */
.contact-details {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-details a {
  color: #00ffff;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form label {
  font-weight: bold;
  color: #ffffff;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #555;
  border-radius: 4px;
  background-color: #222;
  color: #fff;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00ffff;
  outline: none;
}

.contact-form button {
  padding: 12px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #dddddd;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #1a1a1a;
  margin: 15% auto;
  padding: 20px;
  border: 2px solid #333;
  width: 90%;
  max-width: 400px;
  text-align: center;
  color: #ffffff;
  border-radius: 8px;
  position: relative;
}

.modal-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #00ffff;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #00cccc;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
}

.close-modal:hover {
  color: #ff4444;
}

/* Honeypot */
input[name="company"] {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: -9999px;
}

/* Gallery Section */
.gallery-section {
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
}

.gallery-section h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
}

.gallery-grid img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    height: 90px;
  }

  .title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 12px;
  }

  .menu-icon {
    font-size: 28px;
  }

  .page-content {
    margin-top: 250px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 70px;
  }

  .title {
    font-size: 20px;
  }

  .subtitle {
    font-size: 11px;
  }

  .page-content h2 {
    font-size: 20px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  a.no-underline {
    text-decoration: none;
    color: #00ffff;
  }

  a.no-underline:hover {
    text-decoration: none;
    color: #00ffff;
  }
}




