/*!
Theme Name: AdGrant
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: adgrant
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

AdGrant is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
:root {
	--primary-color: #1aa18c; /* Teal color from the design */
	--dark-color: #333333;
	--light-color: #ffffff;
	--background-color: #f8fdfb; /* Light background color */
	--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
	Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
/* 	font-family: var(--font-family); */
	font-family: "Sora", sans-serif !important;
	color: var(--dark-color);
	background-color: var(--background-color);
	padding-top: 76px;
}

/* Navbar styling */
.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
	max-height: 28px;
	max-width: 156px;
}
.fs-14 {
	font-size: 14px;
}
.fs-hero-head {
	font-size: clamp(30px, 4vw, 52px);
}
.nav-link {
	color: var(--dark-color) !important;
	font-weight: 400;
	font-size: 14px;
	padding: 0.5rem 0.8rem !important;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: var(--primary-color) !important;
}

/* Primary button styling */
.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	font-weight: 500;
	font-size: 1rem;
	padding: 0.75rem 1.75rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	color: white;
}

.btn-primary:hover {
	background-color: #179a86;
	border-color: #179a86;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(26, 161, 140, 0.2);
}

/* Outline button styling */
.btn-outline-dark {
	border-width: 2px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-outline-dark:hover {
	background-color: var(--dark-color);
	transform: translateY(-2px);
}

/* Hero section styling */
.hero-section {
	padding-top: 5rem;
	/* padding-bottom: 6rem; */
	/* background: linear-gradient(180deg, #F5FFFD 0%, #FFFFFF 100%); */
}

.bg-light-custom {
	background-color: var(--background-color);
}

h1 {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

h1 .text-primary {
	color: var(--primary-color) !important;
}

.lead {
	color: #666;
	font-size: 1.25rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.btn {
	padding: 0.75rem 1.75rem;
	font-weight: 600;
}

.rounded-pill {
	border-radius: 50rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-section {
		padding-top: 2rem;
		padding-bottom: 3rem;
	}

	h1 {
		font-size: 2.2rem;
	}

	.lead {
		font-size: 1.1rem;
	}
}

/* Trusted By Partners Section */
.top-section {
	background: linear-gradient(180deg, #f5fffd 0%, #ffffff 100%);
}
.trusted-by-section {
	/* background-color: var(--light-color); */
	/* background: linear-gradient(180deg, #F5FFFD 0%, #FFFFFF 100%); */
	padding: 3.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trusted-by-heading {
	font-size: 18px;
	font-weight: 400;
	color: #444;
	margin-bottom: 2.5rem;
}

.client-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.client-logo {
	max-height: 90px;
	width: auto;
	max-width: 100%;
	opacity: 0.85;
	transition: opacity 0.3s ease;
	filter: grayscale(30%);
}

.client-logo:hover {
	opacity: 1;
	filter: grayscale(0%);
}
.home h1.entry-title {
    display: none !important;
}
h1.entry-title {
	text-align:center;
}
footer.entry-footer {
    display: none;
}
@media (max-width: 768px) {
	.trusted-by-heading {
		font-size: 1.1rem;
		margin-bottom: 2rem;
		padding: 0 15px;
	}

	.trusted-by-section {
		padding: 2.5rem 0;
	}

	.client-logo {
		max-height: 50px;
		margin-bottom: 0;
	}
}

@media (max-width: 576px) {
	.client-logo {
		max-height: 40px;
	}

	.trusted-by-section {
		padding: 2rem 0;
	}
}

/* Experience Section Styling */
.experience-section {
	padding: 5rem 0;
	background-color: var(--light-color);
}

.section-title {
	font-size: clamp(24px, 4vw, 32px);
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 17px;
	color: #555;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	margin-bottom: 3rem;
}

.fw-bold {
	font-weight: 600 !important;
}

.experience-card {
	background-color: #f9fafb;
	border-radius: 12px;
	padding: 1.2rem;
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.experience-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.experience-icon-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(26, 161, 140, 0.1);
	margin-bottom: 1.25rem;
}

.experience-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.experience-card-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 0.5rem;
}

.experience-card-text {
	font-size: 1rem;
	color: #666;
	margin-bottom: 0;
}

.experience-footer-text {
	font-size: 14px;
	color: #61647d;
	max-width: 800px;
	margin: 2rem auto 0;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.experience-section {
		padding: 3rem 0;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.section-subtitle {
		font-size: 1.1rem;
		padding: 0 15px;
	}

	.experience-card {
		padding: 1.75rem 1.5rem;
	}

	.experience-card-title {
		font-size: 1.25rem;
	}

	.experience-footer-text {
		font-size: 1rem;
		padding: 0 15px;
	}
	.wishlist-form{
		padding:0 15px !important;
	}
}

/* Pricing Section Styling */
.pricing-section {
	padding: 5rem 0;
	background-color: #FAFAFA;
}

.pricing-card {
	background-color: white;
	border-radius: 12px;
	padding: 2.5rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.price-amount {
	font-size: 2.8rem;
	font-weight: 700;
	color: #2e7d32;
	margin-bottom: 0;
	line-height: 1;
}

.price-period {
	font-size: 1rem;
	font-weight: 400;
	color: #777;
	margin-left: 0.25rem;
}

.price-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
}

.price-icon-revenue {
	background-color: #e8f5e9;
}

.price-icon-investment {
	background-color: #f0f0f5;
}

.price-icon-img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.price-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 0.5rem;
}

.price-description {
	font-size: 0.95rem;
	color: #777;
	margin-bottom: 1.75rem;
}

.progress-container {
	margin-top: auto;
}

.progress {
	height: 8px;
	border-radius: 4px;
	background-color: #f0f0f0;
	overflow: hidden;
}

.progress-bar.bg-success {
	background-color: #2e7d32 !important;
}

.progress-bar.bg-secondary {
	background-color: #adb5bd !important;
}

.pricing-footer-text {
	font-size: 1.15rem;
	color: #555;
	max-width: 650px;
	margin: 0 auto 1.5rem;
	line-height: 1.6;
	font-weight: 300;
}

@media (max-width: 768px) {
	.pricing-section {
		padding: 3rem 0;
	}

	.pricing-card {
		padding: 1.75rem;
		margin-bottom: 1.5rem;
	}

	.price-amount {
		font-size: 2.2rem;
	}

	.pricing-footer-text {
		font-size: 1rem;
		padding: 0 15px;
	}
}

/* FAQ Section Styling */
.faq-section {
	padding: 5rem 0;
	background-color: var(--light-color);
}

.accordion {
	--bs-accordion-border-width: 0;
	--bs-accordion-border-radius: 0;
	--bs-accordion-inner-border-radius: 0;
	--bs-accordion-btn-padding-x: 1.25rem;
	--bs-accordion-btn-padding-y: 1.25rem;
	--bs-accordion-btn-color: var(--dark-color);
	--bs-accordion-btn-bg: transparent;
	--bs-accordion-btn-focus-border-color: transparent;
	--bs-accordion-btn-focus-box-shadow: none;
	--bs-accordion-body-padding-x: 1.25rem;
	--bs-accordion-body-padding-y: 1.25rem;
	--bs-accordion-active-color: var(--dark-color);
	--bs-accordion-active-bg: transparent;
}

.accordion-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background-color: transparent;
	margin-bottom: 0;
}

.accordion-item:first-of-type {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-button {
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--dark-color);
	background-color: transparent;
	padding: 1.25rem;
	border: none;
	box-shadow: none !important;
	transition: all 0.3s ease;
}

.accordion-button:hover {
	color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
	color: var(--primary-color);
	background-color: transparent;
	box-shadow: none;
	font-weight: 600;
}

.accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}

.accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	content: "";
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231aa18c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(-180deg);
}

.accordion-body {
	background-color: rgba(248, 250, 250, 0.6);
	padding: 1.25rem;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
	font-weight: 300;
}

.accordion-body p {
	margin-bottom: 0.75rem;
}

.accordion-body p:last-child {
	margin-bottom: 0;
}

.accordion-body ul {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.accordion-body ul li {
	margin-bottom: 0.5rem;
}

.accordion-body a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
}

.accordion-body a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.faq-section {
		padding: 3rem 0;
	}

	.accordion-button {
		font-size: 0.95rem;
		padding: 1.25rem 1rem;
	}

	.accordion-body {
		padding: 1.25rem 1rem;
		font-size: 0.9rem;
	}
}

