
/* .google-logo {
	position: absolute;
	top: 120px;
	right: 30px;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), inset 0 1px 3px rgba(255, 255, 255, 1);
	z-index: 2;
	display: flex;
	max-width: 100px;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.8);
	transform: rotate(-2deg);
}

.google-logo video {
	width: 100%;
	height: 100%;
}

.google-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
	z-index: -1;
	border-radius: 9px;
	animation: glimmer 3s infinite ease-in-out;
}

.google-logo:hover {
	transform: rotate(0deg) translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 1px 3px rgba(255, 255, 255, 1);
}

.google-logo svg {
	filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
} */

@media (max-width: 992px) {
	.banner-container {
		flex-direction: column;
	}

	.banner-right {
		display: none;
	}

	.banner-options {
		grid-template-columns: repeat(2, 1fr);
	}

	.banner-logo {
		font-size: 54px;
	}

	.banner-point {
		font-size: 24px;
	}

	.google-logo {
		bottom: 20px;
		right: 20px;
		padding: 10px;
	}

	.top-branding {
		top: 15px;
		right: 20px;
		font-size: 20px;
		padding: 8px 16px;
	}

	.banner {
		padding: 65px 0 60px;
	}
}

@media (max-width: 768px) {
	.banner {
		padding: 60px 0 40px;
	}

	.banner-container {
		flex-direction: column;
	}

	.banner-right {
		display: none;
	}

	.banner-key-points {
		flex-direction: column;
		gap: 20px;
	}

	.banner-options {
		grid-template-columns: 1fr;
	}

	.banner-logo {
		font-size: 42px;
	}

	.banner-point {
		font-size: 22px;
	}

	.banner-feature {
		font-size: 18px;
	}

	.google-logo {
		bottom: 15px;
		right: 15px;
		padding: 8px;
		transform: scale(0.8);
	}

	.top-branding {
		top: 10px;
		right: 10px;
		font-size: 16px;
		padding: 6px 12px;
		letter-spacing: 1px;
	}

	.banner {
		padding: 60px 0 40px;
	}
}


@media (max-width: 768px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.section-title {
		font-size: 28px;
	}

	.services-grid,
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.platform-logos {
		gap: 20px;
	}

	.platform-logo {
		height: 50px;
	}
}


.geometric-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.geo-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;
}

.geo-line-1 {
	top: 20%;
	left: 0;
	width: 100%;
	transform: rotate(-5deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.geo-line-2 {
	top: 40%;
	right: 0;
	width: 80%;
	transform: rotate(3deg);
	animation: pulse-opacity 12s infinite ease-in-out;
}

.geo-line-3 {
	bottom: 30%;
	left: 0;
	width: 60%;
	transform: rotate(-7deg);
	animation: pulse-opacity 10s infinite ease-in-out reverse;
}

@keyframes pulse-opacity {
	0% {
		opacity: 0.3;
	}

	50% {
		opacity: 0.7;
	}

	100% {
		opacity: 0.3;
	}
}

.geo-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);
}

.geo-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.geo-circle-2 {
	width: 200px;
	height: 200px;
	bottom: 50px;
	left: 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;
}

@keyframes rotate-slow {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.geo-triangle {
	position: absolute;
	width: 0;
	height: 0;
	bottom: 10%;
	right: 20%;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-bottom: 150px solid rgba(255, 255, 255, 0.02);
	transform: rotate(20deg);
	animation: rotate-very-slow 45s linear infinite reverse;
	filter: blur(2px);
}

@keyframes rotate-very-slow {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.geo-square {
	position: absolute;
	width: 100px;
	height: 100px;
	top: 20%;
	left: 15%;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transform: rotate(30deg);
	opacity: 0.1;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.02), transparent);
	animation: pulse-rotate 20s infinite ease-in-out;
}

@keyframes pulse-rotate {
	0% {
		transform: rotate(30deg) scale(1);
	}

	50% {
		transform: rotate(40deg) scale(1.1);
	}

	100% {
		transform: rotate(30deg) scale(1);
	}
}


@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.banner {
	animation: fadeIn 1s ease-out forwards;
}


