/* Fonts */
body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Navigation */
/* Overlay navbar on hero image */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 2.5rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Make logo bigger and overlay */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Playfair Display', serif;
  gap: 0.3rem;
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  z-index: 11;
}

.logo-img {
  width: 128px;
  height: auto;
  display: block;
}

.logo-text {
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Yellow menu text, overlay at top right */
.nav-links {
  position: absolute;
  top: 2rem;
  right: 8rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 11;
}

.nav-links a {
  text-decoration: none;
  color: #FFD600;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}


/* Hero Section */
.hero {
  display: flex;
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.hero-main-image {
  position: relative;
  flex: 1 1 0;
  height: 100%;
}

.hero-main-image .hero-side-overlay {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  pointer-events: none; /* optional: lets clicks pass through */
  z-index: 2;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.anil-tailor-name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Bauhaus 93', 'Arial', sans-serif;
  font-size: 4rem;
  gap: 0.5rem;
  margin-left: 400px; /* space to the right of logo */
  z-index: 12;
}
.anil-tailor-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.4rem;
  color: #444;
  font-weight: normal;
  margin-top: -2rem;
  letter-spacing: normal;
  width: 100%;
  text-align: left;
}

.anil-tailor-line {
  font-size: 6rem;
  color: #5f5f5f;
  letter-spacing: 2px;
  font-weight: bold;
  white-space: nowrap; /* Keeps name on one line */
}
.anil-tailor-name .orange {
  color: #d97706; /* dark orange */
}
.review-badge {
  margin-top: 0.5rem;
  margin-left: -0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 150px;
}

.review-badge iframe {
  width: 100%;
  min-height: 40px;
  border: none;
  display: block;
}

.book-btn {
  display: inline-block;
  padding: 1.5rem 0.8rem;
  width: 90%;
  background: #183059;
  color: #fff;
  border-radius: 5px;
  font-family: 'Playfair Display', serif;
  font-weight: 100;
  text-decoration: none;
  text-align: center;
  font-size: 1.5rem;
  transition: background 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(24, 48, 89, 0.25); /* Drop shadow added */
}
.book-btn:hover {
  background: #98a4b9;
  box-shadow: 0 6px 24px rgba(24, 48, 89, 0.35); /* Stronger shadow on hover */
}
/* Right-align only the last div (.hero-text) on desktop */
.anil-tailor-name > .hero-text {
  display:flex;
  flex-direction: column;
  width: 180%;
  bottom: 20%;
  left: 5%;      /* This sets the left offset */
  color: white;
  
  background: linear-gradient(to right, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
  padding: 1rem 0 0 1rem;
  border-radius: 5px;
  margin-left: -24.5rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  color: #f3f04b; /* dark orange */
  margin-top: 0;
  margin-bottom: 10px;
  padding:0;
}


/* Main Content */
.content {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}
.section-heading-row {
  width: 100%;
  background: #183059; /* dark blue */
  padding: 0.7rem 0;
  text-align: center;
  border-radius: 8px 8px 0 0;
}

.section-heading-row h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
  font-weight: 700;
}

.home-btn {
  display: inline-block;
  margin: 2rem auto 0 auto;
  padding: 0.5rem 1.1rem;
  background: #183059;
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(24,48,89,0.08);
  border: none;
  transition: background 0.2s;
  text-align: center;
}
.home-btn:hover {
  background: #14532d;
}
/* Alternating section backgrounds */
.section-bg-grey1 {
  background: #f5f6fa;
  border-radius: 0 0 8px 8px;
  padding: 2rem 1.5rem;
}

.section-bg-grey2 {
  background: #e9ecef;
  border-radius: 0 0 8px 8px;
  padding: 2rem 1.5rem;
}

.section-bg-grey3 {
  background: #2f3332;
  border-radius: 0 0 8px 8px;
  padding: 2rem 1.5rem;
}


.three-column-section {
  
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
}

.three-column-section .column {
  flex: 1;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 1.5rem;
  margin: 0;
  border: 1px solid #e0e0e0;           /* Add a subtle border */
  transition: 
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.three-column-section .column:hover {
  background: #f0f8f4;                  /* Subtle background change */
  box-shadow: 0 4px 16px rgba(20,83,45,0.10); /* Slightly stronger shadow */
  border-color: #b5e0c7;                /* Slight border color change */
}

.three-column-section .column h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #14532d;
}

.three-column-section .column p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  padding-bottom: 12px;
}

.three-column-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%
  max-width: 1200px;
  margin: 0 auto;
}