/* Testimonials Section Styling */
.testimonials-section {
	padding: 5rem 0;
	background-color: #f8f8f8;
}

.testimonials-subtitle {
	font-size: 1.1rem;
	color: #555;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
}

.testimonial-card {
	background-color: white;
	border-radius: 16px;
	padding: 2.75rem 2.5rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(0, 0, 0, 0.04);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width:304px;
}

.testimonial-quote-icon {
	position: absolute;
	top: 1rem;
	left: 1rem;
	opacity: 0.5;
}

.testimonial-content {
	margin-top: 3rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.testimonial-text {
	font-size: 1.05rem;
	color: #444;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	flex-grow: 1;
	font-weight: 300;
}

.testimonial-author {
	display: flex;
	align-items: center;
	margin-top: auto;
}

.testimonial-author-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1rem;
	background-color: #f0f0f0;
}

.avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-author-info {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 0.25rem;
}

.author-position {
	font-size: 0.9rem;
	color: #777;
	margin-bottom: 0;
}
.ex-years .experience-icon-wrapper {
    background-color: #EA433520;
}

.ex-price .experience-icon-wrapper {
    background-color: #4285F420;
}

.ex-expert .experience-icon-wrapper {
    background-color: #34A85320;
}

@media (max-width: 768px) {
	.testimonials-section {
		padding: 3rem 0;
	}

	.testimonials-subtitle {
		font-size: 1rem;
		padding: 0 15px;
	}

	.testimonial-card {
		padding: 2rem 1.5rem;
		margin-bottom: 1.5rem;
	}

	.testimonial-text {
		font-size: 0.95rem;
	}

	.testimonial-author-avatar {
		width: 40px;
		height: 40px;
	}

	.author-name {
		font-size: 0.95rem;
	}

	.author-position {
		font-size: 0.85rem;
	}
}