@keyframes scaleIn {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.banner-logo {
	animation: scaleIn 0.8s ease-out forwards;
	opacity: 0;
	animation-delay: 0.5s;
}


@keyframes slideInFromRight {
	0% {
		opacity: 0;
		transform: translateX(30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.banner-feature-row {
	opacity: 0;
	animation: slideInFromRight 0.7s ease-out forwards;
}

.banner-feature-row:nth-child(1) {
	animation-delay: 0.8s;
}

.banner-feature-row:nth-child(2) {
	animation-delay: 1s;
}


@keyframes glow {
	0% {
		text-shadow: 0 0 5px rgba(231, 76, 60, 0.1);
	}

	50% {
		text-shadow: 0 0 15px rgba(231, 76, 60, 0.5), 0 0 25px rgba(231, 76, 60, 0.3);
	}

	100% {
		text-shadow: 0 0 5px rgba(231, 76, 60, 0.1);
	}
}

.banner-tagline {
	animation: glow 4s infinite ease-in-out;
}


.google-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
	z-index: -1;
	border-radius: 9px;
	animation: glimmer 3s infinite ease-in-out;
}

@keyframes glimmer {
	0% {
		opacity: 0.7;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.7;
	}
}


@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.banner-options {
	perspective: 1000px;
}

.banner-option {
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards, float 3s infinite ease-in-out;
}

.banner-option:nth-child(1) {
	animation-delay: 1.2s, 3s;
}

.banner-option:nth-child(2) {
	animation-delay: 1.4s, 3.2s;
}

.banner-option:nth-child(3) {
	animation-delay: 1.6s, 3.4s;
}

.banner-option:nth-child(4) {
	animation-delay: 1.8s, 3.6s;
}


.mouse-follower {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0) 70%);
	pointer-events: none;
	z-index: 0;
	transform: translate(-50%, -50%);
	filter: blur(10px);
	opacity: 0.7;
	transition: width 0.3s ease, height 0.3s ease;
}


.advantages-section {
	background: linear-gradient(135deg, #0d1520, #1a2a3a);
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.advantages-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.adv-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);
}

.adv-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.adv-circle-2 {
	width: 200px;
	height: 200px;
	bottom: 50px;
	left: 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;
}

.adv-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;
}

.adv-line-1 {
	top: 30%;
	left: 0;
	width: 100%;
	transform: rotate(-2deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.adv-line-2 {
	bottom: 40%;
	right: 0;
	width: 80%;
	transform: rotate(2deg);
	animation: pulse-opacity 12s infinite ease-in-out reverse;
}

.adv-square {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 20%;
	right: 15%;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transform: rotate(30deg);
	opacity: 0.1;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.02), transparent);
	animation: pulse-rotate 20s infinite ease-in-out;
}

.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);
}

