.btn-outline,
.btn-primary,
.card-cta,
.contact-button,
.copyright a,
.dropdown-menu a,
.footer-logo,
.geo-link,
.learn-more,
.logo-link,
.nav-link,
.read-more,
.social-icon,
a {
	text-decoration: none
}

.approach-card,
.btn,
.free_demo_title,
.section-scroll-anim,
.section-subtitle,
.section-title,
.service-card,
.text-center,
.timeline-item {
	text-align: center
}

.ai-dev-page,
.section-title,
.services-section .section-title {
	color: var(--secondary)
}

.copyright p,
.free_demo_title,
body.ai-dev-page {
	margin: 0
}

.btn,
a {
	transition: .3s
}

:root {
	--primary: #258412;
	--secondary: #1c2a3e;
	--white: #fff;
	--wd-primary-color: #258412;
	--wd-secondary-color: #1c2a3e;
	--wd-accent-color: #4ecdc4;
	--wd-text-color: #4a5568;
	--wd-heading-color: #2c3e50;
	--wd-background-light: #f8f9fa;
	--wd-background-dark: #1c2a3e;
	--wd-border-radius: 8px;
	--wd-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1)
}

.ai-dev-page {
	font-family: Inter, sans-serif;
	overflow-x: hidden
}

/* Hero Section Styles */
.hero-new-section {
	position: relative;
	padding: 120px 0 80px;
	/* background: linear-gradient(135deg, rgba(28, 42, 62, 0.95) 0%, rgba(20, 30, 45, 0.95) 100%); */
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(135deg, rgba(28, 42, 62, 0.9) 0%, rgba(20, 30, 45, 0.9) 100%); */
	z-index: 2;
}

.hero-new-content {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 80px;
}

.hero-new-text {
	flex: 1;
	max-width: 600px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #258412 0%, #4ecdc4 100%);
	padding: 8px 16px;
	border-radius: 20px;
	margin-bottom: 24px;
}

.badge-icon {
	color: white;
	font-size: 1.2rem;
}

.badge-text {
	color: white;
	font-weight: 600;
	font-size: 1.1rem;
}

.hero-new-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: white;
	margin-bottom: 24px;
}

.title-line {
	display: block;
	margin-bottom: 12px;
}

.highlight {
	color: #258412;
	font-weight: 800;
}

.hero-new-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #1c2a3e;
	margin-bottom: 32px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 40px;
}

.btn {
	padding: 12px 32px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.btn-primary {
	background: linear-gradient(135deg, #258412 0%, #4ecdc4 100%);
	color: white;
	border: none;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 132, 18, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid #258412;
	color: #258412;
}

.btn-outline:hover {
	background: #258412;
	color: white;
	border-color: #258412;
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
	font-size: 2rem;
	color: #258412;
	margin-bottom: 12px;
}

.stat-label {
	color: #1c2a3e;
	font-size: 1rem;
	font-weight: 500;
}

.hero-new-visual {
	flex: 1;
	position: relative;
}

.visual-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.floating-card {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s ease;
}

.floating-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.12);
}

.card-icon {
	font-size: 1.5rem;
	color: #258412;
}

.card-content h4 {
	color: white;
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.card-content p {
	color: #a0aec0;
	font-size: 0.9rem;
	margin: 0;
}

.hero-image {
	position: absolute;
	right: 0;
	bottom: -50px;
	width: 100%;
	max-width: 600px;
	z-index: 1;
}

.hero-visual-img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.shape-divider {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}

.shape-fill {
	fill: var(--wd-background-dark);
}

/* .ai-dev-page h1,
.ai-dev-page h2,
.ai-dev-page h3,
.ai-dev-page h4,
.footer-logo .logo-text,
.logo-text {
	font-family: Poppins, sans-serif
} */

.case-meta i,
.contact-item a:hover,
.feature-item i,
.footer-nav ul li a:hover,
.footer-services ul li a:hover,
.highlight-text,
.nav-link:hover,
a {
	color: var(--primary)
}

* {
	padding: 0;
	box-sizing: border-box
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%
}

.ai-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.chevron,
.dropdown,
.nav-links a,
.nav-links li {
	position: relative
}

.ai-nav {
	padding: 20px 0
}

.logo-container,
.logo-link,
nav {
	display: flex;
	align-items: center
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	max-width: 1420px;
	margin: 0 auto
}

/* img.logo-img {
	width: 250px;
	height: 100%
} */

.logo-text {
	font-weight: 600;
	font-size: 18px;
	color: #333
}

.contact-button,
.nav-link {
	font-size: 16px;
	font-weight: 500
}

.footer-logo .logo-wd,
.logo-wd {
	color: var(--primary);
	margin-right: 4px
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	cursor: pointer;
	z-index: 1001
}

.mobile-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #333;
	transition: .3s
}