/* Application Form Section Styling */
.application-form-section {
	padding: 5rem 0;
	background-color: white;
}

.application-subtitle {
	font-size: 1.1rem;
	color: #555;
	font-weight: 300;
}

.form-card {
	background-color: white;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	max-width: 550px;
	margin: 0 auto;
}

.form-label {
	color: #444;
	font-weight: 300;
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
	display: block;
}

.form-control {
	padding: 0.85rem 1.25rem;
	font-size: 1rem;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
	height: auto;
	color: #333;
}

.form-control::placeholder {
	color: #aaa;
	font-weight: 300;
	font-size: 0.95rem;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(26, 161, 140, 0.12);
	outline: none;
}

.form-check-input[type="radio"] {
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.1rem;
	background-color: white;
	border: 2px solid #ddd;
	cursor: pointer;
}

.form-check-input:checked[type="radio"] {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	background-image: none;
}

.form-check-label {
	font-size: 1rem;
	color: #444;
	margin-left: 0.5rem;
	cursor: pointer;
}

.btn-application {
	padding: 0.85rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 8px;
	width: 100%;
	margin-top: 0.5rem;
}

@media (max-width: 768px) {
	.application-form-section {
		padding: 3rem 0;
	}

	.form-card {
		padding: 1.75rem;
	}

	.form-control {
		padding: 0.65rem 0.85rem;
		font-size: 0.95rem;
	}

	.btn-application {
		padding: 0.65rem 1.5rem;
		font-size: 0.95rem;
	}
}