@media (max-width: 992px) {
	.advantages-content {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

	.highlight-content {
		flex-direction: column;
		text-align: center;
	}

	.highlight-icon {
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	.advantages-section {
		padding: 60px 0;
	}

	.advantages-title {
		font-size: 28px;
	}

	.advantages-subtitle {
		font-size: 16px;
	}

	.advantage-card {
		padding: 20px;
	}

	.highlight-large {
		font-size: 20px;
	}

	.highlight-medium {
		font-size: 16px;
	}
}


.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 {
	max-width: 1310px;
	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(2, 1fr);
	gap: 45px;
	margin-bottom: 50px;
}

.verification-image-card {
	background: rgba(26, 42, 58, 0.4);
	border-radius: 20px;
	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: 40%;

	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;
}

.video-call-button {
	background: linear-gradient(to right, #e74c3c, #c0392b);
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.video-call-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 992px) {
	.verification-images {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.verification-section {
		padding: 60px 0;
	}

	.verification-title {
		font-size: 28px;
	}

	.verification-images {
		grid-template-columns: repeat(1, 1fr);
	}

	.message-content {
		flex-direction: column;
		text-align: center;
	}

	.message-icon {
		margin-bottom: 20px;
	}

	.message-title {
		font-size: 20px;
	}
}


.services-grid-section {
	background: linear-gradient(135deg, #0d1520, #1a2a3a);
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.services-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.srv-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);
}

.srv-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.srv-circle-2 {
	width: 200px;
	height: 200px;
	bottom: 50px;
	left: 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;
}

.srv-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;
}

.srv-line-1 {
	top: 30%;
	left: 0;
	width: 100%;
	transform: rotate(-2deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.srv-line-2 {
	bottom: 40%;
	right: 0;
	width: 80%;
	transform: rotate(2deg);
	animation: pulse-opacity 12s infinite ease-in-out reverse;
}

.srv-square {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 20%;
	right: 15%;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transform: rotate(30deg);
	opacity: 0.1;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.02), transparent);
	animation: pulse-rotate 20s infinite ease-in-out;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 30px;
}

.services-header {
	text-align: center;
	margin-bottom: 50px;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

.services-main-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	padding-bottom: 15px;
	position: relative;
}

.services-main-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(to right, #e74c3c, #c0392b);
	border-radius: 3px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-bottom: 50px;
}

.service-box {
	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;
	border: 1px solid rgba(255, 255, 255, 0.05);
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s ease-out forwards;
}

.service-box:nth-child(1) {
	animation-delay: 0.15s;
}

.service-box:nth-child(2) {
	animation-delay: 0.3s;
}

.service-box:nth-child(3) {
	animation-delay: 0.45s;
}

.service-box:nth-child(4) {
	animation-delay: 0.6s;
}

.service-box:nth-child(5) {
	animation-delay: 0.75s;
}

.service-box:nth-child(6) {
	animation-delay: 0.9s;
}

.service-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(231, 76, 60, 0.3);
}

.service-box-header {
	background: linear-gradient(to right, rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
	padding: 12px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* .service-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
} */

.service-content {
	padding: 20px;
}

.service-content p {
	margin: 0 0 12px 0;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
	font-size: 16px;
}

.service-content p:last-child {
	margin-bottom: 0;
}

.service-content strong {
	color: #e74c3c;
	font-weight: 700;
}


.services-footer {
	margin-top: 50px;
}

.footer-slogan-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	gap: 20px;
}

.footer-slogan-box {
	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;
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 20px;
	text-align: center;
	opacity: 0;
	animation: fadeIn 0.8s ease-out forwards;
}

.footer-slogan-box:nth-child(1) {
	animation-delay: 1.1s;
}

.footer-slogan-box:nth-child(2) {
	animation-delay: 1.25s;
}

.footer-slogan-box:nth-child(3) {
	animation-delay: 1.4s;
}

.footer-slogan-box:nth-child(4) {
	grid-column: 1 / -1;
	animation-delay: 1.55s;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	border: none;
}

.footer-slogan-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.slogan-title {
	font-size: 20px;
	font-weight: 700;
	margin: 10px 0;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slogan-large {
	font-size: 48px;
	font-weight: 900;
	color: #fff;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	margin: 0;
	letter-spacing: 2px;
}

@media (max-width: 992px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.footer-slogan-grid {
		grid-template-columns: 1fr;
	}

	.footer-slogan-box:nth-child(4) {
		grid-column: auto;
	}

	.services-main-title {
		font-size: 28px;
	}

	.slogan-large {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.services-grid-section {
		padding: 60px 0;
	}

	.services-main-title {
		font-size: 24px;
	}

	/* .service-title {
		font-size: 16px;
	} */

	.service-content p {
		font-size: 14px;
	}

	.slogan-title {
		font-size: 18px;
	}

	.slogan-large {
		font-size: 32px;
	}
}


.about-section {
	background: linear-gradient(135deg, #1a2a3a, #2c3e50);
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.about-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.about-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);
}

.about-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.about-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;
}

.about-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;
}

.about-line-1 {
	top: 30%;
	right: 0;
	width: 100%;
	transform: rotate(2deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.about-line-2 {
	bottom: 40%;
	left: 0;
	width: 80%;
	transform: rotate(-2deg);
	animation: pulse-opacity 12s infinite ease-in-out reverse;
}

.about-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;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 30px;
}

.about-header {
	text-align: center;
	margin-bottom: 60px;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

.about-title {
	font-size: 38px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	margin-bottom: 10px;
}

.about-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;
}

.about-years {
	color: #e74c3c;
	margin-left: 15px;
	font-weight: 900;
	position: relative;
}

.about-years::before {
	content: '';
	position: absolute;
	height: 70%;
	width: 2px;
	background-color: rgba(255, 255, 255, 0.3);
	top: 15%;
	left: -10px;
}

.about-content {
	display: flex;
	gap: 50px;
	align-items: center;
}

.about-left {
	flex: 1;
	padding-right: 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0;
	transform: translateX(-30px);
	animation: slideInFromLeft 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.about-right {
	flex: 1;
	opacity: 0;
	transform: translateX(30px);
	animation: slideInFromRight 0.8s ease-out forwards 0.3s;
}

@keyframes slideInFromRight {
	0% {
		opacity: 0;
		transform: translateX(30px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.about-subtitle {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
	line-height: 1.4;
	position: relative;
	padding-left: 15px;
}

.about-subtitle::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(to bottom, #e74c3c, #c0392b);
	border-radius: 3px;
}

.about-description {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 15px;
}

.about-experience {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(26, 42, 58, 0.4);
	border-radius: 10px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.about-experience:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(231, 76, 60, 0.3);
}

.experience-icon {
	background: rgba(231, 76, 60, 0.1);
	width: 60px;
	height: 60px;
	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;
}

.experience-text h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #fff;
}

.experience-text p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
}

.certification-box,
.strategy-box,
.advantage-box {
	background: rgba(26, 42, 58, 0.4);
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.certification-box:hover,
.strategy-box:hover,
.advantage-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(231, 76, 60, 0.3);
}

.certification-icon,
.strategy-icon,
.advantage-icon {
	background: rgba(231, 76, 60, 0.1);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
	flex-shrink: 0;
}

.certification-title,
.strategy-title,
.advantage-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	margin: 0;
	flex: 1;
}

@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
		gap: 40px;
	}

	.about-left {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 40px;
	}

	.about-title {
		font-size: 32px;
	}

	.about-subtitle {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.about-section {
		padding: 60px 0;
	}

	.about-title {
		font-size: 28px;
	}

	.about-subtitle {
		font-size: 20px;
	}

	.about-description {
		font-size: 16px;
	}

	.certification-box,
	.strategy-box,
	.advantage-box,
	.about-experience {
		flex-direction: column;
		text-align: center;
	}

	.certification-title,
	.strategy-title,
	.advantage-title,
	.experience-text h4 {
		font-size: 16px;
	}
}


.pro-services-section {
	background: linear-gradient(135deg, #1a2530, #2c3e50);
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.pro-services-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.pro-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);
}

.pro-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.pro-circle-2 {
	width: 200px;
	height: 200px;
	bottom: 50px;
	left: 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;
}

.pro-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;
}

.pro-line-1 {
	top: 30%;
	left: 0;
	width: 100%;
	transform: rotate(-2deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.pro-line-2 {
	bottom: 40%;
	right: 0;
	width: 80%;
	transform: rotate(2deg);
	animation: pulse-opacity 12s infinite ease-in-out reverse;
}

.pro-square {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 20%;
	right: 15%;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transform: rotate(30deg);
	opacity: 0.1;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.02), transparent);
	animation: pulse-rotate 20s infinite ease-in-out;
}

.pro-services-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.pro-service-block {
	display: flex;
	background: rgba(26, 42, 58, 0.4);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.05);
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

.pro-service-block:nth-child(1) {
	animation-delay: 0.2s;
}

.pro-service-block:nth-child(2) {
	animation-delay: 0.5s;
}

.service-left {
	flex: 7;
	padding: 30px;
}

.service-right {
	flex: 7;
	padding: 30px;
}

.satisfaction {
	flex: 3;
	background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.satisfaction::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 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;
}

.satisfaction-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}

.satisfaction-item {
	text-align: center;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
	padding-bottom: 15px;
}

.satisfaction-item:last-child {
	border-bottom: none;
}

.satisfaction-number {
	font-size: 36px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 5px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.satisfaction-text {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.service-main-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	position: relative;
	padding-left: 15px;
}

.service-main-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 5px;
	background: linear-gradient(to bottom, #e74c3c, #c0392b);
	border-radius: 3px;
}

.service-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-feature {
	display: flex;
	align-items: center;
	gap: 15px;
}

.feature-icon {
	flex-shrink: 0;
}

.service-feature p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
}

.highlight-feature {
	margin-top: 10px;
	padding: 15px;
	background: rgba(231, 76, 60, 0.1);
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(231, 76, 60, 0.2);
}

.highlight-feature p {
	display: flex;
	justify-content: space-around;
	width: 100%;
	text-align: center;
}

.highlight-feature span {
	font-weight: 700;
	font-size: 22px;
	color: #e74c3c;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	position: relative;
	padding-bottom: 5px;
}

.highlight-feature span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, rgba(231, 76, 60, 0), rgba(231, 76, 60, 0.8), rgba(231, 76, 60, 0));
}

