/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f6f8;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 12px;
}

.logo span {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 5px;
}

.navbar a:hover {
  color: #00ffd5;
  border-bottom: 2px solid #00ffd5;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    width: 100%;
    flex-direction: column;
    background-color: #1a1a1a;
    display: none;
    margin-top: 1rem;
    padding: 1rem 0;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .navbar a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 0.5rem;
  }
}
/* Initial Logo and Title */
.logo img {
  height: 50px;
  transition: all 0.3s ease;
}

.logo span {
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

/* Navbar links */
.navbar a {
  transition: all 0.3s ease;
}

/* On scroll: shrink */
.site-header.shrink .logo img {
  height: 35px;
}

.site-header.shrink .logo span {
  font-size: 1.3rem;
}
.site-header.shrink .navbar a {
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0f7f6;
}

.hero-btn {
  background-color: #00ffd5;
  color: #1a1a1a;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background-color: #00e6bf;
  transform: translateY(-3px);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
  }
}
/* Default header size */
.site-header {
  height: 80px;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

/* Shrunk header on scroll */
.site-header.shrink {
  height: 60px;
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  padding: 4rem 1rem;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #00ffd5;
}

.about-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.about-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 500px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}
/* featured-products.css */

/* Entire Section */
.featured-products-section {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364); /* Dark gradient */
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
}

.featured-products-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffd5; /* Aqua/Teal highlight */
}

/* Grid for Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Product Card */
.product-card {
  background-color: #1a1a1a; /* Dark card */
  border-radius: 16px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 255, 213, 0.3); /* Aqua glow */
}

/* Image Handling */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;               /* Show whole image */
  display: block;
  padding: 10px;                    /* Give breathing room */
  background-color: #1a1a1a;        /* Same as card to blend */
  transition: background-color 0.4s ease, transform 0.4s ease;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* Product Info */
.product-info {
  padding: 20px;
  text-align: left;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #00ffd5;
}

.product-info p {
  font-style: italic;
  color: #cccccc;
  margin-bottom: 10px;
}

.product-info ul {
  padding-left: 18px;
  font-size: 0.95rem;
  color: #e6e6e6;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Pricing */
.price {
  background-color: #0f2027;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}

.price .old {
  text-decoration: line-through;
  color: #bbbbbb;
  margin-right: 10px;
}

.price .new {
  font-size: 1.1rem;
  color: #00ffd5;
  font-weight: bold;
}

.price .discount {
  display: block;
  color: #00ffd5;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 600px) {
  .featured-products-section h2 {
    font-size: 2rem;
  }

  .product-info {
    padding: 16px;
  }
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f8;
  color: #ffffff;
}

/* Section Styling */
.our-products-section {
  padding: 60px 20px;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  text-align: center;
}

.our-products-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Product Grid */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background-color: #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 213, 0.08);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 255, 213, 0.2);
}

/* Image */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: #000000;
  padding: 10px;
  border-bottom: 1px solid #2c5364;
}

/* Product Details */
.product-details {
  padding: 20px;
  text-align: left;
}

.product-details h3 {
  font-size: 1.4rem;
  color: #00ffd5;
  margin-bottom: 8px;
}

.product-details p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #dddddd;
  line-height: 1.4;
}

/* Specifications */
.product-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.product-details ul li {
  font-size: 0.95rem;
  margin: 6px 0;
  color: #bbbbbb;
  position: relative;
  padding-left: 18px;
}

.product-details ul li::before {
  content: "✔";
  color: #00ffd5;
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

/* Price Tag */
.price {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: bold;
  margin-top: 10px;
}

.price .old {
  text-decoration: line-through;
  color: #888888;
  font-size: 0.95rem;
}

.price .new {
  color: #00ffd5;
  font-size: 1.2rem;
}

.price .discount {
  background-color: #00ffd5;
  color: #000;
  font-size: 0.85rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
/* Section Background */
.our-products-section {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

/* Section Title */
.our-products-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

/* Products Grid */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Product Item */
.product-item {
  background-color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 255, 213, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effect */
.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 255, 213, 0.3);
}

/* Image Handling */
.product-item img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: #000;
  padding: 10px;
  display: block;
}

/* Product Text Info */
.product-item h3 {
  color: #00ffd5;
  font-size: 1.4rem;
  margin: 16px 0 8px;
}

.product-item .tagline {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 10px;
}

/* Specifications List */
.product-item ul {
  list-style: none;
  padding: 0 20px;
  margin: 0 0 16px;
  text-align: left;
}

.product-item ul li {
  font-size: 0.95rem;
  margin: 6px 0;
  color: #bbbbbb;
  position: relative;
  padding-left: 20px;
}

.product-item ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffd5;
}

/* Price Display */
.price {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: bold;
  margin-bottom: 12px;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  font-size: 0.95rem;
}

.price .new {
  color: #00ffd5;
  font-size: 1.2rem;
}

.price .discount {
  background: #00ffd5;
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* View Details Button */
.view-details-btn {
  background-color: #00ffd5;
  color: #000;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-details-btn:hover {
  background-color: #00c9ad;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Modal Container */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(15, 32, 39, 0.9); /* Transparent dark */
  backdrop-filter: blur(6px);
}

/* Modal Content Box */
.modal-content {
  background: linear-gradient(135deg, #203a43, #2c5364);
  color: #ffffff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: fadeInUp 0.4s ease-in-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.close:hover {
  color: #00ffd5;
}

/* Image */
#modal-image {
  width: 100%;
  max-height: 250px;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin: 1rem 0;
  display: block;
}

/* Price Styling */
#modal-price {
  margin-top: 1rem;
}
#modal-price .old {
  text-decoration: line-through;
  color: #ccc;
  margin-right: 10px;
}
#modal-price .new {
  color: #00ffd5;
  font-weight: bold;
}
#modal-price .discount {
  background: #00ffd5;
  color: #000;
  padding: 3px 8px;
  border-radius: 5px;
  margin-left: 10px;
  font-size: 0.85rem;
}

/* Tagline & Specs */
#modal-description {
  font-style: italic;
  margin-bottom: 0.75rem;
}
#modal-specs {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}
#modal-specs li {
  margin: 5px 0;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f6f8;
  color: #ffffff;
}

.contact-section {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  padding: 60px 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

/* Left side */
.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.contact-info h2 {
  color: #00ffd5;
  margin-bottom: 16px;
}

.info-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 250px;
  border-radius: 12px;
}

/* Right side */
.contact-form-container {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: rgba(26, 26, 26, 0.9);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.contact-form-container h2 {
  color: #00ffd5;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  background-color: #2c5364;
  color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cccccc;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background-color: #00ffd5;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00e5c1;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
html {
  scroll-behavior: smooth;
}
.site-footer {
  background-color: #0b0b0b;
  color: #ccc;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3, .footer-col h4 {
  color: #00ff99;
  margin-bottom: 15px;
}

.footer-col p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00ff99;
}

.footer-social a {
  color: #ccc;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #00ff99;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #888;
}
.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #00ff99;
}
.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #00ff99;
}