/* Custom radio button styling to match design */
.form-check-input[type="radio"] {
	background-image: none;
	position: relative;
	border-radius: 50%;
	cursor: pointer;
}

.form-check-input:checked[type="radio"]::after {
	content: "";
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	background-color: white;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.form-check-inline {
	margin-right: 1.5rem;
}

/* CTA Section */
.cta-section {
	background-color: #26b19d;
	color: #ffffff;
	padding: 3.5rem 0;
}

.cta-title {
	font-size: clamp(25px, 4vw, 30px);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.cta-subtitle {
	font-size: 16px;
	margin-bottom: 1.5rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.btn-cta {
	padding: 0.75rem 1.5rem;
	font-size: 12px;
	font-weight: 500;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.btn-light.btn-cta {
	background-color: #ffffff;
	color: black;
	border: 2px solid #ffffff;
}

.btn-light.btn-cta:hover {
	background-color: #f8f9fa;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.btn-outline-light.btn-cta {
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.btn-outline-light.btn-cta:hover {
	background-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

/* Media queries for CTA section responsiveness */
@media (max-width: 768px) {
	.cta-title {
		font-size: 1.8rem;
	}

	.cta-subtitle {
		font-size: 1rem;
	}

	.cta-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}
	.testimonial-card{
		max-width:100%
	}
	.deliverable-title{
		font-size:1rem !important;
	}
	.deliverable-text{
		font-size:0.8rem !important;
	}
	
}

@media (max-width: 576px) {
	.cta-section {
		padding: 2.5rem 1rem;
	}

	.cta-title {
		font-size: 1.5rem;
	}
}

/* Footer Section */
.footer-section {
	background-color: #141924;
	color: #ffffff;
	padding: 4rem 0 2rem;
}

.footer-logo {
	margin-bottom: 1.5rem;
}

.footer-description {
	color: #c0c0c0;
	font-size: 0.95rem;
	max-width: 300px;
	line-height: 1.6;
}

.footer-heading {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #ffffff;
}

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

.footer-links li {
	margin-bottom: 1rem;
}

.footer-links a {
	color: #c0c0c0;
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 1rem;
}

.footer-links a:hover {
	color: #ffffff;
}

.footer-newsletter-text {
	color: #c0c0c0;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.footer-subscribe-form {
	margin-bottom: 2rem;
}

.subscription-container {
	display: flex;
	gap: 1rem;
	flex-direction: column;
}

.footer-input {
	background-color: #1e2533;
	border: none;
	color: #ffffff;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	border-radius: 8px;
	width: 100%;
}

.footer-input::placeholder {
	color: #ffffff;
	opacity: 0.9;
}

.footer-input:focus {
	background-color: #1e2533;
	box-shadow: none;
	border-color: transparent;
	color: #ffffff;
}

.btn-subscribe {
	background-color: #26b19d;
	color: #ffffff;
	font-weight: 500;
	padding: 1rem 1.25rem;
	border: none;
	border-radius: 8px;
	transition: background-color 0.2s ease;
	font-size: 1.125rem;
	width: 100%;
}

.btn-subscribe:hover {
	background-color: #22a090;
	color: #ffffff;
}

@media (min-width: 768px) {
	.subscription-container {
		flex-direction: row;
		align-items: stretch;
	}

	.footer-input {
		flex: 1;
	}

	.btn-subscribe {
		width: auto;
		white-space: nowrap;
	}
}

.footer-copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
	margin-top: 2rem;
	text-align: center;
}

.footer-copyright p {
	color: #8a8f9d;
	font-size: 0.9rem;
	margin-bottom: 0;
}

/* Responsive adjustments for footer */
@media (max-width: 991px) {
	.footer-section {
		padding: 3rem 0 1.5rem;
	}

	.footer-heading {
		margin-top: 1.5rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 576px) {
	.footer-section {
		padding: 2.5rem 0 1.5rem;
		text-align: center;
	}

	.footer-description {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-copyright p {
		font-size: 0.8rem;
	}

	.footer-links {
		margin-bottom: 2rem;
	}

	.footer-links li {
		margin-bottom: 0.75rem;
	}
}

/* How It Works Section */
.how-it-works-section {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

.how-it-works-title {
	font-size: clamp(28px, 4vw, 30px);
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.how-it-works-subtitle {
	font-size: 17;
	color: #666;
	max-width: 800px;
	font-weight: 300;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.5rem;
}

.phase-card {
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	padding: 2.5rem;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.phase-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: #555;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.phase-label-2 {
	color: var(--primary-color);
}

.phase-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.phase-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 0;
}

.phase-badge {
	display: inline-block;
	/* background-color: #f8f9fa; */
	color: var(--dark-color);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	border: 1px solid #E7E7F4;
}

.phase-badge-2 {
	color: var(--primary-color);
}

.phase-time {
	font-size: 1rem;
	color: #666;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.phase-description {
	font-size: 14px;
	color: #555;
	margin-bottom: 2rem;
	font-weight: 300;
	line-height: 1.5;
}

.phase-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
	font-weight: 400;
}

.phase-features li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.25rem;
	font-size: 1rem;
	color: #444;
}

.phase-check-icon,
.phase-icon {
	margin-right: 1rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phase-icon-img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.deliverable-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	background-color: #f8f9fa;
	border-radius: 50%;
	flex-shrink: 0;
}

.deliverable-icon-2 {
	background-color: rgba(26, 161, 140, 0.1);
}

.deliverable-icon svg {
	width: 20px;
	height: 20px;
	color: var(--dark-color);
}

.deliverable-content {
	flex-grow: 1;
}

.deliverable-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 0.5rem;
}

.deliverable-text {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 0;
	line-height: 1.5;
}

.deliverable-icon-img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.phase-footer {
	margin-top: 2rem;
	padding: 1.5rem 1.75rem;
	background-color: #f9f9f9;
	border-radius: 8px;
	position: relative;
	display: block;
	overflow: hidden;
}

.phase-footer::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	/* background-color: #000; */
	border-radius: 4px 0 0 4px;
}

.phase-footer .deliverable-content {
	display: flex;
	flex-direction: column;
}

.phase-footer .deliverable-icon,
.phase-footer .deliverable-icon-2 {
	display: none;
}
.onboarding-form-container {
	min-height: 300px!important;	
}

.deliverable-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.deliverable-text {
	font-size: 1rem;
	color: #444;
	margin-bottom: 0;
	line-height: 1.5;
}

/* Specific styles for phase 2 footer */
.phase-footer.footer-pays::before {
	background-color: var(--primary-color);
}

@media (max-width: 991px) {
	.how-it-works-section {
		padding: 4rem 0;
	}

	.phase-card {
		padding: 2rem;
		margin-bottom: 2rem;
	}

	.phase-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	.how-it-works-section {
		padding: 3rem 0;
	}

	.how-it-works-title {
		font-size: 1.75rem;
	}

	.how-it-works-subtitle {
		font-size: 1rem;
		padding: 0 15px;
	}

	.phase-card {
		padding: 1.75rem;
	}

	.phase-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.phase-badge {
		margin-top: 1rem;
	}
}

/* How It Works Features Section */
.new-features-section {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

.feature-icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #f1f9f7;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.feature-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.feature-title {
	font-size: 20px;
	font-weight: 400;
	color: var(--dark-color);
	margin-bottom: 1rem;
}

.feature-text {
	font-size: 1rem;
	color: #555;
	line-height: 1.6;
	font-weight: 300;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

/* Media queries for features section */
@media (max-width: 991px) {
	.new-features-section {
		padding: 3rem 0;
	}

	.feature-icon-wrapper {
		width: 70px;
		height: 70px;
		margin-bottom: 1.25rem;
	}

	.feature-icon {
		width: 28px;
		height: 28px;
	}
}

@media (max-width: 767px) {
	.feature-text {
		margin-bottom: 2rem;
	}
}