.nav-link,
.nav-links,
.nav-links li {
	height: 100%;
	display: flex
}

.play-button a {
	color: #ffff !important
}

.nav-links {
	list-style: none;
	gap: 1.5rem;
	margin: 0;
	padding: 0
}

.nav-links li {
	align-items: center;
	margin: 0 1rem
}

.nav-link {
	color: #333;
	transition: color .2s;
	padding: 0 8px;
	align-items: center
}

.contact-button,
.dropdown-menu a {
	transition: background-color .2s
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: .3rem
}

.chevron {
	width: 10px;
	height: 10px;
	margin-left: 4px
}

.chevron:after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	transform: rotate(45deg);
	top: 0
}

.trust-new-logos {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border-radius: 8px;
	min-width: 200px;
	display: none;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .1);
	padding: 10px 0;
	z-index: 100
}

.btn-primary,
.btn-primary:hover,
.contact-button,
.contact-button:hover {
	background: linear-gradient(90deg, var(--primary), #4ecdc4)
}

.dropdown:hover .dropdown-menu {
	display: block;
	animation: .2s fadeIn
}

.dropdown-menu li {
	display: block;
	height: auto;
	margin: 0
}

.nav-links a.active,
.nav-links a:hover {
	color: var(--wd-primary-color)
}

.dropdown-menu a {
	color: #333;
	font-size: 15px;
	padding: 10px 20px;
	display: block
}

.dropdown-menu a:hover {
	background-color: rgba(0, 0, 0, .05);
	color: var(--primary)
}

.contact-button {
	color: #fff;
	padding: 10px 25px;
	border-radius: 4px;
	display: inline-block
}

.nav-links a {
	color: var(--wd-heading-color);
	font-weight: 500;
	padding: 1.2rem 0
}

.nav-links a.active::after,
.nav-links a:hover::after {
	width: 100%
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--wd-primary-color);
	transition: width .3s
}






/**************** TeamSlider Css Starts Here ******************/


.carousel-container {
	position: relative;
	width: 100%;
	margin: auto;
	overflow: hidden;
	border-radius: 10px;
}

/* Cross-fade setup */
.team_carousel {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel_team_container .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.carousel_team_container .slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Visible slide */
.carousel_team_container .slide.active {
	opacity: 1;
	position: relative;
}

/* Arrows */
.carousel_team_container .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #258412, #4ECDC4);
    color: white;
    border: none;
    padding: 0;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 20;
    width: 42px;
    height: 42px; 
	min-width: 42px;
    min-height: 42px;
    line-height: 42px;
    display: inline-block;
}

.carousel_team_container .arrow.left {
	left: 15px;
}

.carousel_team_container .arrow.right {
	right: 15px;
}

.carousel_team_container .arrow:hover {
	background: rgba(0, 0, 0, 0.8);
}




/**************** TeamSlider Css Ends Here ******************/





@media screen and (max-width:992px) {



	.mobile-toggle {
		display: flex
	}

	.nav-content {
		position: relative
	}

	.nav-links {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		height: auto;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s;
		box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
		z-index: 1000
	}

	.nav-links.active {
		max-height: 800px;
		overflow-y: auto;
		gap: 0;
	}

	.nav-links li {
		height: auto;
		width: 100%
	}

	.nav-link {
		padding: 15px 20px;
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, .05)
	}

	.dropdown-toggle {
		justify-content: space-between;
		width: 100%
	}

	.dropdown-menu {
		position: static;
		transform: none;
		box-shadow: none;
		padding: 0;
		width: 100%;
		display: none;
		border-radius: 0
	}

	.dropdown-menu li a {
		padding-left: 40px
	}

	.dropdown.active .dropdown-menu {
		display: block
	}
}

