/* Base animate.css override */
.animate__animated {
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);

	-webkit-animation-delay: var(--animate-delay);
	animation-delay: var(--animate-delay);

	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: var(--animate-repeat);

	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

/* ===============================
   Custom Global Helper Class
   =============================== */
.animate-global {
	animation-duration: var(--animate-duration);
	animation-delay: var(--animate-delay);
	animation-iteration-count: var(--animate-repeat);
}

/* ===============================
   Scroll Animation Support
   =============================== */

/* Start hidden until scrolled into view */
.animate-on-scroll {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When active (JS adds .is-animated) */
.animate-on-scroll.is-animated {
	opacity: 1;
	visibility: visible;
}

/* ===============================
   Custom Keyframes (zoomInDown)
   =============================== */
@-webkit-keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
	}

	60% {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
	}
}

@keyframes zoomInDown {
	0% {
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
	}

	60% {
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
	}
}

/* Hook the animation */
.animate__zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

/* Page Title */
.pay-page-title {
	background-color: var(--color-bg);
	padding: 0px 60px;
	position: relative;
	top: -150px;
	margin-bottom: -90px;
}

.pay-page-title .about-content {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	padding-top: 180px;
	padding-bottom: 30px;
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	flex-wrap: wrap;
}

.pay-page-title .text-content {
	max-width: 60%;
}

.pay-page-title .breadcrumb {
	font-size: 14px;
	margin-bottom: 20px;
	color: #555;
}

.pay-page-title .breadcrumb a {
	text-decoration: none;
	font-size: 18px;
	color: var(--color-text);
	font-weight: 500;
}

.pay-page-title .breadcrumb span:first-child {
	/* margin: 0 8px; */
	color: var(--color-text);
	font-size: 18px;
	font-weight: 500;
}

.pay-page-title .breadcrumb span {
	/* margin: 0 8px; */
	color: #777;
	font-size: 18px;
	font-weight: 500;
}

.pay-page-title h1 {
	margin-top: 0;
	font-size: 64px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #111;
}

.pay-page-title p {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	max-width: 90%;
}

.pay-page-title .image-content {
	max-width: 40%;
	text-align: right;
}

.pay-page-title .image-content img {
	max-width: 100%;
	height: auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.pay-page-title .about-content {
		flex-direction: column;
		text-align: center;
	}

	.pay-page-title .text-content,
	.pay-page-title .image-content {
		max-width: 100%;
	}

	.pay-page-title .image-content {
		margin-top: 30px;
		text-align: center;
	}

	.pay-page-title {
		padding: 0px 20px;
	}

	.pay-page-title h1 {
		font-size: 48px;
	}

	.pay-page-title p {
		max-width: 100%;
	}
}

/* Main Banner */
.pay-banner-section {
	width: 100%;
	/* 	height:90vh; */
	max-width: 1250px;
	margin: 0 auto;
	padding: 60px 50px;
	display: flex;
	justify-content: center;
	/* Center the inner container */
}

