body {
font-family: "Urbanist", sans-serif;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
color:#ffffff;
}

.font-small {
	font-size:14px;
}

.bubbles {
position: fixed;
inset: 0;
pointer-events: none;
overflow: hidden;
z-index: 0;
}

.bubble {
position: absolute;
width: var(--size, 60px);
height: var(--size, 60px);
background: url("../images/plus.svg") no-repeat center/contain;
opacity: 1;
will-change: transform, opacity, left, top;
}

.logo h2 {
font-size:50px;
font-weight:700;
margin-bottom:0;
}

.comingsooncontainer {
background:url('../images/bg.jpg');
background-size:cover;
background-position:center center;
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
}

.thecontent {
position:absolute;width:100%;height:100%;left:0;top:0;z-index:1;
}

.thecontentarea {
margin-bottom:60px;
}

.themessage {
font-size:20px;
max-width:780px;
line-height:1.4
}

.whatsappicon {
position:absolute;
z-index:2;
bottom:20px;
right:20px;
}

.socialmedia {
z-index:999
}


.marquee {
position: relative;
width: 100%;
overflow: hidden;
white-space: nowrap; /* keep inline content on one line */
box-sizing: border-box;
padding: 6px 0 0;
background: #003032;
}

/* <-- KEY FIX: inline-flex so the clone sits beside (not below) the original --> */
.marquee__inner {
display: inline-flex;
align-items: center;
width: max-content; /* size to content */
gap: 0;
box-sizing: border-box;
}

.marquee__item a {
display: flex;
align-items: center;
gap: 12px;
color:#fff;
text-transform:uppercase;
font-weight:600;
text-decoration:none;
}
.marquee__item {
display: flex;
align-items: center;

padding: 0px 8px; /* spacing between items */
flex-shrink: 0;   /* important: do not allow items to shrink */
white-space: nowrap;
}

.marquee__item img {
width: 20px;
height: 20px;
object-fit: contain;
display: block;
}

.marquee__item span {
font-size: 18px;
font-weight: 500;
line-height: 1;
color: var(--text);
}

/* small niceties for pointer/hover */
.marquee__inner, .marquee__item { cursor: default; user-select: none; -webkit-user-select:none; }



.whatsapp-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 999;
display: inline-block; /* penting supaya hover cover sekali chatbox */
}

/* button */
.whatsapp-btn {
cursor: pointer;
transition: transform 0.6s ease-in-out;
display:block;
}

.whatsapp-btn:hover {
transform: rotate(360deg);
transition: transform 0.6s ease-in-out;
}
.whatsapp-btn img {}

/* chatbox */
.whatsapp-chatbox {
position: absolute;
bottom: 110px;
right: 0;
width: 380px;
background: #d7d7d7;
border-radius: 8px;
opacity: 0;
transform: translateY(10px);
transition: all 0.3s ease;
pointer-events: none;
}

