

.advantages-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 30px;
}

.advantages-header {
	text-align: center;
	margin-bottom: 60px;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

.advantages-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.advantages-title::after {
	content: '';
	position: absolute;
	height: 3px;
	width: 60px;
	background: linear-gradient(to right, #e74c3c, #c0392b);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 3px;
}

.advantages-subtitle {
	font-size: 18px;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

.highlight-text {
	color: #e74c3c;
	font-weight: 700;
	margin: 0 5px;
	position: relative;
	display: inline-block;
}

.highlight-text::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(231, 76, 60, 0.5);
}

.advantages-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.advantage-card {
	background: rgba(26, 42, 58, 0.4);
	border-radius: 10px;
	padding: 30px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s ease-out forwards;
}

.advantage-card:nth-child(1) {
	animation-delay: 0.2s;
}

.advantage-card:nth-child(2) {
	animation-delay: 0.4s;
}

.advantage-card:nth-child(3) {
	animation-delay: 0.6s;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.advantage-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(to bottom, #e74c3c, #c0392b);
	opacity: 0.7;
}

.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
	margin-bottom: 20px;
	background: rgba(231, 76, 60, 0.1);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
	animation: pulse 3s infinite cubic-bezier(0.66, 0, 0, 1);
}

.advantage-card-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
}

.advantage-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	font-size: 16px;
}

.advantages-highlight {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	border-radius: 10px;
	padding: 30px;
	margin-top: 40px;
	box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards 0.8s;
}

.advantages-highlight::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(45deg,
			transparent 0%,
			rgba(255, 255, 255, 0.05) 25%,
			transparent 50%,
			rgba(255, 255, 255, 0.05) 75%,
			transparent 100%);
	background-size: 250% 250%;
	animation: shimmer-bg 8s infinite linear;
	z-index: 0;
}

@keyframes shimmer-bg {
	0% {
		background-position: 0% 0%;
	}

	100% {
		background-position: 100% 100%;
	}
}