.three-column-content .column {
  flex: 1;
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 1rem;
  margin: 0;
}

.three-column-content .column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #14532d;
}

.three-column-content .column p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}
.three-column-content .column ul,
.three-column-content .column ol {
  margin-top: 0;
  margin-bottom: 0.5em;
  padding-left: 1.2em; /* or adjust as needed for bullet indent */
}
.three-column-content .column li {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.2;
}
.three-column-content .column .book-btn2 {
  display: inline-block;
  padding: 0.5rem 1.8rem;
  background: #183059;
  color: #ffffff;
  border-radius: 5px;
  font-family: 'Playfair Display', serif;
  font-weight: 100;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background 0.2s;
  margin-top: 1.5em;
  margin-left: 0;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(24, 48, 89, 0.25); /* Drop shadow added */
}
.three-column-content .column .book-btn2:hover {
  background: #98a4b9;
  box-shadow: 0 6px 24px rgba(24, 48, 89, 0.35); /* Stronger shadow on hover */
}
.patient-reviews-section {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-cell {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.review-cell:hover {
  background: #f0f8f4;
  border-color: #b5e0c7;
  box-shadow: 0 4px 16px rgba(20,83,45,0.10);
}

.review-text {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.review-ratings {
  margin-top: auto;
}

.review-ratings div {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
}

.rating-label {
  min-width: 130px;
  font-weight: 600;
  color: #14532d;
  margin-right: 0.5rem;
}

.stars {
  color: #fbbf24; /* gold */
  font-size: 1.1em;
  margin-right: 0.4em;
}
.review-date {
  font-size: 0.6rem;
  color: #888;
  margin-top: 0.7rem;
  text-align: right;
}

.doctify-widget-section {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
}


.doctify-widget-section .section-bg-grey1 {
  padding-top: 0;
}

.why-choose-section {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 2.2rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.why-choose-img-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-img-cell img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: #0d130f;
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.why-choose-text-cell {
  margin-left: 2rem;
}
.why-choose-text-cell h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #ffd600;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.why-choose-text-cell p {
  margin: 0;
  font-size: 1rem;
  color: #e0e0e0;
  font-family: 'Lato', sans-serif;
}
.fees-section {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #e0e0e0;
}

.fees-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.colposcopy-expect-section  {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
}
.colposcopy-expect-section .section-heading-row {
  margin-bottom: 0;
}

.colposcopy-expect-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 1.5rem;
}

.expect-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0;
}

.expect-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* space between images */
}

.expect-img img {
  display: block;
  margin: 0;
  width: 140px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,48,89,0.08);
  background: #fff;
}
.expect-img-adjacent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem; /* space between images */
}

.expect-img-adjacent img {
  display: block;
  margin: 0;
  width: 140px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,48,89,0.08);
  background: #fff;
}

.expect-text {
  flex: 1;
}

.expect-text h3 {
  margin-top: 0;
  color: #14532d;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.expect-text ul {
  margin: 0.5em 0 0 1.2em;
  padding: 0;
  font-size: 1rem;
}

.expect-text li {
  margin-bottom: 0.3em;
  line-height: 1.3;
}

.seo-faq-section {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #e0e0e0;
  background: #e9ecef;
}


.seo-faq-section .faq-list {
  padding: 2rem 1.5rem;
}


.seo-faq-section h3 {
  color: #2f3332;
}

.seo-faq-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}
/* Alternate row backgrounds for visual separation */
.colposcopy-expect-content .expect-row:nth-child(even) {
  background: #f5f6fa;
  border-radius: 8px;
  padding: 1.2rem 0.8rem;
}

.youtube-videos-section {
  max-width: 1200px;
  margin: 3rem auto 2rem auto;
  
}

.youtube-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.youtube-videos-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.youtube-video-row {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.2rem 1.5rem;
  border: 1px solid #e0e0e0;
  gap: 1.5rem;
}