.pay-banner-container {
	display: flex;
	/* max-width: 1200px; */
	width: 100%;
	/* Allow full width up to 1200px */
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.pay-banner-text {
	flex: 1.3;
}

.pay-banner-text h1 {
	font-size: 42px;
	font-weight: 700;
	color: var(--color-text);
	margin-top: 0;
	margin-bottom: 25px;
	text-align: center;
}

.pay-banner-text h1 span {
	color: var(--color-primary);
}

.pay-banner-text p {
	color: var(--color-text);
	font-size: 22px;
	line-height: 32px;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
}

.pay-banner-image {
	flex: 1.2;
}

.pay-banner-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

.pay-banner-buttons {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

/* #button_2{
	background-color: var(--color-black);
    padding: 20px 30px;
    border-radius: 20px;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s 
ease;
} */

/* #button_2 a{
	    color: var(--color-white);
} */
.pay-btn-primary {
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: 20px 30px;
	border-radius: 20px;
	font-weight: 500;
	text-decoration: none;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.pay-btn-primary:hover {
	background-color: var(--color-primary);
	;
}

p.button-below-text {
	font-size: 14px;
}

.pay-btn-secondary {
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 20px 30px;
	border-radius: 20px;
	font-weight: 500;
	text-decoration: none;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.pay-btn-secondary .play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner_arrow {
	position: relative;
	bottom: 70px;
	left: 90px;
}

/* Optional: Responsive fallback for tablet & mobile */
@media (max-width: 992px) {
	.pay-banner-section {
		padding: 50px 20px 70px 20px;
		width: auto;
	}

	.pay-banner-container {
		flex-direction: column-reverse;
		gap: 40px;
	}

	.pay-banner-text p {
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.pay-banner-text h1 {
		font-size: 32px;
	}

	.pay-btn-primary {
		padding: 20px 20px;
		font-size: 12px;
	}

	.pay-btn-secondary {
		font-size: 12px;
	}
}

/* Logo Slider Section */
.company-swiper-section {
	padding: 0px 20px;
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	/* allow wrapping on small screens */
	align-items: center;
	gap: 40px;
	box-sizing: border-box;
	overflow: hidden;
	/* 👈 prevent overflow */
}

.company-heading {
	flex: 1 1 250px;
	min-width: 150px;
}

/* .company-heading{
	border-right: 2px solid var(--color-gray);
	padding-right:15px;
} */

.company-heading h2 {
	font-size: 40px;
	color: var(--color-text);
	font-weight: 400;
	border-right: 2px solid var(--color-gray);
	padding-right: 15px;
}

.company-heading strong {
	font-weight: 700;
}

.company-swiper {
	flex: 1 1 600px;
	min-width: 300px;
	overflow: hidden;
	/* 👈 prevent swiper overflow */
}

.company-swiper .swiper-slide {
	text-align: center;
}

.company-swiper .swiper-slide img {
	max-height: 30px;
	max-width: 100%;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.company-swiper .swiper-slide img:hover {
	opacity: 0.6;
}

/* Optional: Responsive fallback for tablet & mobile */
@media (max-width: 992px) {
	.company-swiper-section {
		padding: 0px 20px;
	}

	.company-heading h2 {
		margin-block-start: 0em;
	}

	.company-swiper-section {
		gap: 0px;
	}
}

/* About me Section */
.pay-about-section {
	padding: 60px 20px;
	/* background-color: var(--color-bg); */
}

.pay-container {
	max-width: 1100px;
	margin: 0 auto;
}

.pay-about-grid {
	display: flex;
	gap: 20px;
	align-items: center;
}

.pay-about-image,
.pay-about-content {
	flex: 1 1 50%;
	box-sizing: border-box;
}

.pay-about-content {
	padding-left: 90px;
}

.pay-about-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.pay-about-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0px;
	color: var(--color-text);
}

.pay-about-feature {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.4;
}

.pay-about-feature .pay-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.pay-about-list {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
	padding-top: 15px;
}

.pay-about-list li {
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--color-text);
	font-weight: 500;
	line-height: 30px;
	padding-bottom: 15px;
}

.pay-about-list li span {
	color: green;
	margin-right: 8px;
}

.pay-about-buttons {
	display: flex;
	gap: 15px;
}

.pay-store-btn img {
	height: 50px;
}

/* Optional: Responsive fallback for tablet & mobile */
@media (max-width: 992px) {
	.pay-about-title {
		font-size: 32px;
	}

	/* 	.pay-about-buttons {
		flex-direction: column;
	} */

	.pay-about-content {
		padding-left: 0px;
	}

	.pay-store-btn svg,
	.pay-store-btn svg {
		width: 100%;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.pay-about-grid {
		flex-direction: column;
	}

	.pay-about-image,
	.pay-about-content {
		flex: 1 1 100%;
	}

	.pay-about-content {
		padding-left: 0px;
	}

}

/* Step by Step */
.pay-step-section {
	padding: 80px 20px;
	text-align: center;
}

.pay-step-container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.pay-step-subtitle {
	color: var(--color-gray);
	font-size: 16px;
	margin: 0 auto 50px;
	max-width: 600px;
	line-height: 30px;
}

.pay-step-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.pay-step-item {
	flex: 1 1 300px;
	/* max-width: 320px; */
	text-align: center;
	margin: 0 auto;
	position: relative;
}

.pay-step-item::after {
	content: '';
	position: absolute;
	top: 20%;
	left: 80%;
	transform: translateY(-50%);
	width: 65%;
	height: 65%;
	background-image: url('/wp-content/uploads/2025/07/up-arrow-2.svg');
	/* Replace with your arrow icon */
	background-size: contain;
	background-repeat: no-repeat;
}

.pay-step-item:nth-child(2)::after {
	transform: translateY(-50%) rotate(0deg) scaleY(-1);
}

.pay-step-item:last-child::after {
	content: none;
}

.pay-step-image {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.pay-step-heading {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 10px;
}

.pay-step-desc p {
	font-size: 16px;
	/* font-weight: 500; */
	color: var(--color-gray);
	line-height: 30px;
	margin: 0 auto;
}

.pay-step-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0px;
	color: var(--color-text);
	text-align: center;
}

@media (max-width: 768px) {
	.pay-step-item::after {
		display: none;
	}

	.pay-step-title {
		font-size: 32px;
	}

	.pay-step-section {
		padding: 0px 20px;
		padding-bottom: 50px;
	}
}

/* Zig Zag section */
.pay-features-section {
	width: 100%;
	padding: 80px 0;
	background-color: var(--color-bg);
}

.pay-features-section.image-title-text {
	background-color: transparent;
}

.pay-features-container {
	width: 100%;
	align-items: center;
}

.pay-feature-item {
	max-width: 991px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 90px;
	padding-bottom: 110px;
}

.pay-feature-item:last-child {
	padding-bottom: 0px;
}

.pay-feature-image,
.pay-feature-text {
	flex: 1 1 50%;
}

.pay-feature-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

.pay-features-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0px;
	color: var(--color-text);
	text-align: center;
}

.pay-features-subtitle {
	color: var(--color-gray);
	font-size: 16px;
	margin: 0 auto 50px;
	max-width: 650px;
	line-height: 30px;
	text-align: center;
}

.pay-features-line {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.pay-feature-heading {
	font-size: 40px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 20px;
	margin-block-start: 0em;
}

.pay-feature-description {
	font-size: 16px;
	color: var(--color-gray);
	line-height: 1.7;
}

.pay-features-container .title-line {
	display: flex;
	justify-content: center;
}

.order-2 {
	order: 2;
}

/* Optional: Responsive fallback for tablet & mobile */
@media (max-width: 992px) {
	.pay-features-title {
		font-size: 32px;
	}

	.pay-features-section {
		padding: 50px 20px;
	}

	.pay-feature-item {
		flex-direction: column;
		padding-bottom: 40px;
		gap: 30px;
	}

	.order-2 {
		order: 0;
	}

	.pay-feature-heading {
		font-size: 26px;
		text-align: center;
	}

	.pay-feature-description {
		text-align: center;
	}

	.pay-features-section {
		width: auto;
	}
}

/* FAQ Section */
.pay-faq-section {
	padding: 60px 20px;
	background-color: var(--color-bg, #f9f9f9);
	text-align: center;
}

.pay-features-subtitle {
	font-size: 16px;
	color: #555;
	margin-bottom: 20px;
}

.pay-faq-section .title-line {
	display: block;
	margin: 0 auto 12px;
	margin-bottom: 20px;
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 40px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.faq-left {
	flex: 1 1 60%;
}

.faq-right {
	flex: 1 1 35%;
}

.faq-right img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* FAQ Item */
.faq-item {
	background: var(--color-white);
	border-radius: 12px;
	box-shadow: 5px 5px 20px 0px #0000000D;
	margin-bottom: 16px;
	overflow: hidden;
	transition: box-shadow 0.9s ease;
}

.faq-item.active {
	box-shadow: 5px 5px 20px 0px #0000000D;
}

.faq-question {
	width: 100%;
	padding: 15px 15px;
	text-align: left;
	background: var(--color-white);
	border: none;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	color: var(--color-gray);
	font-size: 15px;
	line-height: 1.6;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 0 20px;
	text-align: left;
}

.faq-answer p {
	text-align: left;
}

.arrow {
	transition: transform 0.3s ease;
}

.faq-item.active .arrow {
	transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
	.faq-container {
		flex-direction: column;
	}

	.faq-right {
		order: -1;
	}

	.faq-question {
		font-size: 15px;
	}
}

/* Blog Section */
.pay-blogs-section {
	padding: 60px 50px;
	max-width: 1100px;
	margin: 0 auto;
}

.pay-blogs-title {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.title-line {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.pay-blogs-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
}

.pay-blog-box {
	flex: 1 1 calc(33% - 30px);
	/* removes fixed width and allows 3 columns with spacing */
	box-sizing: border-box;
	border: 1px solid #f9f9f9;
	padding: 10px;
	border-radius: 20px;
	transition: 0.9s ease;
}

.pay-blog-box:hover {
	background-color: var(--color-bg);
}

.pay-blog-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
}

.pay-blog-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-text);
	margin: 15px 0 10px;
	text-align: center;
}

.pay-blog-date {
	font-size: 14px;
	font-weight: 500;
	color: #CCCCCC;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	margin-block-start: 1em;
}

.pay-blog-date span {
	display: flex;
}

.pay-blog-date svg {
	padding-right: 7px;
}

.pay-blog-excerpt {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-gray);
	text-align: center;
}

.pay-load-more-btn {
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	padding: 12px 25px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}

.pay-load-more-btn {
	background: var(--color-secondary);
}

.pay-blog-box a {
	text-decoration: none !important;
}

/* Optional: Responsive fallback for tablet & mobile */
@media (max-width: 992px) {
	.pay-blog-box {
		flex: 1 1 calc(50% - 30px);
		/* 2 columns */
	}
}

@media (max-width: 600px) {
	.pay-blog-box {
		flex: 1 1 100%;
		/* 1 column */
	}

	.pay-blogs-section {
		padding: 50px 20px;
	}

	.pay-blog-title {
		font-size: 18px;
	}

	.pay-blog-excerpt {
		font-size: 14px;
	}
}

/* Choose Plan Section */
.pay-plan-section {
	padding: 110px 20px;
	text-align: center;
	background: var(--color-white);
	font-family: Arial, sans-serif;
}

.plan-grid {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}

.pay-plan-premium-badge {
	position: absolute;
	top: 15px;
	/* adjust */
	right: 10px;
	width: 80px;
	height: auto;
	transform: rotate(25deg);
	z-index: 5;
	/* keep above background but under text if needed */
	opacity: 0.9;
	/* optional */
	pointer-events: none;
	/* makes sure icon doesn't block clicks */
}

.pay-plan-heading {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
}

.pay-plan-subtext {
	color: #666;
	margin-bottom: 30px;
}

.pay-plan-toggle {
	padding: 5px 10px;
	box-shadow: 0px 4px 9px 0px #0000000D;
	display: inline-flex;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 60px;
}

.pay-plan-tab {
	padding: 12px 30px;
	background: var(--color-white);
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: #333;
	font-weight: 500;
}

.pay-plan-tab.active {
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 10px;
}

.pay-plan-content {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	transform: scale(0.95);
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/* 	transition: all 0.6s ease-in-out; */
}

.pay-plan-content.active {
	opacity: 1;
	transform: scale(1);
	visibility: visible;
	position: relative;
}

.pay-plan-card {
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 20px;
	flex: 1 1 280px;
	/* grows/shrinks with screen */
	max-width: 435px;
	/* prevents oversized cards */
	position: relative;
	transition: 0.3s ease;
}

.pay-plan-card:hover {
	transform: scale(1.03);
	box-shadow: 0px 4px 9px 0px #0000000D;
}

.pay-plan-card.featured {
	background: #4F46E5;
	color: var(--color-white);
	/*   transform: scale(1.05); */
}

.plan-name {
	font-size: 30px;
	font-weight: 600;
	color: var(--color-text);
}

.featured .plan-name {
	color: var(--color-white);
}

.plan-subtext,
.pay-plan-card p {
	font-size: 18px;
	color: var(--color-gray);
	margin: 10px 0 20px;
}

.pay-plan-card.featured p {
	color: var(--color-white);
}

.featured .plan-subtext {
	color: var(--color-white);
}

.plan-price {
	font-size: 50px;
	font-weight: 600;
	margin: 10px 0;
}

.plan-price span {
	font-size: 18px;
	vertical-align: text-top;
	color: var(--color-gray);
}

.pay-plan-card.featured span {
	color: var(--color-white);
}


.plan-discount {
	font-size: 14px;
	background: var(--color-secondary);
	font-weight: 600;
	color: var(--color-white);
	padding: 15px 10px;
	border-radius: 10px;
	display: inline-block;
	margin-bottom: 15px;
}

.list_box.light {
	background: #F9FAFB;
	padding: 25px;
	border-radius: 10px;
}

.list_box.dark {
	background: var(--color-white);
	padding: 25px;
	border-radius: 10px;
	color: var(--color-text);
}

.plan-features {
	list-style: none;
	padding: 0;
	text-align: left;
	font-size: 14px;
	margin-bottom: 20px;
}

.plan-features li {
	margin: 20px 0;
	font-size: 18px;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.plan-features li svg {
	padding-right: 10px;
}

.plan-button {
	font-size: 18px;
	display: inline-block;
	padding: 20px 50px;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 600;
}

.plan-button.light {
	color: var(--color-primary);
	box-shadow: 0px 4px 9px 0px #0000000D;
	background: var(--color-white);
}

.plan-button.dark {
	background: var(--color-primary);
	color: var(--color-white);
}

.hidden {
	display: none;
}

@media (max-width: 600px) {
	.pay-plan-section {
		width: 100%;
		padding: 50px 20px;
	}

	.pay-plan-section {
		width: auto;
	}

	.list_box {
		padding: 10px !important;
	}

	.plan-features li {
		font-size: 14px;
	}
}

/* New Features Section */
.pay-features-box {
	padding: 80px 20px;
	background: #f8f8fc;
	text-align: center;
}

.pay-features-box__container {
	max-width: 1200px;
	margin: 0 auto;
}

.pay-features-box__title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1f2937;
}

.pay-features-box__subtitle {
	max-width: 700px;
	margin: 0 auto 40px;
	font-size: 1.1rem;
	color: #6b7280;
}

.pay-features-box__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.pay-features-box__item {
	background: #fff;
	border-radius: 50px;
	padding: 30px 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
	transition: all .3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pay-features-box__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(67, 56, 202, 0.18);
}

.pay-features-box__img {
	width: 100%;
	max-width: 180px;
	margin-bottom: 0px;
}

.pay-features-box__img img {
	width: 100%;
	height: auto;
	display: block;
}

.pay-features-box__heading {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0px;
	margin-top: 0px;
}

.pay-features-box__desc p {
	font-size: 16px;
	color: var(--color-gray);
	line-height: 1.7;
	margin-bottom: 20px;
}

.pay-features-box__btn {
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 6px;
	padding: 8px 16px;
	font-weight: 400;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.pay-features-box__btn:hover {
	background: #3730a3;
}

/* Request Callback Section */
.pay-request-callback {
	background: var(--color-white);
	box-shadow: 0px -40px 80px 0px #0000000D;
	border-radius: 50px;
	/*   margin-top: -150px; */
	max-width: 1100px;
	margin: -150px auto 0 auto;
	position: relative;
	z-index: 2;
	padding: 50px;
}

.pay-highlight {
	color: var(--color-primary);
}

.pay-form {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.pay-input {
	padding: 12px 15px;
	border: none;
	border-radius: 6px;
	background: #f3f3f3;
	width: 250px;
	font-size: 14px;
}

.pay-button {
	background: #5a47ea;
	color: var(--color-white);
	border: none;
	padding: 12px 25px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
}

.footer-pay-email a,
.footer-pay-phone a,
.footer-pay-address a {
	color: #888888;
	text-decoration: none;
}


.custom-form label {
	font-size: 14px;
	color: var(--color-text) !important;
}

.two-col-form input,
.two-col-form select,
.two-col-form textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	transition: border 0.3s;
	margin-bottom: 0px;
	box-sizing: border-box;
}

.two-col-form input:focus,
.two-col-form textarea:focus {
	border-color: #6366f1;
}

.two-col-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 0px;
}

.two-col-form .form-col-full {
	grid-column: 1 / -1;
}

@media (max-width: 768px) {
	.two-col-form .form-row {
		grid-template-columns: 1fr;
	}

}

.two-col-form .form-submit input[type="submit"] {
	background: linear-gradient(to right, #4f46e5, #9333ea);
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 8px;
	width: 100%;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.3s;
}

.two-col-form .form-submit input[type="submit"]:hover {
	opacity: 0.9;
}

.custom-form p {
	margin-block-start: 0em;
	margin-block-end: 0em;
}
.wpcf7-response-output{
	color:#000 !important;
}

@media (max-width: 768px) {
	.footer {
		padding: 60px 20px 0 !important;
	}

	.pay-request-callback {
		padding-left: 20px;
		padding-right: 20px;
	}

	.pay-footer {
		padding: 50px 20px 0 !important;
	}

	.pay-footer-content {
		gap: 20px;
	}

	.pay-footer-copyright .pay-footer-menu {
		display: grid !important;
	}
}

/* Footer Section */
/* Footer Base */
.footer {
	background-color: #111;
	color: var(--color-white);
	padding: 60px 50px 0px;
	margin-top: 90px;
}

.footer-main-section {
	max-width: 1250px;
	margin: 0 auto;
}

.pay-footer {
	padding: 50px 20px 0;
	font-size: 15px;
	line-height: 1.6;
}

/* === TOP SECTION === */
.pay-footer-top {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* 3 equal columns */
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 25px;
}

.pay-footer-top-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* 3 equal columns */
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 25px;
}

.pay-footer-logo a {
	display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
}

.pay-footer-logo a .highlight {
	color: var(--color-white);
}

.pay-footer-logo img {
	width: 17%;
	height: auto;
}

.pay-footer-logo .logo-text {
	font-size: 24px;
}

.pay-footer-info p strong {
	margin: 0 0 6px 0;
	font-size: 18px;
	/* 		border-left: 3px solid var(--color-white);
    padding-left: 10px; */
}

.pay-footer-info small {
	display: block;
	font-size: 16px;
	color: var(--color-gray);
	margin-top: 6px;
}

.pay-footer-info small a {
	font-size: 16px;
	color: var(--color-gray);
	text-decoration: none;
}

.pay-footer-info h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

/* === MIDDLE GRID === */
.pay-footer-middle {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-bottom: 25px;
	border-top: 1px solid var(--color-gray);
}

.pay-footer-middle h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

.footer-links ul,
.footer-resources ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li,
.footer-resources ul li {
	margin: 8px 0;
}

.footer-links ul li a,
.footer-resources ul li a,
.pay-footer-left a {
	color: var(--color-gray);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-resources ul li a:hover,
.pay-footer-left a:hover {
	color: var(--color-white);
}

.footer-gst a {
	font-size: 16px;
	color: var(--color-gray);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-gst a:hover {
	color: var(--color-white);
}

.footer-follow-us a {
	text-decoration: none !important;
}

/* === BOTTOM SECTION === */
.pay-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid var(--color-gray);
}

.footer-bank span {
	font-size: 16px;
	color: var(--color-gray);
}

.footer-apps {
	display: flex;
	gap: 20px;
}

.footer-callback {
	flex-shrink: 0;
	/* prevent shrinking */
}

.footer-callback form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-callback input {
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	flex: 1;
	font-size: 14px;
}

.footer-callback button {
	background: #FF6600;
	color: #fff;
	padding: 12px 24px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: 0.3s;
}

.footer-callback button:hover {
	opacity: 0.9;
}

/* === RESPONSIVE FIX === */
@media (max-width: 991px) {
	.pay-footer-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.pay-footer-top-2 {
		flex-direction: column;
		align-items: flex-start;
	}

	.pay-footer-bottom {
		flex-direction: column;
		align-items: center;
	}

	.footer-callback form {
		flex-direction: column;
		width: 100%;
	}

	.footer-callback input,
	.footer-callback button {
		width: 100%;
	}

	.pay-footer-top {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		margin-bottom: 30px;
	}

	.pay-footer-top-2 {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
		margin-bottom: 10px;
	}

	.footer-apps {
		flex-direction: column;
	}
}

/* Wrapper */
.pay-footer-copyright {
	border-top: 1px solid var(--color-gray);
	color: var(--color-gray);
	padding: 15px 0px;
	font-size: 16px;
}

/* Left side */
.pay-footer-copyright .pay-footer-left p {
	margin: 0;
	color: var(--color-gray);
	text-align: center;
}

/* Right side menu */
.pay-footer-copyright .pay-footer-menu {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.pay-footer-copyright .pay-footer-menu li a {
	color: var(--color-gray);
	text-decoration: none;
	transition: color 0.3s ease;
}

.pay-footer-copyright .pay-footer-menu li a:hover {
	color: var(--color-white);
}

/* Wrapper */
.pay-callback {
	max-width: 700px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
}

/* Row */
.pay-callback-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

/* Column (half width) */
.pay-callback-col {
	flex: 1;
	min-width: 250px;
}

/* Labels */
.pay-callback-col label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	color: #333;
}

/* Inputs */
.pay-callback-col input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}

.pay-callback-col input:focus {
	border-color: #6c63ff;
	box-shadow: 0 0 6px rgba(108, 99, 255, 0.3);
	outline: none;
}

/* Submit */
.pay-callback-submit {
	text-align: center;
}

.pay-callback-submit input[type="submit"] {
	background: #6c63ff;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.pay-callback-submit input[type="submit"]:hover {
	background: #574fd6;
}

/* Mobile */
@media (max-width: 600px) {
	.pay-callback-row {
		flex-direction: column;
	}
}


/* Mobile responsive */
@media (max-width: 768px) {
	.pay-footer-copyright {
		flex-direction: column-reverse;
		text-align: center;
		gap: 10px;
	}
}


/* Text Editor */
.pay-text-editor {
	padding: 0px 60px 90px 60px;
	color: var(--color-gray);
	font-size: 18px;

}

.pay-text-editor h2 {
	font-size: 35px;
	font-weight: 600;
	color: var(--color-secondary);
}

.pay-text-editor .text-content {
	color: var(--color-gray);
	font-size: 18px;
	max-width: 1100px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.pay-text-editor {
		padding: 30px 30px 90px 30px;
	}

	.pay-text-editor h2 {
		font-size: 24px;
	}
}

/* Single blog */
.single-blog-wrapper {
	max-width: 1200px;
	margin: 40px auto;
	display: flex;
	gap: 30px;
	padding: 0 20px;
}

/* === MAIN BLOG CONTENT === */
.single-blog-main {
	flex: 0 0 70%;
}

.single-blog-post img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 20px;
}

.single-blog-post h1 {
	font-size: 32px;
	margin-bottom: 10px;
	font-weight: bold;
}

.single_title_desc {
	font-size: 20px;
	line-height: 30px;
	color: var(--color-gray);
}

.single-blog-meta {
	font-size: 14px;
	color: #CCCCCC;
	margin-bottom: 20px;
}

.pay-author,
.pay-date {
	padding-right: 10px;
}

.single-blog-content {
	font-size: 16px;
	line-height: 30px;
	color: var(--color-gray);
	font-weight: 300;
}

.tag-list {
	margin-top: 30px;
}

.tag-list a {
	display: inline-block;
	background-color: var(--color-secondary);
	color: var(--color-white);
	padding: 10px 15px;
	font-size: 14px;
	margin: 0 5px 8px 0;
	border-radius: 16px;
	text-decoration: none;
	transition: 0.3s;
}

.tag-list a:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

/* === SIDEBAR === */
.single-blog-sidebar {
	flex: 0 0 30%;
}

.widget-box {
	margin-bottom: 30px;
	background: var(--color-bg);
	padding: 20px;
	border-radius: 16px;
}

.widget-box h4 {
	font-size: 18px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
}

.widget-box .single-blog-meta {
	margin-top: 7px;
}

.widget-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-box ul li {
	margin-bottom: 15px;
}

.widget-box ul li a {
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	color: var(--color-secondary);
	display: flex;
	gap: 10px;
	align-items: center;
}

.widget-box ul li img {
	width: 100px;
	height: auto;
	object-fit: cover;
	border-radius: 4px;
}

.our-blog-title {
	display: grid;
}

.our-blog-title .time {
	font-size: 14px;
	color: var(--color-gray);
}

/* === RELATED POSTS SECTION === */
.related-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	padding-bottom: 90px;
}

.related-section h2 {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: bold;
}

.related-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 20px;
}

.related-card {
	border-radius: 8px;
	overflow: hidden;
	transition: 0.3s;
	display: flex;
	flex-direction: column;
	text-align: left;
	border: 1px solid #f9f9f9;
	padding: 10px;
}


.related-card img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 5px;
}

