/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: #1E1E2F; /* dark navy gray */
  color: #F5F5F5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Utility Classes === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Header === */
/* Default (mobile/tablets): sticky */
header {
  background-color: rgba(30, 30, 47, 0.95);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Wide screens: fixed floating navbar */
@media (min-width: 1024px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: navFloat 0.3s ease-out;
  }

  body {
    padding-top: 90px; /* Prevent content being hidden behind fixed navbar */
  }
}

/* Floating animation */
@keyframes navFloat {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* === Logo Styling === */
/* .logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem; space between logo and text
  text-decoration: none;
  color: inherit;
} */

/* .logo img {
  height: 45px; adjust as needed
  width: auto;
} */

/* .logo h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00AEEF;
  margin: 0;
} */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo h1 {
  font-size: 1.2rem;
  color: #00AEEF;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00AEEF;
  text-shadow: 0 0 8px #00AEEF;
}

/* === Mobile Nav === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #00AEEF;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #2B2B3D;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    border-radius: 8px;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* === Hero Section === */
.hero {
  background: radial-gradient(circle at top left, #00AEEF 0%, #1E1E2F 70%);
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1s ease-in-out;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #d0d0d0;
}

.btn-primary {
  background: #00AEEF;
  color: #1E1E2F;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: #33c8ff;
  box-shadow: 0 0 15px #00AEEF;
}

/* === Products Preview === */
.products-preview {
  padding: 4rem 0;
  text-align: center;
  background-color: #24243b;
}

.products-preview h2 {
  margin-bottom: 2rem;
  color: #00AEEF;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: #2B2B3D;
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.4);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* === About Section === */
.about-home {
  background-color: #1E1E2F;
  padding: 4rem 2rem;
  text-align: center;
}

.about-home h2 {
  color: #00AEEF;
  margin-bottom: 1.5rem;
}

.about-home p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 2rem;
  color: #d0d0d0;
}

.btn-secondary {
  background: transparent;
  color: #00AEEF;
  border: 2px solid #00AEEF;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #00AEEF;
  color: #1E1E2F;
  box-shadow: 0 0 10px #00AEEF;
}

/* === Footer === */
footer {
  background-color: #11111b;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #888;
}

footer p:first-child {
  margin-bottom: 0.5rem;
}

/* === Footer Social Links === */
.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-links a {
  color: #00AEEF;
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #F5F5F5;
  transform: scale(1.2);
}


/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === Small Hero (Products Page) === */
.hero-small {
  height: 50vh;
  background: linear-gradient(135deg, #00AEEF 0%, #1E1E2F 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-small h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-small p {
  color: #e0e0e0;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Product Categories Section === */
.product-categories {
  background-color: #24243b;
  padding: 4rem 0;
  text-align: center;
}

.product-categories p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}
/* === Product Card Buttons === */
.view-details {
  margin-top: 1rem;
  background: linear-gradient(90deg, #00AEEF, #0078FF);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.4);
}

.view-details:hover {
  background: linear-gradient(90deg, #0078FF, #00AEEF);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.6);
}


/* === Services Page === */
.services-section {
  background-color: #24243b;
  padding: 4rem 0;
  text-align: center;
}

.services-section h2 {
  color: #00AEEF;
  margin-bottom: 1rem;
}

.services-section p {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #ccc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #2B2B3D;
  border-radius: 10px;
  padding: 2rem 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card img {
  margin-bottom: 1rem;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #00AEEF;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #ddd;
  font-size: 0.95rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.4);
}


/* === About Page === */
.about-company {
  background-color: #24243b;
  padding: 4rem 2rem;
  text-align: center;
}

.about-company h2 {
  color: #00AEEF;
  margin-bottom: 1rem;
}

.about-company p {
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
  font-size: 1rem;
}

.mission-vision {
  background-color: #1E1E2F;
  padding: 4rem 2rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mv-card {
  background-color: #2B2B3D;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.4);
}

.mv-card h3 {
  color: #00AEEF;
  margin-bottom: 1rem;
}

.mv-card p {
  color: #ddd;
}

.our-values {
  background-color: #24243b;
  padding: 4rem 2rem;
  text-align: center;
}

.our-values h2 {
  color: #00AEEF;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: #2B2B3D;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.4);
}

.value-card h3 {
  color: #00AEEF;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: #ddd;
  font-size: 0.95rem;
}


/* === Contact Page === */
.contact-section {
  background-color: #24243b;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-section h2 {
  color: #00AEEF;
  margin-bottom: 1rem;
}

.contact-section p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}

/* === Wider Contact Form Inputs on Desktop === */
@media (min-width: 768px) {
  .contact-form input,
  .contact-form textarea {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .contact-form {
    max-width: 700px;
  }
}


.contact-form {
  max-width: 600px;
  margin: 2rem auto 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #1E1E2F;
  color: #F5F5F5;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00AEEF;
}

.contact-form button {
  width: fit-content;
  align-self: center;
}

.contact-info {
  margin-top: 3rem;
  color: #ccc;
}

.contact-info h3 {
  color: #00AEEF;
  margin-bottom: 1rem;
}

.map-placeholder {
  margin-top: 3rem;
}

.map-box img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #00AEEF;
}


/* === Product Modals === */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 20, 0.85);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #1E1E2F;
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.4);
  animation: popIn 0.3s ease;
}

.modal-content img {
  width: 100%;
  max-height: 400px;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.modal-content h2 {
  color: #00AEEF;
  margin-bottom: 0.8rem;
}

.modal-content p {
  color: #ddd;
  font-size: 1rem;
}

table, td, th {
  border: 1px solid black;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td {
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #F5F5F5;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #00AEEF;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}


/* === Thank-You Modal (Contact Page) === */
/* .thankyou-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.thankyou-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.thankyou-modal-content {
  background: #1E1E2F;
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.6);
  animation: popIn 0.3s ease;
}

.thankyou-modal-content h2 {
  color: #00AEEF;
  margin-bottom: 0.8rem;
}

.thankyou-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}

.thankyou-close-btn:hover {
  color: #00AEEF;
} */

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #1E1E2F;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,174,239,0.5);
}

.popup-content button {
  margin-top: 15px;
  background: #00AEEF;
  color: #1E1E2F;
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
