.map-container {
	position: relative;
}

.india-map {
	width: 100%;
	height: auto;
	display: block;
}

.dot {
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	background: #AFD818;          /* Inner color */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.dot span {
	color: #1c1c1c;
	padding-left: 0.313rem;
	font-weight: 500;
	font-size: 0.563rem;
}

/* White border + D3EF6C glow */
.dot::before {
	content: '';
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	border: 0.125rem solid #D3EF6C;   /* White border */
	box-sizing: border-box;
	animation: breathe 2.5s infinite ease-in-out;
	pointer-events: none;
	z-index: 3;
}

@keyframes breathe {
	0% {
		box-shadow: 0 0 4px 1px #AFD81866;  /* Smaller blur and spread */
	}
	50% {
		box-shadow: 0 0 8px 3px #AFD818;    /* Moderate pulse */
	}
	100% {
		box-shadow: 0 0 4px 1px #AFD81866;
	}
}






.label {
	position: absolute;
	left: 120%;
	top: 50%;
	transform: translateY(-50%);
	color: #333;
	font-size: 1rem;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0.8;
}
/* Positioning classes using rem units */
.uttar {
	top: 7.5rem;
	left: 8rem;
}

.hiaml {
	top: 4rem;
	left: 6rem;
}

.haryana {
	top: 6.3rem;
	left: 5.5rem;
}

.gujrat {
	top: 10.6rem;
	left: 2.4rem;
}

.raja {
	top: 8rem;
	left: 2.9rem;
}

.andhrap {
	top: 16.5rem;
	left: 7.2rem;
}

.resources .toggle span {
	background-color:var(--white);
}
.resources .toggle span::before {
	background-color:var(--white);
}
.resources .toggle span::after {
	background-color:var(--white);
}
.resources .toggle.active span::before{
	background-color:var(--black);
}
.resources .toggle.active span::after{
	background-color:var(--black);
}


/* Popup Styles */
.pdf-form-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 9999;

}

.pdf-form-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 1.25rem;
}

.popup-content {
	position: relative;
	background-color: #fff;
	padding: 1.875rem;
	border-radius: 0.5rem;
	max-width: 37.5rem;
	width: 100%;
	margin: auto;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
}

.close-popup {
	position: absolute;
	top: 1.75rem;
	right: 1.75rem;
	cursor: pointer;
	/*     padding: 10px; */
	z-index: 1;
}

.close-popup img {
	width: 0.875rem;
	height: 0.875rem;
	transition: transform 0.2s ease;
}

.close-popup:hover img {
	transform: scale(1.1);
}

/* Form Styles within popup */
.popup-content .wpforms-container {
	margin-bottom: 0;
}

.video-thumbnail {
	position: relative;
	cursor: pointer;
}

.video-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 3.75rem;
	height: 3.75rem;
	display: flex;
	background-repeat: no-repeat;
	align-items: center;
	justify-content: center;
	background-image: url('/wp-content/themes/alpha-x-theme-framework/assets/images/logos_youtube-icon.svg');
	transition: background 0.3s ease;
}

/* .video-thumbnail:hover .play-overlay {
background: rgba(0, 0, 0, 0.8);
} */

.play-overlay img {
	width: 1.5rem;
	height: 1.5rem;
}

.video-link {
	display: block;
	position: relative;
}

@media screen and (min-width: 992px){
	.dot {
		width: 0.688rem;
		height: 0.688rem;
	}
	.dot::before {
		width: 0.688rem;
		height: 0.688rem;
	}
	.close-popup img {
		width: 1.563rem;
		height: 1.563rem;
	}
	.popup-content{
		padding: 3rem;
		max-width: 41.563rem;
	}
	.close-popup {
		top: 1.625rem;
		right: 1.625rem;
	}	

	/* Positioning classes using rem units */
	.uttar {
		top: 14.5rem;
		left: 16rem;
	}

	.hiaml {
		top: 7.44rem;
		left: 11.25rem;
	}

	.haryana {
		top: 12.5rem;
		left: 10.5rem;
	}

	.gujrat {
		top: 20.63rem;
		left: 4.5rem;
	}

	.raja {
		top: 15.75rem;
		left: 6rem;
	}

	.andhrap {
		top: 33.5rem;
		left: 14.5rem;
	}
	.dot span{
		font-size: 1.125rem;
	}


}