.related-meta {
	font-size: 13px;
	color: #777;
	margin-bottom: 5px;
}

.related-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-secondary);
}

.related-card a {
	text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
	.single-blog-wrapper {
		flex-direction: column;
	}

	.single-blog-main,
	.single-blog-sidebar {
		flex: 0 0 100%;
	}

	.related-card {
		flex: 0 0 100%;
	}

	.related-title {
		font-size: 24px;
	}

	.related-posts {
		grid-template-columns: repeat(1, 1fr);
	}

	.pay-footer-middle {
		gap: 10px;
	}
}

/* Security Section */
.pay-security-section {
	text-align: center;
	padding: 60px 20px;
}

.security-box-container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.pay-security-section .pay-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	justify-items: center;
	align-items: start;
}

.pay-security-title {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0px;
	color: var(--color-text);
	text-align: center;
}

.pay-security-section .title-line {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.pay-security-subtitle {
	color: var(--color-gray);
	font-size: 16px;
	margin: 0 auto 0px;
	max-width: 600px;
	line-height: 30px;
}

/* Each Item */
.pay-security-section .pay-item {
	text-align: center;
	max-width: 220px;
}

.pay-security-section .pay-item img {
	width: 100%;
}

.pay-security-section .pay-item h3 {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
	.pay-security-section .pay-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.pay-security-section .pay-grid {
		grid-template-columns: 1fr;
	}

	.pay-security-title {
		font-size: 32px;
	}
}


/* Contact Section */
.pay-contact-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 0px;
	font-family: Arial, sans-serif;
	background: #fff;

	max-width: 1100px;
	margin: 0 auto;
	/* keeps it centered */
}

