.wp-block-jetpack-slideshow[data-autoplay=true] .wp-block-jetpack-slideshow_button-pause {
	display: none !important;
}

Below code is for hiding small circles at the bottom.

.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-bullets {
	display: none;
}

html {
	scroll-behavior: smooth;
}

.team-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
	background: #f9f9f9;
	padding: 20px 0;
}

.team-wrapper {
	display: flex;
	flex-wrap: wrap;
/* ✅ Now it will wrap into 2 rows */
	justify-content: center;
	gap: 20px;
}

.team-group {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
}

.team-member {
	flex: 0 0 calc(25% - 20px);
/* ✅ 4 members per row */
	text-align: center;
	padding: 15px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform .4s ease-in-out;
}

.team-member:hover {
	transform: scale(1.05);
}

.team-member img {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 10px;
}

.team-name {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

.team-designation {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: italic;
	color: #666;
}

/* ✅ Mobile Responsive (4 in Desktop, 2 in Mobile) */
@media (max-width: 768px) {
	.team-member {
		flex: 0 0 calc(50% - 20px);
	/* ✅ 2 members per row in mobile */
	}
}

//HappyCustomer

@keyframes count {
}

to {
	content: attr(data-count);
}	
}

.count::after {
	content: "0";
	animation: count 3s linear forwards;
}

.count[data-count="3000"]::after {
	counter-reset: num 3000;
	content: counter(num);
}

.count[data-count="20"]::after {
	counter-reset: num 20;
	content: counter(num);
}

.count[data-count="10"]::after {
	counter-reset: num 10;
	content: counter(num);
}

.count[data-count="100"]::after {
	counter-reset: num 100;
	content: counter(num);
}

//products
body {
	font-family: Arial, sans-serif;
	scroll-behavior: smooth;
}

h2 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}

summary {
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	background-color: #f0f0f0;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 5px;
}

summary:hover {
	background-color: #ddd;
}

details {
	margin-bottom: 10px;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 5px;
}

details a {
	display: block;
	text-decoration: none;
	padding: 5px;
	color: #333;
	margin-left: 20px;
}

details a:hover {
	background-color: #ddd;
}	
}

//maps
.map-container {
	width: 100%;
	max-width: 100%;
	height: auto;
	text-align: center;
}

.map-container iframe {
	width: 100%;
	height: 350px;
/* Mobile-friendly height */
	border: 0;
}