.pricing-info {
  text-align: left;
  margin: 1rem 0 2rem 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: #444;
  font-size: 0.95rem;
}

#formSuccess {
  font-weight: bold;
  font-size: 1rem;
}

.order-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
}

.order-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.order-form p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #555;
}

.order-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-form input,
.order-form select,
.order-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #f9f9f9;
}

.order-form button {
  background: #00c853;
  color: white;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.order-form button:hover {
  background: #00b14f;
}


.payments-page {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.payment-method {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.payment-method h2 {
  color: #333;
}

.payment-method p {
  margin: 0.5rem 0;
}

.highlight {
  color: #00c853;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background: #00c853;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
}

.popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #00c853;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.hidden {
  display: none;
}

.contact-page {
  padding: 80px 50px;       /* Top/bottom space */
  margin: 40px auto;        /* Space from header and footer */
  background-color: #fff;
  max-width: 700px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05); /* Optional soft shadow */
  border-radius: 12px;      /* Optional rounded edges */
}


.contact-page {
  padding: 60px 40px;
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.contact-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-page .intro {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.alt-contact,
.payment-note {
  margin-top: 40px;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

.alt-contact h3,
.payment-note h3 {
  margin-bottom: 10px;
  color: #007bff;
}

.alt-contact a,
.payment-note a {
  color: #007bff;
  text-decoration: none;
}

.portfolio-page {
  padding: 60px 40px;
  background: #fff;
}

.portfolio-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.portfolio-page .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.filter-btn.active,
.filter-btn:hover {
  background: #007bff;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-item {
  background: #fafafa;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.portfolio-item img,
.portfolio-item video {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.services-page {
  padding: 60px 40px;
  background-color: #fff;
}

.services-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.services-page .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-box {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.service-box h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #007bff;
}

.service-box p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.service-box ul {
  padding-left: 20px;
}

.service-box ul li {
  list-style: disc;
  color: #444;
  margin-bottom: 6px;
}

.service-cta {
  text-align: center;
}

.service-cta .cta {
  padding: 12px 28px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: #e0f7fa;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
}

.hero-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.services-preview {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}

.services-preview h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #ddd;
  font-size: 0.9rem;
}

/* Navbar styles */
/* --- Responsive Navbar Fixes --- */
.navbar {
  flex-wrap: wrap;
  position: relative;
}

.toggle-button {
  display: none;
  font-size: 1.8rem;
  color: #007bff; /* Visible on white background */
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .toggle-button {
    display: block;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .navbar-links ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }

  .navbar-links ul li a {
    color: #007bff;
    display: block;
    width: 100%;
  }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
  padding: 0;
  margin: 0;
}

/* Navbar */
header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-links ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.navbar-links ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar-links ul li a.active,
.navbar-links ul li a:hover {
  color: #007BFF;
}

/* Toggle Button */
.toggle-button {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Portfolio Page */
.portfolio-page {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.portfolio-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-page .intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

/* Filter Buttons */
.filters {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border: none;
  background: #eee;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.filter-btn.active {
  background: #007BFF;
  color: white;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Footer */
footer {
  background-color: #f1f1f1;
  padding: 1rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .toggle-button {
    display: block;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links.active {
    display: block;
  }

  .navbar-links ul {
    flex-direction: column;
    gap: 0;
  }

  .navbar-links ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
  }
}


.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.contact-form button {
  padding: 0.75rem;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup {
  text-align: center;
  margin-top: 1rem;
  color: green;
  font-weight: bold;
}

.popup.hidden {
  display: none;
}

.download-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 6px 12px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}
.download-btn:hover {
  background-color: #0056b3;
}

.portfolio-page { padding: 2rem; max-width: 1000px; margin: auto; }
.portfolio-page .filters { margin-bottom: 1.5rem; text-align: center; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.portfolio-item { background: #f9f9f9; padding: 1rem; border-radius: 8px; text-align: center; }
.portfolio-item img, .portfolio-item video { width: 100%; border-radius: 6px; }

.filters .filter-btn { padding: 0.5rem 1rem; margin: 0.25rem; background: #eee; border: none; border-radius: 5px; cursor: pointer; }
.filters .filter-btn.active { background: #007BFF; color: white; }

.whatsapp-button {
  position: fixed; bottom: 20px; right: 20px;
  background: #25d366; color: white;
  border-radius: 50%; width: 55px; height: 55px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; text-decoration: none; box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.download-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 8px 14px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}
.download-btn:hover {
  background-color: #0056b3;
}

.modal {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.modal-content {
  max-width: 90%;
  max-height: 80%;
}
.modal img, .modal video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
.modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.portfolio-page {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.portfolio-item {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.portfolio-item:hover {
  transform: translateY(-5px);
}
.portfolio-item img, .portfolio-item video {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

.filters {
  text-align: center;
  margin: 2rem 0;
}
.filter-btn {
  margin: 0.3rem;
  padding: 0.6rem 1.2rem;
  border: none;
  background-color: #eee;
  border-radius: 5px;
  cursor: pointer;
}
.filter-btn.active {
  background-color: #007BFF;
  color: white;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