.pay-contact-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.pay-contact-box {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.pay-contact-icon {
	width: 60px;
	height: 60px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.pay-contact-details {
	max-width: 300px;
}

.pay-contact-title {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-secondary);
}

.pay-contact-text {
	font-size: 14px;
	color: var(--color-gray);
	margin: 5px 0;
	font-weight: 500;
}

.pay-contact-details small {
	font-size: 14px;
	color: var(--color-gray);
}

.pay-contact-illustration {
	flex: 1;
	text-align: center;
}

/* .pay-contact-illustration img {
  max-width: 80%;
} */

@media (max-width: 768px) {
	.pay-contact-section {
		flex-direction: column;
		text-align: center;
	}

	.pay-contact-details {
		text-align: left;
	}

	.pay-contact-illustration img {
		max-width: 100%;
	}

	.pay-contact-info {
		align-items: left;
	}
}

.site-404 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80vh;
	/* fill most of the screen */
	text-align: center;
}

.site-404 .error-content {
	max-width: 600px;
}

.site-404 .error-image {
	max-width: 100%;
	height: auto;
	margin: 0 auto 20px;
	display: block;
}

.site-404 .btn {
	margin-top: 20px;
}

/* --- Popup Styles --- */
.pay-popup-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	margin: auto;
	flex-wrap: wrap;
	/* ensures wrapping on small screens */
}