.cta-card,
.geo-block,
.geo-link,
.play-button,
.resource-card,
.service-card,
.step-next,
.step-prev {
	transition: transform .3s
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding: 80px 0;
	overflow: hidden;
	margin-top: 80px;
	background-color: var(--white)
}

.particles-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1
}

.hero-content {
	position: relative;
	z-index: 2
}

.hero-title {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 2rem;
	animation: 1s fadeInUp
}

.hero-features {
	margin-bottom: 3rem
}

.hero-features p {
	font-size: 20px;
	margin-bottom: 1.5rem;
	line-height: 28px
}

.gradient-text {
	background: linear-gradient(90deg, var(--primary), #4ecdc4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent
}

.feature-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem
}

.feature-list-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center
}

.feature-item {
	display: flex;
	align-items: center;
	gap: .8rem
}

.cta-cards {
	display: flex;
	gap: 2rem;
	margin-bottom: 4rem
}

.btn,
.card-cta {
	display: inline-block
}

.cta-card {
	background: rgb(43 185 101 / 8%);
	padding: 2rem;
	border-radius: 12px;
	backdrop-filter: blur(5px);
	flex: 1
}

.case-study-card:hover,
.cta-card:hover,
.geo-block:hover,
.resource-card:hover,
.service-card:hover {
	transform: translateY(-5px)
}

.cta-card h3 {
	font-size: 22px;
	margin-bottom: 1rem
}

.card-cta {
	margin-top: 1.5rem;
	background: linear-gradient(90deg, var(--primary), #4ecdc4);
	color: var(--white);
	padding: .75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600
}

.video-thumbnail {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 1rem
}

.video-thumbnail img {
	width: 100%;
	height: 100%;
	display: block
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 20px;
	cursor: pointer
}

.free_demo_title,
.section-title {
	font-size: 2.5rem;
	color: var(--secondary)
}

.play-button:hover {
	transform: translate(-50%, -50%) scale(1.1)
}

.btn-outline:hover,
.btn-primary:hover {
	transform: translateY(-3px)
}

.trust-badges {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 2rem
}

.trust-badges p {
	font-size: 28px;
	color: var(--secondary);
	margin-bottom: 1.5rem;
	font-weight: 500
}

.client-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	margin-bottom: 1.5rem
}

.client-logos img {
	/* filter: grayscale(1) brightness(0); */
	transition: filter .3s;
	width: 130px;
	height: 100%;
}

.client-logos img:hover {
	filter: grayscale(0) brightness(1)
}

.certifications {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem
}

.certifications span {
	font-size: 14px;
	color: var(--secondary)
}

#case-studies,
.services-section {
	padding: 50px 0;
	background: #fbfbfb;
	color: var(--secondary)
}

.section-title {
	margin: 0 auto;
	font-weight: 600
}

.section-subtitle {
	max-width: 700px;
	margin: 0 auto
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.2rem
}

.service-card {
	background: var(--white);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 3px 15px rgba(0, 0, 0, .05);
	display: flex;
	flex-direction: column;
	align-items: center
}

.service-icon-new {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem
}

.service-card:first-child .service-icon-new {
	background-color: rgba(76, 217, 100, .1)
}

#testimonials,
.faq-item.active .faq-question {
	background-color: #f8f9fa
}

.service-card:first-child .service-icon-new i {
	color: #4cd964
}

.service-card:nth-child(2) .service-icon-new {
	background-color: rgba(90, 120, 255, .1)
}

.service-card:nth-child(2) .service-icon-new i {
	color: #5a78ff
}

.service-card:nth-child(3) .service-icon-new {
	background-color: rgba(255, 149, 149, .1)
}

.service-card:nth-child(3) .service-icon-new i {
	color: #ff9595
}

.service-card:nth-child(4) .service-icon-new {
	background-color: rgba(186, 138, 255, .1)
}

