/* AG Bullet Card Widget Styles */
.ag-bullet-card {
	width: 100%;
	max-width: 1310px;
	margin: 0 auto;
	position: relative;
	direction: rtl;
}

/* LTR Direction Modifier */
.ag-bullet-card--dir-ltr {
	direction: ltr;
}

.ag-bullet-card--dir-ltr .ag-bullet-card__card-content {
	text-align: left;
}

.ag-bullet-card--dir-ltr .ag-bullet-card__card-item {
	padding-right: 0;
	padding-left: 15px;
}

.ag-bullet-card--dir-ltr .ag-bullet-card__card-item::before {
	right: auto;
	left: 0;
}

/* Header Section */
.ag-bullet-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	position: relative;
}

.ag-bullet-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: linear-gradient(90deg, #2673B7 0%, #3192E8 100%);
	color: #FFFFFF;
	font-size: 15px;
	font-family: 'Abril Fatface', serif;
	font-weight: 400;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.ag-bullet-card__button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.ag-bullet-card__main-title {
	color: #FFFFFF;
	font-size: 48.13px;
	font-family: 'Abhaya Libre ExtraBold', serif;
	font-weight: 800;
	line-height: 59.88px;
	letter-spacing: 0.48px;
	text-align: center;
	margin: 0;
}

/* Cards Grid */
.ag-bullet-card__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 60px;
}

/* Individual Card */
.ag-bullet-card__card {
	position: relative;
	background: #121212;
	border-radius: 30px;
	outline: 1px solid #313131;
	outline-offset: -0.5px;
	padding: 30px;
	min-height: 398px;
	overflow: hidden;
}

/* Card with Image Background */
.ag-bullet-card__card--bg-image {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* Background Overlay */
.ag-bullet-card__card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--ag-bullet-card-overlay, rgba(0, 0, 0, 0.5));
	z-index: 0;
	border-radius: 30px;
}

/* Glow Effects */
.ag-bullet-card__card-glow {
	position: absolute;
	transform: rotate(67deg);
	transform-origin: top left;
	background: #3192E8;
	border-radius: 160px;
	pointer-events: none;
	z-index: 1;
}

.ag-bullet-card__card-glow--top {
	width: 326.91px;
	height: 27.59px;
	left: -78.7px;
	top: -62.23px;
	opacity: 0.3;
	box-shadow: 234px 234px 234px;
	filter: blur(117px);
}

.ag-bullet-card__card-glow--bottom {
	width: 365.57px;
	height: 39.25px;
	left: 169.69px;
	top: 401.85px;
	box-shadow: 184px 184px 184px;
	filter: blur(92px);
}

/* Card Content */
.ag-bullet-card__card-content {
	position: relative;
	z-index: 2;
	text-align: right;
}

.ag-bullet-card__card-title {
	color: #3192E8;
	font-size: 26px;
	font-family: 'Abril Fatface', serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.ag-bullet-card__card-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ag-bullet-card__card-item {
	color: #FFFFFF;
	font-size: 18px;
	font-family: 'Abril Fatface', serif;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 12px;
	padding-right: 15px;
	position: relative;
}

.ag-bullet-card__card-item::before {
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background: #3192E8;
	border-radius: 50%;
}

.ag-bullet-card__card-item:last-child {
	margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.ag-bullet-card__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.ag-bullet-card__header {
		flex-direction: column;
		gap: 20px;
	}

	.ag-bullet-card__main-title {
		font-size: 36px;
		line-height: 1.3;
	}

	.ag-bullet-card__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ag-bullet-card__main-title {
		font-size: 28px;
	}

	.ag-bullet-card__grid {
		grid-template-columns: 1fr;
	}

	.ag-bullet-card__card {
		min-height: auto;
	}
}