.pay-popup-section .selected-dial-code {
	padding-left: 10px !important;
}

.ays-popup-box-main-box h2.ays_pb_title_styles_1,
.ays-popup-box-main-box .ays-popup-hrs-default {
	display: none !important;
}

.pay-popup-left {
	flex: 1;
	min-width: 280px;
}

.pay-popup-left h2 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.pay-popup-left h2 .highlight {
	color: #4A3AFF;
	/* Purple */
}

.underline {
	width: 120px;
	height: 3px;
	background: #4A3AFF;
	border: none;
	margin-bottom: 20px;
}

.pay-popup-right {
	flex: 1;
	text-align: center;
}

.pay-popup-right img {
	max-width: 100%;
	height: auto;
}

.pay-popup-left input,
.pay-popup-left textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px 15px;
	margin-bottom: 15px;
	font-size: 15px;
}

.pay-popup-left input[type="submit"] {
	background: #4A3AFF;
	color: #fff;
	border: none;
	font-weight: 500;
	padding: 12px;
	cursor: pointer;
	border-radius: 8px;
}

.pay-popup-left input[type="submit"]:hover {
	background: #372ecc;
}

.wpcf7-form-control-wrap {
	display: grid !important;
}

.pay-popup-left input{
	margin-bottom: 0px !important;
}
@media screen and (max-width: 768px) {
    .ays-pb-modal.ays-pb-modal_1 {
        width: 90% !important;
    }
}
/* --- Responsive --- */
@media (max-width: 768px) {
	.pay-popup-section {
		flex-direction: column;
		gap: 0px;
		padding: 15px;
	}

	.pay-popup-right {
		display: none;
		/* Hide right image on mobile */
	}

	.pay-popup-left {
		min-width: auto;
	}

	.pay-popup-left h2 {
		font-size: 22px;
		text-align: center;
	}

	.pay-popup-left input,
	.pay-popup-left textarea {
		font-size: 14px;
		padding: 10px 12px;
	}

	.pay-popup-left input[type="submit"] {
		font-size: 14px;
		padding: 10px;
	}
}
/* All styles wrapped inside .pay-payment-main */
.pay-payment-main {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

/* Card Layout */
.pay-payment-main .card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 300px;
}

