
    .services1-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .service1-card {
      background-color: #ffe1d6;
      width: 375px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.2s;
    }

    .service1-card:hover {
      transform: translateY(-5px);
    }

    .service1-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .service1-title {
      padding: 15px;
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }

    @media (max-width: 768px) {
      .service1-card {
        width: 90%;
      }
    }
  body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fffaf5;
      color: #4a2e2b;
    }
h1.heading {
    color: #978E5F;
}

p.heading {
    color: #978E5F;
}
    header {
      background-color: #ffffff;
      color: white;
      padding: 4px 40px;
      text-align: center;
    }

    nav {
      background-color: #7c4c4a;
      padding: 10px 0;
      text-align: center;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
    }

    .hero {
      padding: 60px 20px;
      text-align: center;
      background-image: url('banner.jpg'); /* Replace with actual image */
      background-size: cover;
      background-position: center;
      color: white;
    }

    .hero h1 {
      font-size: 48px;
      margin: 0;
    }

    .hero p {
      font-size: 20px;
      margin-top: 15px;
    }

    .section {
      padding: 40px 20px;
      text-align: center;
    }

    .products {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .product {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      width: 200px;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .product img {
      width: 100%;
      border-radius: 8px;
    }

    footer {
      background-color: #4a2e2b;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }
	.hero {
  padding: 60px 20px;
  text-align: center;
  background: #ffe6ea url('banner.jpg') no-repeat center center;
  background-size: cover;
  color: #4a2e2b;
}
.hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffe6ea; /* Light pink background */
  color: #4a2e2b;
}

    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .service-card {
      background-color: #ffe1d6;
      width: 250px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.2s;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .service-title {
      padding: 15px;
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }

    @media (max-width: 768px) {
      .service-card {
        width: 90%;
      }
    }

    /* Modal Styles */
   .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #fff;
  margin: 100px auto;
  padding: 30px 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #7a3e3e;
}

.modal-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  transition: 0.2s;
  cursor: pointer;
}

.close:hover {
  color: #333;
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


    .container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px; /* <-- This adds space on left and right */
    }

    .tailoring-section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
    }

    .left-column {
      flex: 1;
      min-width: 300px;
    }

    .right-column {
      flex: 1;
      min-width: 300px;
    }

    .left-column h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .left-column p,
    .right-column p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .left-column img,
    .right-column img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .tailoring-section {
        flex-direction: column;
      }
    }
 
     .process-section {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .process-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .process-card {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 5px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.06);
      transition: transform 0.2s;
    }

    .process-card:hover {
      transform: translateY(-5px);
    }

    .process-card h3 {
      font-size: 20px;
      color: #222;
      margin-bottom: 15px;
    }

    .process-card p {
      font-size: 14.5px;
      line-height: 1.6;
      color: #555;
    }
	
	
  .contact-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      align-items: flex-start;
    }

    .contact-form {
      flex: 1;
      min-width: 320px;
      padding: 20px;
      border-radius: 10px;
      background-color: #f9f9f9;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .contact-form h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: #7a3e3e;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 12px 15px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }

    .contact-form textarea {
      resize: vertical;
      height: 120px;
    }

    .contact-form button {
      padding: 12px 20px;
      background-color: #7a3e3e;
      color: #fff;
      border: none;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .contact-form button:hover {
      background-color: #5a2e2e;
    }

    .contact-info {
      flex: 1;
      min-width: 300px;
    }

    .contact-info h2 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .contact-info p {
      font-size: 15.5px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    .info-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      display: flex;
      gap: 15px;
      align-items: flex-start;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .info-card-icon {
      font-size: 28px;
      color: #7a3e3e;
    }

    .info-card-content h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: #7a3e3e;
    }

    .info-card-content p {
      margin: 0;
      font-size: 15px;
      color: #444;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

      .contact-form,
      .contact-info {
        width: 100%;
      }
    }
	
	  .why-choose-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .why-text {
      flex: 1;
      min-width: 320px;
    }

    .why-text h2 {
      font-size: 32px;
      margin-bottom: 25px;
      color: #3e1f1f;
    }

    .why-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .why-list li {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 12px;
      position: relative;
      padding-left: 32px;
    }

    .why-list li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      font-size: 16px;
      color: #7a3e3e;
    }

    .why-image {
      flex: 1;
      min-width: 320px;
    }

    .why-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    @media (max-width: 768px) {
      .why-choose-section {
        flex-direction: column-reverse;
      }
    }
	
	    .gallery-section {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }

    .gallery-section h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
      color: #3a1f1f;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .gallery-grid img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-grid img:hover {
      transform: scale(1.03);
    }

    @media (max-width: 768px) {
      .gallery-section {
        padding: 0 10px;
      }
    }