#head{
    font-size: 60px;
    flex-wrap: nowrap;
    word-break: normal;
    word-spacing: 0%;
}

.whatsapp-sticky {
	position: fixed;
	bottom: 90px; /* slightly above the sticky CTA */
	right: 16px;
	z-index: 1001;
  }

  .whatsapp-sticky a {
	background-color: #25D366;
	color: #fff;
	font-size: 68px;
	font-weight: bold;
	padding: 18px 18px;
	border-radius: 50px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .whatsapp-sticky a i {
	font-size: 20px;
  }


  .cta-buttons {
	display: none; /* Hide by default */
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	text-align: center;
	z-index: 9;
  }
  
  .cta-button {
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 15px 30px; */
	min-height: 60px;
	/* margin: 5px; */
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	/* border-radius: 5px; */
	color: #fff;
	width: 48%; /* Buttons will take up full width when combined */
  }
  
  .call-now {
	background-color: #73c1d7; /* Premium Red */
  }
  
  .contact-us {
	background-color: #265765; /* Premium Blue */
  }
  
  /* Mobile View Only */
  @media (max-width: 767px) {
	.cta-buttons {
	  display: flex; /* Show buttons on mobile */
	}
  
	.cta-button {
	  width: 100%; /* Full width buttons */
	}
  }