/* Reset and base styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #e5d8d3; /* soft background */
  color: #3c0067; /* dark purple text */
  line-height: 1.6;
}

/* Navigation Bar */
header {
  background-color: #f3e9f0; /* light pastel purple */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .logo img {
  width: 60px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-weight: 700;
  color: #3c0067;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #9b59b6;
}

/* Original Hero Section */
.hero-section.original-hero {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  box-sizing: border-box;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

.hero-text {
  max-width: 45%;
}

.hero-text img.bacp-badge {
  width: 150px;
  margin-bottom: 25px;
  display: block;
}

.hero-text h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}

.hero-text p.quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 0;
  line-height: 1.4;
  max-width: 400px;
}

/* Right column image */
.hero-image img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* New About Me Section */
.hero-section.about-me-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  box-sizing: border-box;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

/* Left Image */
.hero-image-left {
  max-width: 45%;
  flex-shrink: 0;
}

.hero-image-left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: block;
}

/* Right About Me Text */
.hero-text-right {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text-right h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #3c0067;
}

.hero-text-right h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 5px 0 15px 0;
  color: #6a1b9a; /* purple */
  font-style: italic;
  line-height: 1.2;
}

.hero-text-right p {
  font-size: 1rem;
  color: #3c0067;
}

.hero-text-right a {
  color: #9b59b6;
  text-decoration: none;
  font-weight: 600;
}

.hero-text-right a:hover {
  text-decoration: underline;
}

/* Book Appointment Button */
.btn-appointment {
  background-color: #9b59b6;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(155, 89, 182, 0.4);
  align-self: flex-start;
}

.btn-appointment:hover {
  background-color: #7e3ea1;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-section.original-hero,
  .hero-section.about-me-section {
    flex-direction: column;
    padding: 20px 30px;
  }

  .hero-text,
  .hero-image,
  .hero-image-left,
  .hero-text-right {
    max-width: 100%;
  }

  .hero-text,
  .hero-text-right {
    margin-top: 20px;
  }

  nav ul {
    gap: 15px;
  }
}
.hero {
  padding: 40px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-image img {
  width: 350px; /* apne hisaab se size change kar sakti ho */
  border-radius: 10px;
}

.hero-content {
  flex: 1;
  padding-left: 40px;
}

.box-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.box {
  flex: 1;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 10px;
  text-align: center;
}
.hero-image img {
  width: 300px;   /* adjust as you like */
  height: auto;   /* keeps aspect ratio */
}