.international-banner {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	background: url("/finsdemy-ci3/assets/portopolio/portopolio.png") center /
		cover no-repeat;
	overflow: hidden;
}
.international-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(11, 27, 63, 0.85) 0%,
		rgba(2, 48, 97, 0.78) 55%,
		rgba(2, 48, 97, 0.55) 100%
	);
	z-index: 1;
}
.international-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 0 80px;
	margin-top: 180px;
}
.international-content {
	max-width: 620px;
	color: #ffffff;
	animation: fadeUp 0.9s ease;
}

.banner-eyebrow {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 600;
	color: #bedced;
	margin-bottom: 14px;
}

.international-content h1 {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.international-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #d9e7f3;
	margin-bottom: 32px;
}
.banner-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-primary {
	padding: 14px 28px;
	border-radius: 12px;
	background: linear-gradient(135deg, #014a8f, #023061);
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 18px 40px rgba(1, 74, 143, 0.45);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 25px 55px rgba(1, 74, 143, 0.55);
}

.btn-secondary {
	padding: 14px 28px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.international-container {
		padding: 0 40px;
	}

	.international-content h1 {
		font-size: 38px;
	}
}

@media (max-width: 768px) {
	.international-banner {
		min-height: 460px;
	}

	.international-content {
		max-width: 100%;
		text-align: center;
	}

	.banner-actions {
		justify-content: center;
	}

	.international-content h1 {
		font-size: 34px;
	}
}

@media (max-width: 480px) {
	.international-container {
		padding: 0 24px;
	}

	.international-content h1 {
		font-size: 28px;
	}

	.international-content p {
		font-size: 14px;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		text-align: center;
	}
}

.portfolio-section {
	background-color: #ffffff;
	padding: 80px 5%;
	color: #0b1b3f;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: #023061;
}

.section-title span {
	color: #014a8f;
	position: relative;
}

.portfolio-filter-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	padding: 20px 24px;
	background: #f6faff;
	border-radius: 20px;
	margin-bottom: 50px;
	box-shadow: 0 10px 30px rgba(2, 48, 97, 0.06);
	flex-wrap: wrap;
	width: 100%;
}

.filter-group {
	display: flex;
	gap: 16px;
	flex-direction: row;
	width: 100%;
}
@media (max-width: 430px) {
	.filter-group {
		display: flex;
		gap: 16px;
		flex-direction: column;
		width: 100%;
	}
	.section-title {
		text-align: center;
		font-size: 28px;
	}
}
.custom-dropdown {
	position: relative;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
}

.dropdown-toggle {
	width: 100%;
	height: 48px;
	background: #ffffff;
	border: 1.5px solid #e1ecf7;
	border-radius: 14px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #023061;
}

.dropdown-toggle ion-icon {
	font-size: 18px;
	transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-toggle {
	border-color: #014a8f;
	box-shadow: 0 10px 25px rgba(2, 48, 97, 0.15);
}

.custom-dropdown.active ion-icon {
	transform: rotate(180deg);
}
.dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 25px 60px rgba(2, 48, 97, 0.18);
	padding: 8px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.25s ease;
	z-index: 20;
}

.custom-dropdown.active .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	padding: 12px 14px;
	border-radius: 12px;
	cursor: pointer;
	color: #023061;
	transition: all 0.25s ease;
}

.dropdown-menu li:hover {
	background: #f1f7ff;
	color: #014a8f;
}

.dropdown-menu li.active {
	background: #014a8f;
	color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
	.custom-dropdown {
		width: 100%;
	}
}

.custom-select {
	background: #ffffff;
	border-radius: 14px;
	padding: 0 14px;
	border: 1.5px solid #e1ecf7;
	transition: all 0.3s ease;
	height: 48px;
	display: flex;
	align-items: center;
}

.custom-select:hover {
	border-color: #014a8f;
	box-shadow: 0 8px 20px rgba(2, 48, 97, 0.12);
}

.custom-select select {
	appearance: none;
	border: none;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	color: #023061;
	cursor: pointer;
	outline: none;
	padding-right: 24px;
}

/* ===== Search ===== */
.portfolio-search-wrapper {
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1.5px solid #e1ecf7;
	border-radius: 50px;
	padding: 6px 6px 6px 20px;
	height: 48px;
	width: 100%;
	transition: all 0.3s ease;
}

.portfolio-search-wrapper:focus-within {
	border-color: #014a8f;
	box-shadow: 0 8px 20px rgba(2, 48, 97, 0.15);
}

.portfolio-search-wrapper input {
	border: none;
	outline: none;
	width: 100%;
	font-size: 14px;
	color: #0b1b3f;
}

.search-btn {
	color: #0b1b3f;
	background-color: transparent;
	border: none;
	padding: 10px;
	font-size: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}

.search-btn:hover {
	background: #014a8f;
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.portfolio-filter-container {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-group {
		width: 100%;
	}

	.custom-select {
		width: 100%;
	}

	.portfolio-search-wrapper {
		width: 100%;
	}
}

/* Grid & Cards */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
}

.portfolio-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid #f0f0f0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	flex-direction: column;
}

.portfolio-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 30px 60px rgba(2, 48, 97, 0.12);
}

.card-image-box {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.card-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image-box img {
	transform: scale(1.1);
}

.card-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	color: #023061;
	text-transform: uppercase;
}

.card-body {
	padding: 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card-meta {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: #014a8f;
	margin-bottom: 15px;
	font-weight: 600;
}

.card-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0b1b3f;
	margin-bottom: 12px;
	line-height: 1.4;
}

.card-text {
	font-size: 14px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 25px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.card-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #f0f6ff;
}

.likes-count {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #023061;
}

.likes-count ion-icon {
	color: #ff4757;
}

.view-btn {
	padding: 8px 18px;
	background: transparent;
	border: 1.5px solid #023061;
	color: #023061;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none !important;
}

.view-btn:hover {
	background: #023061;
	color: #ffffff;
}

/* ===== Pagination ===== */
.portfolio-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 60px;
	padding: 18px 24px;
	background: #f6faff;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(2, 48, 97, 0.08);
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

/* Page Info */
.page-info {
	font-size: 14px;
	font-weight: 600;
	color: #023061;
}

.page-info strong {
	color: #014a8f;
}

/* Buttons */
.page-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid #e1ecf7;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #023061;
	font-size: 20px;
}

.page-btn:hover {
	background: #023061;
	color: #ffffff;
	box-shadow: 0 12px 25px rgba(2, 48, 97, 0.2);
	transform: translateY(-2px);
}

/* Disabled */
.page-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

/* Active animation feel */
.page-btn:active {
	transform: scale(0.95);
}

/* Responsive */
@media (max-width: 576px) {
	.portfolio-pagination {
		gap: 12px;
		padding: 14px 18px;
	}

	.page-btn {
		width: 42px;
		height: 42px;
	}
}
