.about-section {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  line-height: 1.8;
  text-align: left;
  animation: fadeIn 1.2s ease;
  display:block;

}

.about-section h2 {
  font-size: 2.5rem;
  color: #ff5a7a;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
}
buttona a{text-decoration: none;color:white;}
.about-section p {
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: #555;
}

@media (max-width: 768px) {
  .about-section {
    margin: 60px 20px;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}

/* Optional: Soft fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
 .grid2 {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 8px;
    }

 .grid6 {
      display: grid;
      grid-template-columns: 4fr,1fr;
      gap: 8px;
    }
    .grid9{display: grid;
      grid-template-columns: repeat(3,1fr);
        grid-template-rows: repeat(3,1fr);
      gap: 8px;}
    .nav-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Logo */
.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff5a7a;
  text-decoration: none;
}

/* Navigation Links */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  position: relative;
  transition: color 0.2s ease;
}

/* Hover Effect: underline animation */
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff5a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: #ff5a7a;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* Responsive (optional) */
@media (max-width: 768px) {
  .main-nav ul {
    gap: 16px;
  }

  .nav-header {
    padding: 16px 24px;
  }

  .logo a {
    font-size: 1.5rem;
  }
}
.image-container {
  max-width: 700px;      /* limits image size on large screens */
  margin: 40px auto;     /* centers horizontally with vertical spacing */
  text-align: center;    /* centers caption text */
  font-family: 'Helvetica Neue', sans-serif;
  color: #666;
  line-height: 1.4;
}

.image-container img {
  width: 100%;           /* makes image fully responsive */
  height: auto;          /* maintains aspect ratio */
  border-radius: 12px;   /* soft rounded corners */
  box-shadow: 0 6px 14px rgba(255, 90, 122, 0.25);  /* subtle pink shadow */
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-container img:hover {
  transform: scale(1.03); /* subtle zoom on hover */
  box-shadow: 0 10px 20px rgba(255, 90, 122, 0.4);
}

.image-container figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  font-style: italic;
  color: #aa5577;
}
.contact-section {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
  color: #ff5a7a;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
  color: #666;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 2px solid #ffb0bc;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Helvetica Neue', sans-serif;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff5a7a;
  box-shadow: 0 0 8px rgba(255, 90, 122, 0.6);
  outline: none;
}

.contact-form button {
  background-color: #ff5a7a;
  color: white;
  border: none;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e04868;
}

@media (max-width: 480px) {
  .contact-section {
    margin: 40px 10px;
  }

  .contact-section h2 {
    font-size: 1.8rem;
  }
}
.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: #fff8fb;
  font-family: 'Helvetica Neue', sans-serif;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 90, 122, 0.1);
  padding: 30px 25px;
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255, 90, 122, 0.15);
}

.pricing-card h2 {
  font-size: 2rem;
  color: #ff5a7a;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  padding-left: 20px;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff5a7a;
  font-weight: bold;
}
footer{text-align:center;}
  .grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 8px;
      width: 100vw;
  height: 100vh;}