/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 90px;
	right: 20px;
	z-index: 1000;
}

.whatsapp-float a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float a:hover {
	background-color: #128c7e;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
	color: #ffffff;
	font-size: 30px;
}

@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 80px;
		right: 20px;
	}
	.whatsapp-float a {
		width: 50px;
		height: 50px;
	}
	.whatsapp-float i {
		font-size: 25px;
	}
}

/* Sponsors Grid Styles */
.sponsors-grid {
	position: relative;
}

.sponsors-grid .sponsor-block {
	position: relative;
	margin-bottom: 30px;
	text-align: center;
}

.sponsors-grid .sponsor-block .image {
	position: relative;
	display: inline-block;
	max-width: 100%;
	transition: all 0.3s ease;
}

.sponsors-grid .sponsor-block .image img {
	position: relative;
	max-width: 100%;
	height: auto;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.sponsors-grid .sponsor-block:hover .image img {
	opacity: 1;
	transform: scale(1.05);
}

.sponsors-grid .sponsor-block .image a {
	display: block;
	text-decoration: none;
}

/* Testimonials Grid Styles */
.testimonials-grid {
	position: relative;
}

.testimonials-grid .testimonial-block-one {
	position: relative;
	margin-bottom: 30px;
}

.testimonials-grid .testimonial-block-one .inner-box {
	position: relative;
	padding: 30px 30px;
	background-color: rgba(0, 0, 0, 0.85);
	height: 100%;
	transition: all 0.3s ease;
}

.testimonials-grid .testimonial-block-one:hover .inner-box {
	background-color: rgba(0, 0, 0, 0.95);
	transform: translateY(-5px);
}

.testimonials-grid .testimonial-block-one .author-box {
	position: relative;
	min-height: 80px;
	padding-left: 100px;
}

.testimonials-grid .testimonial-block-one .author-image {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 50%;
}

.testimonials-grid .testimonial-block-one strong {
	position: relative;
	display: block;
	color: #ffffff;
	font-size: 24px;
	font-family: "Lunchtype_Regular";
}

.testimonials-grid .testimonial-block-one .designation {
	position: relative;
	font-size: 18px;
	border-radius: 3px;
	padding: 7px 14px 4px;
	display: inline-block;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonials-grid .testimonial-block-one .text {
	position: relative;
	color: #ffffff;
	font-size: 20px;
	line-height: 32px;
	margin-top: 25px;
}

@media (max-width: 991px) {
	.testimonials-grid .testimonial-block-one {
		margin-bottom: 20px;
	}
	.testimonials-grid .testimonial-block-one .inner-box {
		padding: 25px 25px;
	}
	.testimonials-grid .testimonial-block-one .text {
		font-size: 18px;
		line-height: 28px;
	}
}

/* Responsive adjustments for sponsors grid */
@media (max-width: 1199px) {
	.sponsors-grid .sponsor-block {
		margin-bottom: 25px;
	}
}

@media (max-width: 991px) {
	.sponsors-grid .sponsor-block {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.sponsors-grid .sponsor-block {
		margin-bottom: 15px;
	}
}
