/* Experience Card Elementor Widget Styles */

.aw-experience-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	overflow: hidden;
	background-color: #e8f7f8;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aw-experience-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.aw-experience-card-link-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	text-decoration: none;
}

.aw-experience-card-image {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.aw-experience-card-content-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}


.aw-experience-card-info {
	padding: 20px;
	text-align: center;
	background-color: #e8f7f8; /* default light blue */
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aw-experience-card-title {
	margin: 0;
	color: #1a2b3c;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

/* Video Box Widget Styles */

.aw-video-box-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: block;
}

.aw-video-box-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.aw-video-box {
	position: relative;
	width: 100%;
	height: 450px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aw-video-play-btn {
	background-color: #ffffff;
	color: #1a2b3c;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 5;
	position: relative; /* Ensure it respects z-index if needed */
}

.aw-video-box-wrap:hover .aw-video-play-btn {
	transform: scale(1.1);
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.aw-video-play-btn i,
.aw-video-play-btn svg {
	display: block;
	width: 1em;
	height: 1em;
	margin: auto;
}

.aw-video-play-btn i {
	margin-left: 5px; /* Offset to center the play triangle optically */
}

/* Circle Carousel Widget Styles */
.aw-circle-carousel-wrapper {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.aw-circle-carousel-container {
	position: relative;
	width: 450px;
	height: 450px;
	max-width: 100%;
	margin: 0 auto;
}

.aw-dashed-circle {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	border: 1px dashed #bccad6;
	border-radius: 50%;
	z-index: 1;
}

.aw-circle-carousel-container {
	position: relative;
	margin: 0 auto;
	max-width: 100%;
	aspect-ratio: 1 / 1;
}

.aw-circle-carousel {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border-radius: 50%;
	/* overflow: visible to allow pagination inside but positioned outside */
	overflow: visible !important;
	z-index: 3;
	display: block !important;
}

/* Inner wrapper to keep the circular mask while allowing outer elements */
.aw-circle-carousel .swiper-wrapper {
	display: flex !important;
	width: 100% !important;
	height: 100% !important;
	position: relative;
	z-index: 1;
	border-radius: 50%;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}

.aw-circle-carousel .swiper-slide {
	position: relative;
	width: 100% !important;
	height: 100% !important;
	flex-shrink: 0;
	opacity: 0 !important;
	transition: opacity 0.5s ease-in-out;
}

.aw-circle-carousel .swiper-slide-active,
.aw-circle-carousel .swiper-slide-duplicate-active {
	opacity: 1 !important;
}

.aw-carousel-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	display: block;
}

.aw-carousel-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	width: 100%;
	min-height: 20px;
}

.aw-circle-carousel .swiper-pagination {
	position: absolute !important;
	bottom: -50px !important;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 10;
}

.aw-circle-carousel-wrapper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #e6e6e6;
	opacity: 1;
	margin: 0 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.aw-circle-carousel-wrapper .swiper-pagination-bullet-active {
	background: #00b4b6; /* Teal active color */
	width: 24px;
	border-radius: 4px;
}
