.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: var(--secondary);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.8);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.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);
}


.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(237, 102, 255, 0.4);
    border-radius: 8px;
}

.image-modal .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.image-modal .close-btn:hover {
    background: rgba(237, 102, 255, 0.8);
    transform: rotate(90deg);
}