.logo_text small {
	display: block;
	font-size: 18px;
	line-height: 1.2;
	margin-top: 4px;
	letter-spacing: 1px;
	opacity: 0.8;
}
.img_centered_full {
	width: 100%;
	height: 500px; /* Adjust this to your preferred height */
	overflow: hidden;
	display: flex;
	align-items: center;   /* Vertical centering */
	justify-content: center; /* Horizontal centering */
}

.img_centered_full img {
	/* Gunakan max-width supaya imej tidak pecah jika bekas (container) terlalu besar */
	width: 100%;
	
	/* Tukar height: 100% kepada auto untuk mengekalkan nisbah (aspect ratio) asal */
	height: auto;

	/* Tetapan tambahan untuk memastikan imej tidak melimpah keluar dari container */
	max-width: 100%;
	display: block;
	
    /* Jika anda tetap mahu mengekalkan ketinggian tetap tetapi mahu 'auto fit', 
       kekalkan object-fit tetapi pastikan container mempunyai ketinggian (height) */
       object-fit: contain; /* Tukar 'cover' kepada 'contain' jika anda mahu seluruh imej kelihatan tanpa dipotong */
       object-position: center;
   }
   .whatsapp-sticky {
   	position: fixed;
   	bottom: 30px; /* Distance from bottom */
   	right: 30px;  /* Distance from right */
   	background-color: #25d366; /* WhatsApp Green */
   	color: #fff;
   	padding: 12px 20px;
   	border-radius: 50px;
   	z-index: 9999; /* Ensures it stays above all other elements */
   	display: flex;
   	align-items: center;
   	box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
   	text-decoration: none;
   	transition: all 0.3s ease;
   }

   .whatsapp-sticky i {
   	font-size: 24px;
   	margin-right: 10px;
   }

   .whatsapp-sticky span {
   	font-family: 'Roboto', sans-serif;
   	font-weight: 500;
   }

   .whatsapp-sticky:hover {
   	background-color: #128c7e; /* Darker green on hover */
   	color: #fff;
   	transform: scale(1.05);
   	text-decoration: none;
   }