.service-card:nth-child(4) .service-icon-new i {
	color: #ba8aff
}

.service-icon-new i {
	font-size: 28px
}

.service-card h3 {
	font-size: 1.17rem;
	margin-bottom: 1rem;
	color: var(--secondary)
}

.service-card p {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.6
}

.learn-more {
	color: var(--primary);
	font-weight: 500;
	transition: color .3s
}

.learn-more:hover {
	color: darken(var(--primary), 10%)
}

.edge-section,
.geo-section {
	padding: 50px 0;
	background: var(--white);
	color: var(--secondary)
}

.edge-content {
	display: flex;
	gap: 0rem
}

.edge-info {
	padding-right: 30px;
}

.edge-info .section-title {
	color: var(--secondary);
	text-align: start;
	margin-bottom: 60px
}

.bar-charts,
.edge-cards {
	display: flex;
	flex-direction: column;
	gap: 2rem
}

.edge-card {
	display: flex;
	gap: 1.5rem
}

.icon-container {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: rgba(43, 185, 101, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 20px;
	flex-shrink: 0
}

.edge-stats,
.expert-card,
.form-selects,
.radial-chart {
	flex-direction: column;
	display: flex
}

.card-text h3 {
	font-size: 22px;
	color: var(--secondary);
	margin: 0
}

.card-text ul {
	padding-left: 1.5rem;
	list-style: none
}

.card-text li {
	margin-bottom: .8rem;
	color: rgba(28, 42, 62, .8)
}

.edge-stats {
	justify-content: center;
	gap: 3rem;
	flex-grow: 1;
	width: 100%;
}

.radial-chart {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: conic-gradient(var(--primary) 0 68%, rgba(43, 185, 101, .2) 68% 100%);
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 auto
}

.radial-chart::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-radius: 50%;
	background: var(--white)
}

.chart-label,
.chart-value {
	position: relative;
	z-index: 1
}

.chart-value {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary)
}

.bar-label,
.chart-label {
	font-size: 16px;
	color: var(--secondary)
}

.bar-chart-item,
.select-group {
	display: flex;
	flex-direction: column;
	gap: .8rem
}

.bar-container {
	height: 20px;
	background: rgba(43, 185, 101, .2);
	border-radius: 12px;
	position: relative;
	overflow: hidden
}

.bar-fill {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--primary);
	border-radius: 12px
}

.bar-value {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	font-weight: 600;
	color: var(--white);
	font-size: 14px
}

.btn,
.case-tag,
.read-more {
	font-weight: 500
}

.case-studies-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px
}

.case-meta,
.footer-nav ul li,
.footer-services ul li {
	margin-bottom: 15px
}

.case-study-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
	transition: transform .3s
}

.case-study-image {
	position: relative;
	height: 240px;
	overflow: hidden
}

.case-study-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s
}

.case-study-card:hover .case-study-image img {
	transform: scale(1.05)
}

.case-tag {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--white);
	color: var(--secondary);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	z-index: 1
}

.case-study-content {
	padding: 25px
}

.case-meta {
	display: flex;
	gap: 20px;
	font-size: 14px;
	color: #666
}

.case-author,
.case-date {
	display: flex;
	align-items: center;
	gap: 5px
}

.case-study-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 15px;
	line-height: 1.4
}

.case-study-content p {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6
}

.read-more {
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: .2s
}

.read-more:hover {
	gap: 12px
}

.read-more i {
	font-size: 14px
}

.case-study-buttons {
	display: flex;
	justify-content: center;
	gap: 20px
}

.btn {
	padding: .75rem 1.75rem;
	border-radius: var(--wd-border-radius);
	cursor: pointer;
	border: 0;
	font-family: Inter, sans-serif;
	font-size: 1rem
}

.btn-outline,
.btn-primary {
	color: var(--white);
	padding: 12px 25px;
	border-radius: 4px;
	display: inline-block;
	font-weight: 500;
	transition: .3s
}

.btn-outline {
	background-color: transparent;
	border: 1px solid var(--white);
	border: 1px solid #ddd;
	color: var(--secondary)
}

.btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary)
}