.reverse {
	flex-direction: row-reverse;
}

@media (max-width: 992px) {

	.pro-service-block,
	.pro-service-block.reverse {
		flex-direction: column;
	}

	.service-left.satisfaction,
	.service-right.satisfaction {
		flex: none;
		padding: 30px;
	}

	.satisfaction-content {
		flex-direction: row;
		gap: 20px;
	}

	.satisfaction-item {
		flex: 1;
		border-bottom: none;
		border-right: 1px dashed rgba(255, 255, 255, 0.3);
		padding-bottom: 0;
		padding-right: 15px;
	}

	.satisfaction-item:last-child {
		border-right: none;
	}
}

@media (max-width: 768px) {
	.pro-services-section {
		padding: 60px 0;
	}

	.service-main-title {
		font-size: 22px;
	}

	.service-feature p {
		font-size: 16px;
	}

	.highlight-feature span {
		font-size: 18px;
	}

	.satisfaction-number {
		font-size: 30px;
	}

	.satisfaction-text {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.highlight-feature p {
		flex-direction: column;
		gap: 15px;
	}

	.satisfaction-content {
		flex-direction: column;
		gap: 20px;
	}

	.satisfaction-item {
		border-right: none;
		border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
		padding-right: 0;
		padding-bottom: 15px;
	}
}


.faq-section {
	background: linear-gradient(135deg, #1a2530, #2c3e50);
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.faq-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.faq-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);
}

.faq-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.faq-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;
}