.pay-payment-main .left { flex: 2; }

.pay-payment-main h2, .pay-payment-main h3 { margin-top: 0; }

.pay-payment-main label { display: block; margin: 8px 0 4px; font-weight: 600; }

.pay-payment-main input[type="text"],
.pay-payment-main input[type="email"],
.pay-payment-main input[type="number"],
.pay-payment-main select,
.pay-payment-main textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.pay-payment-main textarea { resize: vertical; min-height: 60px; }

/* Employee Selector */
.emp_dropdown{
	width: -webkit-fill-available;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: border 0.3s;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.emp_dropdown #employees{
	width: auto !important;
	margin-bottom: 0 !important;
    border: unset !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}
#employees:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

/* Radio Options */
.pay-payment-main .radio-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 8px;
  cursor: pointer;
}

.pay-payment-main .radio-option input { margin-left: 10px; }

.pay-payment-main .section { margin-top: 20px; }

.pay-payment-main .flex { display: flex; gap: 20px; }


/* Price Details */
.pay-payment-main .price-details {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  width: 300px;
}

.pay-payment-main .price-row {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
  font-size: 14px;
}

.pay-payment-main .price-row.total {
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

/* Pay Button */
.pay-payment-main button.pay-btn {
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}

.pay-payment-main button.pay-btn:hover { background: #3729d8; }

/* WhatsApp Box */
.pay-payment-main .whatsapp-box,
.pay-payment-main .billing-box{
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 8px;
  background: #f9f9f9;
  margin-top: 20px;
}

/* .pay-payment-main .whatsapp-box h2 { font-size: 16px; font-weight: 700; margin-top: 0; }
 */
.pay-payment-main .whatsapp-toggle {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.pay-payment-main .whatsapp-toggle label { font-weight: 600; cursor: pointer; }

/* WhatsApp inputs */
.pay-payment-main .whatsapp-extra {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pay-payment-main .input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.pay-payment-main .input-group .label-col { flex: 2; }
.pay-payment-main .input-group .input-col { flex: 1; }

.pay-payment-main .input-group input[type="number"] {
  width:  -webkit-fill-available;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.pay-payment-main .input-group .label-col label { font-weight: 600; margin-bottom: 4px; display: block; }
.pay-payment-main .input-group .label-col small { font-size: 13px; color: #555; }

/* Billing Details Box */
.pay-payment-main .billing-box h3 { font-size: 16px; font-weight: 700; margin-top: 0; }

.pay-payment-main .billing-box input,
.pay-payment-main .billing-box textarea {
  width: -webkit-fill-available;
  padding: 14px;
  border-radius: 8px;
/*   border: 1px solid #e5e7eb; */
	outline: none;
    transition: border 0.3s;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* Highlight invalid inputs */
.pay-payment-main input.error,
.pay-payment-main textarea.error {
  border-color: red;
  background: #ffe6e6;
}

/* Responsive */
@media (max-width: 800px) {
  .pay-payment-main { flex-direction: column; }
  .pay-payment-main .price-details { width: 100%; }
  .pay-payment-main .input-group { flex-direction: column; gap: 8px; }
}