.youtube-video-img-link {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-video-img-link img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.youtube-video-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.youtube-video-title {
  font-size: 1.15rem;
  color: #14532d;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.2rem;
}

.youtube-video-title:hover {
  text-decoration: underline;
}

.youtube-video-narrative {
  font-size: 1rem;
  color: #333;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
}

/* Booking Form Styles */
.book-consultation-section {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1 1 200px;
  padding: 0.7rem;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}

.form-row textarea {
  min-width: 90%;
  resize: vertical;
}

.submit-btn {
  background: #14532d;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s;
  width: 200px;
}
.submit-btn:hover {
  background: #183059;
}

/* Footer */
footer {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 1rem;
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    margin-top: 0;
    padding-top: 0;
  }
  .hero-main-image .hero-side-overlay {
    height: 30%;
    width: auto;
    top: 170px;
    right: -10%;
    left: auto;
    transform: none;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem;
    position: absolute; /* Keep absolute so it overlays hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .nav-links {
    top: 1.2rem;
    right: 2.5rem;
    gap: 0.2rem;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    z-index: 11;
  }
  .nav-links a {
    color: #026e2e; /* Example dark green, adjust to match your logo */
  }
  .logo {
    position: static;
    align-items: center;      /* Center logo image and text horizontally */
    text-align: center;       /* Center text under image */
    margin-bottom: 0.2rem;
    display: flex;
    flex-direction: column;
  }
  .logo-img {
    width: 80px;
    margin-bottom: 0.2rem;
  }

  .logo-text {
    font-size: 1.1rem;
    text-align: center;       /* Center text under image */
    width: 100%;
  }
  
  .anil-tailor-name {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0.5rem;
    margin-top: 2.2rem;
    text-align: left;
    font-size: 3rem;
    z-index: 12;
  }
  
  .anil-tailor-line {
    font-size: 3rem;
    text-align: left;
    white-space: nowrap;
  }
  .anil-tailor-title {
    font-size: 1.3rem;
    margin-top: -0.8rem;
    width: 100%;
    text-align: left;
  }
    .review-badge {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    gap: 0.5rem;
  }
  .book-btn {
  width: 100%;
  margin-left: 0;
  margin-top: 60px;
  padding: 0.5rem 0.5rem;
  display: block;
  text-align: center;
  }

  .anil-tailor-name > .hero-text {
  display:flex;
  flex-direction: column;
  width: 100%;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 1rem 0 0 1rem;
  border-radius: 5px;
  margin-left: 0;
  margin-top: 10px;
}

  .hero-text h1 {
    font-size: 1.2rem;
  }
  .hero-text p {
    font-size: 1.0rem;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    color: #f3f04b; /* dark orange */
    margin-top: 0;
    margin-bottom: 10px;
    padding:0;
  }
  .three-column-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .three-column-content .column {
    padding: 1.2rem 1rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .patient-reviews-section {
    padding: 0 1rem;
  }
  .why-choose-grid {
    grid-template-columns: 80px 1fr; /* Image and text side by side */
    grid-template-rows: repeat(3, auto);
    gap: 1.2rem 1rem;
  }
  .why-choose-img-cell {
    justify-content: flex-start;
    margin-left: 0.7rem; /* Shift image slightly to the right */
  }
  .why-choose-img-cell img {
    width: 65px;   /* 70% of 80px (original 80px or 180px) */
    height: 65px;
    padding: 0.5rem;
  }
  .why-choose-text-cell {
    margin-left: 0.5rem;
    text-align: left;
    padding-right: 2.5rem; /* Increase right padding */
  }
  .expect-img-adjacent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* space between images */
}

.expect-img-adjacent img {
  display: block;
  margin: 0;
  width: 140px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,48,89,0.08);
  background: #fff;
}
  .youtube-videos-grid {
    gap: 1rem;
    padding: 0 1rem;
  }
  .youtube-video-row {
    padding: 0.8rem 1rem;
  }
  .youtube-video-img-cell {
    margin-right: 0.7rem;
  }
  .youtube-video-title-cell {
    font-size: 1rem;
  }
  .form-row {
    gap: 0.5rem;
  }
  .booking-form input,
  .booking-form select {
    padding: 0.1rem 0.4rem !important;
    font-size: 0.85rem !important;
    line-height: 1 !important;
    min-height: 1.8rem !important;
    height: 1.8rem !important;
    box-sizing: border-box !important;
  }
  .booking-form textarea {
    min-height: 2.5rem !important;
    font-size: 0.85rem !important;
    height: 4.5rem !important;
    resize: vertical;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}