body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f7fc;
  color: #333;
}

header {
  background-color: #fff;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.logo img {
  height: 240px;
  width: 240px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

nav a {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

nav a:hover::after {
  width: 100%;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

.hero {
  background: #000;
  padding: 100px 20px 60px;
  color: #fff;
  text-align: center;
}

.overlay {
  max-width: 900px;
  margin: 0 auto 40px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.our-work-intro {
  font-size: 16px;
  font-style: italic;
  color: #aaa;
}

.samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.samples img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  cursor: zoom-in;
}

.samples img:hover {
  transform: scale(1.8);
  z-index: 10;
  position: relative;
}

/* Lightbox */
.lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
  z-index: 10000;
}

.embroidery-icons {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.embroidery-icons h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.embroidery-icons .section-intro {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #444;
  line-height: 1.6;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.icon-item {
  background-color: #f4f4f4;
  padding: 30px 10px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  font-size: 52px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-item span {
  margin-top: 15px;
  font-size: 18px;
  color: #222;
  font-weight: 500;
}

.icon-item:hover {
  transform: scale(1.05);
  background-color: #e8f4ff;
}

.contact {
  background-color: #000;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.contact-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  display: block;
  color: #eee;
}

.contact-form input[type="email"],
.contact-form input[type="text"],
.contact-form input[type="file"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form button {
  display: block;
  margin: 20px auto 0;
  padding: 10px 30px;
  font-size: 16px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
  max-width: 100%;
}
.contact-form button:hover {
  background-color: #e0e0e0;
}

.form-status {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 500;
}

.form-status.success {
  color: #00cc66;
}

.form-status.error {
  color: #ff4d4d;
}


footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

footer p {
  margin: 5px 0;
  font-size: 14px;
}

.file-label {
  display: block;
  max-width: 500px;
  margin: 10px auto 20px;
  font-size: 15px;
  color: #444;
}

.file-label input[type="file"] {
  margin-top: 8px;
  display: block;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}


/* Modal popup styles */
.modal {
  display: flex;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  max-width: 600px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  font-size: 24px;
  color: #000;
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.close-button {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #444;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.about-section {
  padding: 80px 20px;
  background-color: #fff;
  color: #111;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-container h1 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}