
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f6f2;
      color: #333;
    }
    header {
      background-color: #0e1a3b;
      color: #f5d17d;
      padding: 1rem 2rem;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    nav {
      position: sticky;
      top: 0;
      background-color: #0e1a3b;
      z-index: 101;
    }
    nav a {
      margin: 0 1rem;
      color: #f5d17d;
      text-decoration: none;
    }
    section {
      padding: 2rem;
      max-width: 1000px;
      margin: auto;
    }
    .logo {
      text-align: center;
      margin: 2rem 0;
    }
    .logo img {
      width: 180px;
    }
    .offerings, .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .card {
      background: #fff;
      border: 1px solid #ddd;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-align: center;
    }
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
    }
    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
    }
    .gallery {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    footer {
      background: #0e1a3b;
      color: white;
      text-align: center;
      padding: 1rem;
    }
    .contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.section-title {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  color: #3e2b11;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #f5d17d, #e2c178);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.offerings-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.offering-card {
  display: flex;
  flex-direction: row;
  background: #fffefa;
  border: 1px solid #e2c178;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(255, 215, 100, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(255, 224, 120, 0.2);
}

.offering-image {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  overflow: hidden;
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offering-content {
  flex: 2;
  padding: 1.5rem;
  font-family: 'Segoe UI', sans-serif;
  color: #3e2b11;
}

.offering-content h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #5d3d1a;
}

.offering-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.offering-content ul {
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.offering-content li::marker {
  color: #d4aa3d;
}

@media (max-width: 768px) {
  .offering-card {
    flex-direction: column;
  }
}

form .form-group {
  margin-bottom: 1.5rem;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0e1a3b;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  border-color: #f5d17d;
  outline: none;
}

form button {
  background-color: #0e1a3b;
  color: #f5d17d;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #1a2c55;
}

#status {
  margin-top: 1rem;
  font-weight: 600;
}
.gallery-heading-container {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.gallery-heading {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  color: #3e2b11;
  margin: 0;
}

.heading-ornament::before {
  content: "✺";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 3.2rem;
  font-size: 1.2rem;
  color: #bb993f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  background: radial-gradient(circle at top center, #fffdf7, #f9f6f0);
}

.gallery-card {
  text-align: center;
  color: #432e14;
  font-family: 'Georgia', serif;
  background: #fffefa;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 20px rgba(255, 217, 100, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #e8c77a;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 224, 120, 0.3);
}

.arch-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.arch-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image-inside-arch {
  position: absolute;
  top: 14%;
  left: 10%;
  right: 10%;
  bottom: 6%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-inside-arch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  pointer-events: none;
  user-select: none;
  max-height: 100%;
  max-width: 100%;
}

.gallery-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #5d3d1a;
  text-shadow: 0.5px 0.5px #f5deb3;
}

.ornament {
  font-size: 1.2rem;
  color: #e2c178;
  margin-top: 0.5rem;
}

.logo-header {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.logo-header img {
  height: 80px;
  width: auto;
}
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 20, 10, 0.9);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.zoom-content {
  max-width: 800px;
  width: 100%;
  background: #fffdf4;
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease;
}

.zoom-content img {
  width: 100%;
  border-radius: 8px;
  max-height: 70vh;
  object-fit: contain;
  margin-bottom: 1rem;
}

.zoom-text h3 {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  color: #432e14;
}

.zoom-text p {
  font-size: 1rem;
  color: #5a4124;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.close-button {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

  .loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #555;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .form-section {
  max-width: 720px;
  margin: 3rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.styled-form label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.styled-form input[type="text"],
.styled-form input[type="file"],
.styled-form select,
.styled-form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.styled-form textarea {
  resize: vertical;
}

.button-primary {
  background-color: #0e1a3b;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.preview-section {
  margin-top: 3rem;
  text-align: center;
}

.preview-image {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}

.ai-tag {
  display: inline-block;
  background: #f5d17d;
  color: #3e2b11;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.addons-group {
  margin-top: 1rem;
}

.success-message {
  margin-top: 2rem;
  color: green;
  font-weight: 600;
}

.hidden {
  display: none;
}

.loading-container {
  text-align: center;
  margin-top: 2rem;
}
.workflow-section {
  background: #fff7ea;
  padding: 3rem 1rem;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.workflow-step {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f5d17d;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.step-number {
  display: inline-block;
  background: #0e1a3b;
  color: #fff;
  font-weight: bold;
  padding: 0.4rem 0.75rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.link-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: #0e1a3b;
  color: #f5d17d;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.link-button:hover {
  background-color: #1a2b4d;
  transform: translateY(-2px);
}

.link-button:active {
  background-color: #0e1a3b;
  transform: scale(0.97);
}
.watermark-overlay {
  position: absolute;
  bottom: 8px;
  right: 10px;
  color: white;
  font-size: 0.75rem;
  background-color: rgba(0,0,0,0.5);
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
}
.overlay-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  color: rgba(255, 255, 255, 0.25);
  font-size: 2rem;
  font-weight: bold;
  pointer-events: none;
  user-select: none;
}