/*
 * Component : Astrologers free-chat CTA — mobile
 * File      : css/mobile/components/cta-astrologers.css
 * Loaded by : np_cta_astrologers() via np_register_component()
 */
.np-cta-astrologers {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	padding: 50px;
	background-image: linear-gradient(135deg, rgba(9, 13, 35, .92), rgba(18, 25, 60, .80)), url('https://cdn.99pandit.com/99pandit_newhome/img/astro-cta-bg_1.webp') !important;
	background-size: cover;
	background-position: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.np-cta-astro-left {
	position: relative;
	z-index: 2;
}

.np-cta-astro-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.np-badge {
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
}

.np-badge-green {
	background: #22c55e;
	color: #fff;
}

.np-badge-light {
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
}

.np-cta-astro-heading {
	color: #fff;
	font-size: 52px;
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 15px;
}

.np-cta-astro-desc {
	color: rgba(255, 255, 255, .88);
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.np-cta-astro-points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 30px;
}

.np-cta-astro-points span {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	padding: 5px 10px;
	border-radius: 50px;
	font-size: 14px;
}

.np-cta-astro-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	background: var(--np-saffron, #F37420) !important;
	color: #fff !important;
	padding: 16px 30px;
	border-radius: 50px !important;
	font-size: 16px;
	font-weight: 700;
	transition: .3s;
    text-decoration: none !important;
}

.np-cta-astro-btn:hover {
	color: #fff !important;
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(255, 152, 0, .40);
}

/* RIGHT SIDE */
.np-cta-mobile-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.np-mobile-glow {
	position: absolute;
	width: 260px;
	height: 260px;
	background: #ff9800;
	border-radius: 50%;
	filter: blur(100px);
	opacity: .35;
}

.np-cta-astro-img {
	position: relative;
	z-index: 2;
	width: 380px;
	max-width: 100%;
	animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}

	100% {
		transform: translateY(0);
	}
}

/* MOBILE */
@media(max-width:991px) {
	.np-cta-astrologers {
		padding: 30px;
		text-align: center;
	}

	.np-cta-astro-heading {
		font-size: 34px;
	}

	.np-cta-astro-desc {
		font-size: 16px;
	}

	.np-cta-astro-points {
		justify-content: center;
	}

	.np-cta-astro-img {
		width: 260px;
		margin-top: 20px;
	}
}