.chat-header { background:#00848A; color:#fff; padding:10px; font-weight:bold; border-radius:8px 8px 0 0; }
.chat-body { padding:12px; font-size:14px; color:#333; }
.chat-btn { display:block; text-align:center; background:#25d366; color:#fff; padding:10px; text-decoration:none; font-weight:bold;margin:10px;border-radius:8px;}
.chat-btn:hover { background:#1ebe5b; }

/* show on hover */
.whatsapp-container:hover .whatsapp-btn {
transform: rotate(360deg);
}
.whatsapp-container:hover .whatsapp-chatbox {
opacity: 1;
transform: translateY(0);
pointer-events: auto; /* penting supaya boleh klik dalam chatbox */
}

.whatsappreplynote {
font-size:12px;
font-style:italic;
font-weight:300;
}

.chat-bubble {
position: relative;
display: inline-block;
background: #ffffff;    /* bubble color */
color: #000;
padding: 10px 10px;
border-radius: 8px;
max-width: 320px;
margin: 0px 10px;
box-shadow: 0 3px 8px rgba(0,0,0,0.12);
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* left-pointing arrow positioned toward the top-left */
.chat-bubble::before {
content: "";
position: absolute;
top: 10px;               /* adjust vertical position of the arrow */
left: -12px;             /* push arrow outside the bubble on the left */
width: 0;
height: 0;
/* border-width: top right bottom left */
border-width: 8px 12px 8px 0;
border-style: solid;
border-color: transparent #ffffff transparent transparent; /* right border colored -> arrow points left */
}


.stagger-animate {
opacity: 0;
transform: translateY(0px);
}











	.plus1 {
			position:absolute;
			left:-80px;
			transform:scale(0.4);
			animation: pulse1 3s ease-in-out infinite;
			animation-delay: 0s; /* Delay before animation starts */
		}
		
		@keyframes pulse1 {
		  0% {
			transform: scale(0.4);
		  }
		  50% {
			transform: scale(0.6);
		  }
		  100% {
			transform: scale(0.4);
		  }
		}
		
		.plus2 {
			position:absolute;
			left:180px;
			top:-150px;
			transform:scale(0.9);
			animation: pulse2 3s ease-in-out infinite;
			animation-delay: 1s; /* Delay before animation starts */
		}
		
		@keyframes pulse2 {
		  0% {
			transform: scale(0.9);
		  }
		  50% {
			transform: scale(1.4);
		  }
		  100% {
			transform: scale(0.9);
		  }
		}
		
		.plus3 {
			position:absolute;
			right:0;
			top:250px;
			transform:scale(1);
			animation: pulse3 2s ease-in-out infinite;
			animation-delay: 0s; /* Delay before animation starts */
		}
		
		@keyframes pulse3 {
		  0% {
			transform: scale(1);
		  }
		  50% {
			transform: scale(1.3);
		  }
		  100% {
			transform: scale(1);
		  }
		}
		
		
		.plus4 {
			position:absolute;
			right:100px;
			top:0px;
			transform:scale(0.6);
			animation: pulse4 7s ease-in-out infinite;
			animation-delay: 0s; /* Delay before animation starts */
		}
		
		@keyframes pulse4 {
		  0% {
			transform: scale(0.6);
		  }
		  50% {
			transform: scale(0.9);
		  }
		  100% {
			transform: scale(0.6);
		  }
		}
		
		.plus5 {
			position:absolute;
			left:300px;
			bottom:-200px;
			transform:scale(0.6);
			animation: pulse5 2s ease-in-out infinite;
			animation-delay: 0.5s; /* Delay before animation starts */
		}
		
		@keyframes pulse5 {
		  0% {
			transform: scale(0.6);
		  }
		  50% {
			transform: scale(0.8);
		  }
		  100% {
			transform: scale(0.6);
		  }
		}











@media (max-width:768px) {
	
	.whatsapp-btn img {
    width: 80px;
    height: 80px;
}

	.whatsapp-chatbox {
			bottom: 92px;
	}

	.plus5 {
		display:none;
	}
	
	.plus3 {
	display:none;
	}
	
	.themessage {
		font-size:16px;
	}
	
	.plus2 {
		left:80px;
		top:-120px;
	}
	
	@keyframes pulse2 {
		  0% {
			transform: scale(0.4);
		  }
		  50% {
			transform: scale(0.6);
		  }
		  100% {
			transform: scale(0.4);
		  }
		}
	
	.plus4 {
	top:-100px;
	right:50px;
	}
	
	@keyframes pulse4 {
		  0% {
			transform: scale(0.2);
		  }
		  50% {
			transform: scale(0.4);
		  }
		  100% {
			transform: scale(0.2);
		  }
		}
	
	.logo h2 {
		font-size:7vw;
	}
	
	.logo img {
		width:70vw;
	}
	
	.socialmedia {
		transform:translateX(0)!important;
		left:20px!important;
	}
}

@media (max-width:520px) {
	.whatsapp-chatbox {
    position: absolute;
    bottom: 110px;
    right: 0;
    width: 318px;
    background: #d7d7d7;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s 
ease;
    pointer-events: none;
}



.chat-body {
    padding: 12px;
    font-size: 13px;
    color: #333;
}
}

@media (max-width:520px) {
.themessage {
	max-width:292px;
}
}