.approach-header h2,
.process-header h2,
.services-header h2,
.testimonials-header h2 {
	font-size: 36px;
	margin-bottom: 16px;
	color: #1c2a3e;
	font-weight: 600
}

.approach-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px
}

.section-scroll-anim {
	background: #fbfbfb;
	padding: 50px 0
}

.approach-card {
	background-color: #fff;
	border-radius: 8px;
	padding: 32px 24px;
	box-shadow: rgba(0, 0, 0, .1) 0 4px 12px;
	transition: .3s
}

.approach-card:hover {
	box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
	transform: translateY(-5px)
}

.approach-icon {
	width: 64px;
	height: 64px;
	border-radius: 9999px;
	background-color: rgba(43, 185, 101, .2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px
}

.approach-icon i {
	font-size: 24px;
	color: #258412
}

.approach-card h3 {
	margin-bottom: 12px;
	font-size: 20px;
	color: #2c3e50
}

.approach-card p {
	color: #6c757d;
	line-height: 1.6
}

button.tab-btn {
	padding: 14px 40px;
	border-radius: 4px;
	border: 0
}


@media(max-width:1165px) {
	.edge-info {
		width: 70%;
	}

	.edge-stats {
		width: 30%;
	}


}

@media(max-width:1100px) {
	.case-studies-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media(max-width:768px) {

	.approach-cards,
	.case-studies-grid {
		grid-template-columns: 1fr
	}

	.case-study-buttons {
		flex-direction: column;
		align-items: center
	}

	.geo-section {
		padding: 50px 0  0!important
	}

	.geo-block h3 {
		font-size: 20px !important
	}

	.feature-list-bottom {
		justify-content: start
	}

	.edge-content {
		flex-direction: column;
	}

	.edge-info {
		width: 100%;
		padding-right: 0px;
		padding-bottom: 50px;
	}

	.edge-stats {
		width: 100%;
	}
}

@media(max-width:430px) {
	.footer-offices {
		flex-flow: column;
	}

	.footer-menu {
		min-width: auto !important;
	}
}

.faq-question,
.footer-wrapper,
.step-buttons,
.timeline-track {
	justify-content: space-between
}

.geo-blocks {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem
}
 .industry-card {
    margin-bottom: 0px!important;
}
.geo-block {
	background: rgb(43 185 101 / 8%);
	padding: 2rem;
	border-radius: 12px;
	margin-top: 0px
}

.geo-block h3 {
	font-size: 22px;
	margin-bottom: 1rem;
	color: var(--secondary)
}

.geo-block p {
	color: rgba(28, 42, 62, .8);
	margin-bottom: 1.5rem
}

.geo-link {
	color: var(--primary);
	font-weight: 600;
	display: inline-block
}

.geo-link:hover {
	transform: translateX(5px)
}

#process {
	background-color: #fff;
	padding: 50px 0
}

.process-timeline-horizontal {
	overflow-x: auto
}

.client-image,
.demo-steps,
.expert-avatar,
.faq-answer,
.faq-item {
	overflow: hidden
}

.timeline-track {
	position: relative;
	display: flex;
	padding-top: 40px
}

.timeline-progress {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #e9ecef;
	z-index: 1
}

.timeline-item {
	position: relative;
	z-index: 2;
	width: 16%
}

.timeline-marker {
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	background-color: #258412;
	color: #fff;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -18px auto 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.timeline-content h3 {
	margin-bottom: 8px;
	font-size: 18px;
	color: #1c2a3e
}

.timeline-content p {
	font-size: 14px;
	color: #6c757d;
	line-height: 1.5
}

.demo-section {
	padding: 50px 0;
	background: #fff
}

.demo-steps {
	max-width: 800px;
	margin: 0 auto;
	background: rgba(255, 255, 255, .05);
	border-radius: 12px;
	position: relative;
	min-height: 400px
}

.expert-team,
.form-selects,
.resource-cards,
.step-card h3 {
	margin-bottom: 2rem
}

.step-card {
	padding: 3rem;
	display: none;
	animation: .5s fadeIn
}

.step-card.active {
	display: block
}

.step-card h3 {
	font-size: 26px
}

.form-selects {
	gap: 1.5rem
}

.select-group label {
	font-size: 16px
}

.select-group select {
	padding: .8rem;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 8px;
	color: var(--white);
	font-size: 16px
}

.expert-team {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 2rem
}

.expert-card {
	align-items: center;
	gap: 1rem
}

.expert-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%
}