.highlight-content {
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.highlight-icon {
	background: rgba(255, 255, 255, 0.2);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	flex-shrink: 0;
}

.highlight-text-container {
	flex: 1;
}

.highlight-large {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.highlight-medium {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
}


.verification-section {
	background: linear-gradient(135deg, #1a2530, #2c3e50);
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.verification-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.ver-circle {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.ver-circle-1 {
	width: 300px;
	height: 300px;
	top: -50px;
	left: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.ver-circle-2 {
	width: 200px;
	height: 200px;
	bottom: 50px;
	right: 5%;
	opacity: 0.07;
	border-width: 1px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
	animation: rotate-slow 30s linear infinite reverse;
}

.ver-line {
	position: absolute;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
	height: 1px;
	transform-origin: left center;
}

.ver-line-1 {
	top: 40%;
	left: 0;
	width: 100%;
	transform: rotate(2deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.ver-line-2 {
	bottom: 30%;
	right: 0;
	width: 80%;
	transform: rotate(-2deg);
	animation: pulse-opacity 12s infinite ease-in-out reverse;
}

.ver-square {
	position: absolute;
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 15%;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transform: rotate(-15deg);
	opacity: 0.1;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.02), transparent);
	animation: pulse-rotate 20s infinite ease-in-out reverse;
}

.verification-container {
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.verification-header {
	text-align: center;
	margin-bottom: 50px;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

.verification-title {
	font-size: 36px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	margin-bottom: 10px;
}

.verification-title::after {
	content: '';
	position: absolute;
	height: 3px;
	width: 60px;
	background: linear-gradient(to right, #e74c3c, #c0392b);
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 3px;
}

.verification-images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 15px;
}

.img_box1{
	background: #fff;
	overflow: hidden;
	border-radius:15px;
	padding:15px 15px 0;
}
.img_l_title{padding:24px 60px 24px 9px;position: relative;}
.img_l_title h3{font-size: 24px;color:#1f2329;font-weight: bold;line-height: 28px;}
.img_l_title p{font-size: 16px;color:#646a73;margin-top:8px;}
.img_l_title b{position: absolute;bottom:20px;right:8px;font-size: 22px;color:#1f2329;font-weight: normal;}

.verification-image-card {
	/* background: rgba(26, 42, 58, 0.4); */
	border-radius: 10px;
	overflow: hidden;
	/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s ease-out forwards;
	height: 0;
	padding-bottom: 70%;
	position: relative;
}

.image-label {
	position: absolute;
	bottom: 15px;
	left: 15px;
	background: rgba(231, 76, 60, 0.8);
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-weight: bold;
	z-index: 2;
	font-size: 30px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.consumption-number {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: rgba(52, 152, 219, 0.8);
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	font-weight: bold;
	z-index: 2;
	font-size: 24px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.verification-image-card:nth-child(1) {
	animation-delay: 0.2s;
}

.verification-image-card:nth-child(2) {
	animation-delay: 0.4s;
}

.verification-image-card:nth-child(3) {
	animation-delay: 0.6s;
}

.verification-image-card:nth-child(4) {
	animation-delay: 0.8s;
}

.verification-image-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.verification-image-card:hover .image-overlay {
	opacity: 1;
}

.image-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff;
	padding:0px;
}

.verification-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.verification-image-card:hover .verification-img {
	transform: scale(1.1);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.overlay-icon {
	background: rgba(0, 0, 0, 0.3);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.verification-image-card:hover .overlay-icon {
	transform: scale(1);
}

.verification-message {
	background: linear-gradient(135deg, #2c3e50, #1a2530);
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards 1s;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.verification-message::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, #e74c3c, #c0392b);
}

.message-content {
	display: flex;
	align-items: center;
	gap: 30px;
}

.message-icon {
	background: rgba(231, 76, 60, 0.1);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
	animation: pulse 3s infinite cubic-bezier(0.66, 0, 0, 1);
	flex-shrink: 0;
}

.message-text {
	flex: 1;
}

.message-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
	opacity: 1;
	visibility: visible;
}

.lightbox-img {
	max-width: 90%;
	max-height: 90vh;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s ease;
	border-radius: 5px;
}

.lightbox.active .lightbox-img {
	transform: scale(1);
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(231, 76, 60, 0.8);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.lightbox-close:hover {
	background: rgba(231, 76, 60, 1);
	transform: rotate(90deg);
}

.cursor-zoom {
	cursor: zoom-in;
}


.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: zoom-in;
}

.overlay-icon {
	background: rgba(231, 76, 60, 0.8);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.verification-image-card:hover .overlay-icon {
	transform: scale(1);
}

.verification-img {
	cursor: zoom-in;
}


.TG-float {
	position: fixed;
	right: 20px;
	top: 50%;
	color: #e0e0e0;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: bold;
	background-color: #0088CC;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
	padding: 10px;
}

.TG-float:hover {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.TG-icon {
	width: 34px;
	height: 34px;
	fill: white;
}




@media (max-width: 768px) {
	.banner {
		height: auto;
		padding: 40px 0;
	}

	.banner-container {
		padding: 0 15px;
	}

	.banner-left {
		width: 100%;
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
		max-width: 100%;
	}

	.banner-logo {
		font-size: 100px;
		margin-bottom: 20px;
	}

	.banner-logo img {
		max-width: 200px;
		margin: 0 auto;
		display: block;
	}

	.banner-features {
		margin-bottom: 30px;
	}

	.banner-feature {
		font-size: 18px;
		line-height: 1.4;
	}

	.banner-options {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.banner-option {
		padding: 12px 10px;
		font-size: 16px;
	}

	.banner-option span {
		font-size: 14px;
	}

	.top-branding {
		font-size: 14px;
		padding: 5px 10px;
		top: 10px;
	}

	.shape-1,
	.shape-2,
	.shape-3,
	.shape-4,
	.geometric-bg {
		display: none;
	}

	.mouse-follower {
		display: none;
	}
}