.faq-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;
}

.faq-line-1 {
	top: 40%;
	right: 0;
	width: 100%;
	transform: rotate(2deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.faq-line-2 {
	bottom: 30%;
	left: 0;
	width: 80%;
	transform: rotate(-2deg);
	animation: pulse-opacity 12s infinite ease-in-out reverse;
}

.faq-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;
}

/* .service-tags1 {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 5;
	display: flex;
	gap: 15px;
} */

/* .service-tag {
	background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
	color: #fff;
	padding: 8px 15px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	opacity: 0;
	animation: fadeInRight 0.5s forwards;
} */

/* .service-tag:nth-child(1) {
	animation-delay: 0.2s;
}

.service-tag:nth-child(2) {
	animation-delay: 0.4s;
}

.service-tag:nth-child(3) {
	animation-delay: 0.6s;
}

.service-tag:nth-child(4) {
	animation-delay: 0.8s;
} */

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.faq-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 30px;
}

.faq-header {
	text-align: center;
	margin-bottom: 50px;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

.faq-title {
	font-size: 38px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	letter-spacing: 3px;
}

.faq-title::after {
	content: '';
	position: absolute;
	height: 3px;
	width: 80px;
	background: linear-gradient(to right, #e74c3c, #c0392b);
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 3px;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.accordion-item {
	background: rgba(26, 42, 58, 0.4);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.8s ease-out forwards;
}

.accordion-item:nth-child(1) {
	animation-delay: 0.3s;
}

.accordion-item:nth-child(2) {
	animation-delay: 0.5s;
}

.accordion-item:nth-child(3) {
	animation-delay: 0.7s;
}

.accordion-item:nth-child(4) {
	animation-delay: 0.9s;
}

.accordion-item.active {
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border-color: rgba(231, 76, 60, 0.3);
}

.accordion-header {
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	border-bottom: 1px solid rgba(255, 255, 255, 0);
	transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	padding-right: 20px;
	position: relative;
}

.accordion-icon {
	width: 30px;
	height: 30px;
	background: rgba(231, 76, 60, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 700;
	color: #e74c3c;
	flex-shrink: 0;
	position: relative;
	transition: all 0.3s ease;
}

.plus-icon,
.minus-icon {
	position: absolute;
	transition: all 0.3s ease;
}

.minus-icon {
	opacity: 0;
	transform: rotate(-90deg);
}

.accordion-item.active .plus-icon {
	opacity: 0;
	transform: rotate(90deg);
}

.accordion-item.active .minus-icon {
	opacity: 1;
	transform: rotate(0);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
}

.accordion-content p {
	padding: 20px 25px;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-size: 16px;
}

@media (max-width: 992px) {
/* 	.service-tags1 {
		position: relative;
		top: 0;
		right: 0;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 40px;
	} */

	.faq-title {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.faq-section {
		padding: 60px 0;
	}

	.faq-title {
		font-size: 28px;
	}

	.accordion-title {
		font-size: 18px;
	}

	.service-tag {
		font-size: 14px;
		padding: 6px 12px;
	}
}


.cta-section {
	background: linear-gradient(135deg, #1a2a3a, #0d1520);
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	overflow: hidden;
}

.cta-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
	opacity: 0.7;
}

.cta-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);
}

.cta-circle-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: 10%;
	border-width: 2px;
	opacity: 0.1;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.cta-circle-2 {
	width: 200px;
	height: 200px;
	bottom: 50px;
	left: 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;
}

.cta-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;
}

.cta-line-1 {
	top: 30%;
	left: 0;
	width: 100%;
	transform: rotate(-2deg);
	animation: pulse-opacity 8s infinite ease-in-out;
}

.cta-line-2 {
	bottom: 40%;
	right: 0;
	width: 80%;
	transform: rotate(2deg);
	animation: pulse-opacity 12s infinite ease-in-out reverse;
}

.cta-square {
	position: absolute;
	width: 150px;
	height: 150px;
	top: 20%;
	right: 15%;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transform: rotate(30deg);
	opacity: 0.1;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0.02), transparent);
	animation: pulse-rotate 20s infinite ease-in-out;
}