.client-image img,
.expert-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.resource-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem
}

.resource-card {
	background: rgba(255, 255, 255, .1);
	padding: 2rem;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem
}

.resource-card i {
	font-size: 36px;
	color: var(--primary)
}

.step-buttons {
	display: flex
}

.step-next,
.step-prev {
	padding: .8rem 1.5rem;
	border: 0;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer
}

.step-next {
	background: var(--primary);
	color: var(--secondary)
}

.step-prev {
	background: 0;
	border: 1px solid rgba(255, 255, 255, .2);
	color: var(--white)
}

.step-submit {
	border: 0;
	font-weight: 600;
	cursor: pointer
}

.footer-wrapper {
	display: flex;
	gap: 30px;
	margin-bottom: 40px
}

.download-buttons,
.footer-company {
	display: flex;
	flex-direction: column;
	gap: 20px
}

.footer-logo {
	display: inline-block;
	margin-bottom: 10px
}

.footer-logo .logo-text {
	font-weight: 600;
	font-size: 18px;
	color: var(--white)
}

.footer-policy ul {
	display: flex;
	gap: 20px;
	list-style: none
}

.company-address p {
	line-height: 1.6;
	color: #000;
	margin: 0
}

.company-contact {
	display: flex;
	flex-direction: column;
	gap: 20px
}

.contact-item {
	display: flex;
	align-items: center;
	color: var(--white);
	gap: 10px
}

.contact-item i {
	color: var(--primary);
	font-size: 16px
}

.contact-item a,
.footer-nav ul li a,
.footer-services ul li a {
	color: #000;
	text-decoration: none;
	transition: color .2s
}


.footer-menu h4 {
	margin-bottom: 16px;
	font-size: 18px;
}

.company-contact h4 {
	font-size: 18px;
	margin-bottom: 0px;
}

.footer-nav ul,
.footer-services ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.faq-section {
	padding: 50px 0;
	background-color: #ffff
}

.faq-wrapper {
	max-width: 800px;
	margin: 0 auto
}

.faq-item {
	background-color: #fff;
	border-radius: var(--wd-border-radius);
	margin-bottom: 20px;
	box-shadow: var(--wd-box-shadow)
}

.faq-question {
	padding: 20px 30px;
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background-color .3s
}

.faq-question h3 {
	font-size: 18px;
	margin: 0
}

.faq-question i {
	color: var(--wd-primary-color);
	transition: transform .3s
}

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	transition: max-height .3s
}

.faq-answer p {
	padding-bottom: 20px;
	margin: 0;
	font-size: 16px;
	color: #4a5568
}

.services-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px
}

.download-button {
	display: inline-block;
	margin-bottom: 10px
}

.download-button img {
	max-width: 150px;
	height: auto
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	border-top: 1px solid #e5e5e5
}

.footer-company {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 300px;
}

.copyright a {
	color: var(--primary)
}

.footer-policy {
	display: flex !important;
	gap: 15px
}

.social-icons {
	display: flex;
	gap: 12px
}

.social-icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #26851533;
	color: #258412;
	transition: .2s
}

.social-icon:hover {
	background-color: var(--wd-primary-color);
	color: #fff;
	transform: translateY(-3px)
}

#testimonials {
	position: relative;
	padding: 50px 0
}

.testimonials-slider {
	max-width: 700px;
	margin: 0 auto;
	position: relative
}

  
.testimonial-content {
	background-color: #fff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
	position: relative
}

.testimonial-quote {
	font-size: 36px;
	color: rgba(43, 185, 101, .2);
	margin-bottom: 16px
}

.testimonial-content p {
	font-size: 18px;
	line-height: 1.6;
	color: #495057;
	font-style: italic;
	margin-bottom: 24px
}

.client-info {
	display: flex;
	align-items: center;
	gap: 16px
}

