*{
  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://images.unsplash.com/photo-1580281657527-47e6bb9d53a8") center/cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('img/backgroundImg.jpg');
  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:#fff;
}

.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%;
}

/* 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;
}
.container {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
  padding: 60px 8%;
}

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

.content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.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;
  }
}