.cta-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
}

.cta-main {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.cta-title {
	font-size: 64px;
	font-weight: 900;
	background: linear-gradient(to right, #e74c3c, #c0392b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	text-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
	margin: 0;
	position: relative;
	opacity: 0;
	animation: scaleIn 1s ease-out forwards;
}

@keyframes scaleIn {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.cta-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, #e74c3c, #c0392b);
	border-radius: 2px;
}

.cta-text-wrapper {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-text {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	color: #fff;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	opacity: 0;
	animation: fadeInUp 0.8s ease-out forwards;
}

.cta-text:nth-child(1) {
	animation-delay: 0.3s;
}

.cta-text:nth-child(2) {
	animation-delay: 0.5s;
}

.cta-text:nth-child(3) {
	animation-delay: 0.7s;
}

.cta-text.highlight {
	color: #e74c3c;
	position: relative;
}

.cta-text.highlight::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.8), rgba(231, 76, 60, 0.2));
}

.cta-button-wrapper {
	margin-top: 30px;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards 1s;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(to right, #e74c3c, #c0392b);
	color: #fff;
	padding: 15px 40px;
	border-radius: 50px;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(231, 76, 60, 0.5);
}

.cta-button:hover::before {
	transform: translateX(100%);
}

.button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pulse-effect {
	animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(231, 76, 60, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
	}
}

.cta-tagline {
	text-align: center;
	padding: 30px;
	background: rgba(26, 42, 58, 0.4);
	border-radius: 10px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.05);
	width: 100%;
	max-width: 800px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 0.8s ease-out forwards 1.2s;
}

.tagline-text {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.emphasis {
	color: #e74c3c;
	font-weight: 700;
	position: relative;
	padding: 0 5px;
}

.emphasis::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(231, 76, 60, 0.1);
	border-radius: 3px;
	z-index: -1;
}

@media (max-width: 992px) {
	.cta-title {
		font-size: 54px;
	}

	.cta-text {
		font-size: 24px;
	}

	.tagline-text {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.cta-section {
		padding: 60px 0;
	}

	.cta-title {
		font-size: 42px;
	}

	.cta-text {
		font-size: 20px;
	}

	.cta-button {
		padding: 12px 30px;
		font-size: 18px;
	}

	.tagline-text {
		font-size: 18px;
	}
}

@media (max-width: 576px) {
	.cta-title {
		font-size: 36px;
	}

	.cta-text-wrapper {
		flex-direction: column;
		gap: 10px;
	}

	.cta-text {
		font-size: 18px;
	}
}


.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;
	}
}