.client-image {
	width: 60px;
	height: 60px;
	border-radius: 9999px
}

.client-details h4 {
	margin-bottom: 4px;
	font-size: 18px;
	color: #2c3e50
}

.client-details p {
	margin: 0;
	font-style: normal;
	font-size: 14px;
	color: #6c757d
}

.testimonial-controls {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 24px
}

.testimonial-next,
.testimonial-prev {
	width: 42px;
	height: 42px;
	border-radius: 9999px;
	background-color: #fff;
	border: 1px solid #e9ecef;
	color: #2c3e50;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s
}

.testimonial-next:hover,
.testimonial-prev:hover {
	background-color: #258412;
	color: #fff;
	border-color: #258412
}

.section-subtitle {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #258412;
	margin-bottom: 12px
}

.section-intro,
.section-subtitle-bottom {
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
	color: #6c757d;
	font-size: 18px;
	line-height: 1.6
}

.client-details {
	text-align: start
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@media(max-width:992px) {
	.nav-actions {
		display: none
	}

	.footer-wrapper {
		grid-template-columns: 1fr 1fr
	}

	.footer-company,
	.footer-downloads {
		grid-column: span 2
	}

	.hero-title {
		font-size: 48px
	}

	.case-study-content,
	.edge-content {
		grid-template-columns: 1fr
	}

	.cta-cards {
		flex-direction: column
	}

	.hero-new-text {
		max-width: 100%;
	}

	.title-line {
		display: inline !important;
	}


}

@media(max-width:768px) {
	.carousel-container {

		margin-bottom: 70px;
		overflow: inherit;
	}

	.carousel_team_container .arrow {
		top: auto;
		bottom: -94px;
	}

	.carousel_team_container button.arrow.left {
		left: 50%;
		margin-left: -58px;
	}

	.carousel_team_container button.arrow.right {
		right: 50%;
		margin-right: -58px;
	}

	.footer-bottom,
	.nav-links {
		flex-direction: column;
		text-align: center
	}

	.footer-wrapper {
		display: block !important
	}

	.footer-company,
	.footer-downloads,
	.footer-menu,
	.footer-services {
		grid-column: span 1
	}

	.footer-bottom {
		gap: 20px
	}

	.footer-menu {
		margin-top: 40px
	}

	.footer-menu h4 {
		margin-bottom: 14px
	}

	.ai-footer {
		padding: 30px 0 20px
	}

	.feature-list-bottom {
		margin-bottom: 30px
	}

	.certifications {
		gap: 1rem
	}

	.nav-content {
		flex-direction: row;
		gap: 1.5rem;
		padding: 0 !important
	}

	.ai-nav {
		padding: 20px 0 !important
	}

	.approach-header h2,
	.hero-title,
	.process-header h2,
	.services-header h2,
	.testimonials-header h2 {
		font-size: 28px
	}

	.feature-list {
		flex-direction: column
	}

	.step-card {
		padding: 2rem
	}

	.resource-cards {
		grid-template-columns: 1fr
	}

	.footer-policy ul {
		display: flex;
		gap: 10px !important;
		list-style: none
	}

	.footer-policy li a {
		font-size: 13px;
		padding: 5px;
		font-weight: 500;
		text-decoration: none;
		color: var(--primary)
	}

	.timeline-track {
		min-width: auto;
		display: block
	}

	.timeline-progress {
		display: none
	}

	.timeline-item {
		width: 100%;
		margin-bottom: 50px
	}

	.section-title {
		width: auto !important
	}
}

@media(max-width:576px) {


	.section-title {
		font-size: 1.5rem
	}

	.section-subtitle {
		font-size: 1rem
	}

	.hero-title {
		font-size: 26px
	}

	.card-text h3,
	.hero-features p {
		font-size: 16px
	}

	.hero-section {
		padding: 30px 0 50px
	}

	.cta-cards {
		margin-bottom: 0
	}

	.btn {
		padding: 14px 0;
		width: 100%;
		text-align: center
	}

	.geo-blocks {
		gap: 1.5rem
	}

	.geo-block {
		padding: 1.2rem
	}
}


@media(max-width:480px) {}