*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#fff;
  color:#333;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  height:320px;
  background:url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTU32_nKLukpC5Pq4pxodzDLw5b22T_CHw8Xw&s") center/cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('img-dr-gaurav/Background-service.png');
  background-repeat: repeat-y;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 8%;
  color:#000;
}

.hero-content h1{
  font-size:42px;
  max-width:700px;
  line-height:1.3;
  margin-bottom:15px;
}

.breadcrumb{
  font-size:14px;
}

.breadcrumb span{
  opacity:0.8;
}

/* ================= LAYOUT ================= */
.main{
  display:grid;
  grid-template-columns: 2.5fr 1fr;
  gap:40px;
  padding:60px 8%;
}

/* CENTER MAIN CONTENT WRAPPER */
.about-section{
  max-width:1200px;
  margin:40px auto;   /* centers horizontally */
  padding:0 20px;
}

/* LEFT CONTENT */
.content img{
  width:100%;
  border-radius:4px;
}

/* RIGHT SIDEBAR */
.sidebar{
  background:#e5a9e3;
  padding:30px;
  border-radius:4px;
}

.sidebar h3{
  color:#ff0000;
  font-size:18px;
  margin-bottom:20px;
}

.service-list{
  list-style:none;
}

.service-list li{
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,0.4);
  color:rgb(255, 154, 154);
  cursor:pointer;
  transition:padding-left 0.3s ease;
}
a{
  text-decoration: none;

}

.service-list li:hover{
  padding-left:10px;
}

/* WHATSAPP BUTTON */
.whatsapp{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25d366;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  z-index:1000;
}

/* LEFT CONTENT */
.content h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 16px 0;
}

.content strong {
  color: #000;
}

.content h3 {
  font-size: 20px;
  margin: 25px 0 10px;
}

.content h4 {
  font-size: 16px;
  margin-top: 15px;
}

/* RIGHT SIDEBAR */
.sidebar {
  background: #f3f3f3;
  padding: 25px;
  border-radius: 10px;
}

.sidebar h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.opd-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}

.sidebar p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .main{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:30px;
  }
}
.faq-section {
  padding: 60px 20px;
  background: #f8fbfd;
}



.section-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #1e2a38;
}

.faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f6c5f;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.service-area {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.7;
}

/* ================= FAQ CENTER FIX ================= */

.faq-section {
  padding: 70px 0;
  background: #f8fbfd;
}

.faq-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;   /* THIS CENTERS IT */
}

