* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Nunito Sans", sans-serif;
	line-height: 1.6;
	color: #333;
}

.consultation-tab {
	border: unset;
	position: fixed;
	top: 60%;
	left: 42px;
	transform: rotate(-90deg) translateY(-50%);
	transform-origin: left center;
	background-color: rgba(170, 49, 36, 1);
	color: white;
	padding: 14px 28px;
	border-radius: 0 0 20px 20px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	z-index: 999;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease, transform 0.3s ease,
		padding 0.3s ease;
}

.consultation-tab:hover {
	padding: 1rem 2rem;
	transform: rotate(-90deg) translateY(-40%);
}

@media screen and (max-width: 768px) {
	.consultation-tab {
		left: 30px;
		padding: 8px 20px;
		font-size: 14px;
	}
	.consultation-tab:hover {
		padding: 10px 20px;
		transform: rotate(-90deg) translateY(-40%);
	}
}

/* Hero Section */
.hero {
	background-image: url(../images-new/bg-1.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 150px 5rem 10px;
	min-height: 80vh;
	position: relative;
	width: 100%;
	overflow: hidden;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}

.video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
	pointer-events: none;
}

.background-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-content h1 {
	position: relative;
	z-index: 1;
	color: white;
	text-align: center;
	padding-top: 10vh;
	font-size: 60px;
	font-weight: 400;
	/*margin-bottom: 1.5rem;*/
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.3;
	margin-bottom: 30px;
}
.hero-content h1 .highlight {
	color: #535353;
}

.swiper-pagination {
	position: relative !important;
	margin-top: 150px;
}

@media screen and (max-width: 768px) {
	.swiper-pagination {
		margin-top: 100px;
	}
}

.swiper-pagination-bullet {
	background: white !important;
}

.slides {
	position: relative;
}

.slide {
	display: none;
	animation: fade 1s ease-in-out;
}

.slide.active {
	display: block;
}

.highlight {
	font-weight: 700;
	color: #ffffff;
}

.hero-content p {
	color: #ffffff;
	/*opacity: 0.4;*/
	opacity: 1.4;
	font-size: 18px;
	line-height: 1.4;
}

@media screen and (max-width: 480px) {
	.hero-content p {
		font-size: 14px;
	}
}

.cta-btn {
	margin-top: 1.5rem;
	background: linear-gradient(to right, #232323 -28%, #797a7e 100%);
	color: white;
	font-weight: 700;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-size: 16px;
	cursor: pointer;
	border: 0.05rem solid #747578;
}

.cta-btn:hover {
	background: #777;
}

.hero-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #666;
	cursor: pointer;
}

.dot.active {
	background: white;
}

/* Clients Section */
.clients {
	padding: 60px 5rem 50px;
	text-align: center;
	background: white;
}

.clients h2 {
	margin-bottom: 30px;
	font-size: 20px;
	color: #333;
	line-height: 1.3;
}

@media screen and (max-width: 480px) {
	.clients h2 {
		font-size: 16px;
	}
}

.light-header {
	font-weight: 400;
}

.logo-slider {
	overflow: hidden;
	width: 709px;
	margin: 0 auto;
	padding: 0;
	background: #fff;
	position: relative;
}

.logo-track {
	max-height: 62px;
	display: flex;
	width: fit-content;
	animation: scroll-left 40s linear infinite;
	gap: 3rem;
}

@media screen and (max-width: 480px) {
	.logo-track {
		max-height: 30px;
		gap: 1.5rem;
	}
}

.logo-row {
	display: flex;
	align-items: center;
	gap: 30px;
}

@media screen and (max-width: 480px) {
	.logo-row {
		gap: 15px;
	}
}

.logo-row img {
	max-height: 60px;
	max-width: 113px;
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
	filter: grayscale(100%) brightness(0.7);
	transition: filter 0.5s ease;
}

@media screen and (max-width: 480px) {
	.logo-row img {
		max-height: 30px;
		max-width: 60px;
	}
}

.logo-row hr {
	height: 40px;
	width: 1px;
	background-color: #ccc;
	border: none;
}

@media screen and (max-width: 480px) {
	.logo-row hr {
		height: 20px;
	}
}

.logo-row img:hover {
	filter: none;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* About Section */
.products,
.services {
	padding: 100px 5rem;
	text-align: center;
	background: #f8f8f8;
	color: #000;
}

@media screen and (max-width: 768px) {
	.products,
	.services {
		padding: 60px 30px;
	}
}

@media screen and (max-width: 480px) {
	.products,
	.services {
		padding: 60px 20px;
	}
}

.about {
	padding: 50px 5rem 100px;
	background: #ffffff;
	text-align: center;
	color: #000;
}

@media screen and (max-width: 768px) {
	.about {
		padding: 30px 30px 60px;
	}
}
@media screen and (max-width: 480px) {
	.about {
		padding: 30px 20px 60px;
	}
}

.about h2,
.products h2,
.services h2,
.expertise h2,
.blog-article h2,
.key-insights h2,
.testimonials h2,
.faq h2 {
	font-size: 40px;
	line-height: 1.2;
	margin-bottom: 26px;
	color: #000;
}

@media screen and (max-width: 768px) {
	.about h2,
	.products h2,
	.services h2,
	.expertise h2,
	.blog-article h2,
	.key-insights h2,
	.testimonials h2,
	.faq h2 {
		font-size: 30px;
		margin-bottom: 18px;
	}
}

.about p,
.products p,
.services p {
	max-width: 925px;
	margin: 0 auto 30px;
	font-size: 18px;
	line-height: 1.6;
	color: #1b1b1b;
	font-weight: 400;
}

@media screen and (max-width: 480px) {
	.about p,
	.products p,
	.services p {
		font-size: 14px;
	}
}
.services p {
	margin: 0 auto 40px;
}

.products p {
	margin: 0 auto 40px;
	max-width: 821px;
}

.services p {
	max-width: 1071px;
	font-weight: 400;
}

.know-more-btn,
.learn-more-btn,
.read-blogs-btn {
	background: linear-gradient(to right, #232323 -28%, #797a7e 100%);
	color: white;
	border: none;
	font-weight: 700;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-size: 16px;
	cursor: pointer;
	border: 1px solid #737373;
	display: inline-block;
}

.know-more-btn:hover,
.learn-more-btn:hover,
.read-blogs-btn:hover {
	background: #444;
}

/* Products Section */
.products {
	background: #f9f7f4;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	max-width: 630px;
	margin: 0 auto 40px;
}

@media screen and (max-width: 350px) {
	.product-grid {
		grid-template-columns: 1fr;
	}
}

.product-card {
	width: 100%;
	max-width: 300px;
	height: 350px;
	background: #ffffff;
	padding-bottom: 2rem;
	text-align: center;
	border-radius: 15px;
	transition: transform 0.3s, box-shadow 0.3s;
	margin: 0 auto;
}

@media screen and (max-width: 350px) {
	.product-card {
		max-width: 100%;
		height: auto;
	}
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-card .image-wrapper {
	background: #f3e8d7;
	border-radius: 15px;
}

.product-card img {
	width: 100%;
	vertical-align: bottom;
}

.product-card h3 {
	margin: 1rem;
	color: #000;
	font-weight: 700;
	font-size: 18px;
}

.view-details-btn {
	background: transparent;
	border: 1px solid #adadad;
	color: #000;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	cursor: pointer;
	font-weight: 800;
	transition: all 0.3s;
}

.view-details-btn:hover {
	background: #333;
	color: white;
}

.services {
	background: #ffffff;
}
.services-list {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 10px;
	margin-bottom: 40px;
}

.service-item {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 2rem;
	padding: 46px 24px 45px;
	border-radius: 1rem;
	line-height: 23px;
	font-size: 16px;
	transition: all 0.5s ease;
}

.service-item:nth-child(odd) {
	background-color: #ececec;
}

.service-item:nth-child(even) {
	background-color: #f4eee7;
}

.service-item:hover {
	background-color: #ffffff;
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.service-number {
	font-weight: 500;
	min-width: 100px;
	font-size: 16px;
}

.service-title {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 360px;
}

.service-title h3 {
	font-size: 18px;
	font-weight: 700;
}

.service-content p {
	margin: 0;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
}

@media (max-width: 768px) {
	.cta-left h2 {
		text-align: center;
		font-size: 30px !important;
	}
	.about h2,
	.products h2,
	.services h2,
	.expertise h2,
	.blog-article h2,
	.key-insights h2,
	.testimonials h2,
	.faq h2 {
		font-size: 30px;
	}
	.service-item {
		grid-template-columns: auto 1fr;
		padding: 40px 30px;
		gap: 1rem;
	}
	.service-item .service-content {
		display: none;
	}
	.service-item .service-number {
		min-width: auto;
	}
}

/* Expertise Section */
.expertise {
	padding: 100px 5rem;
	text-align: center;
	background: rgba(246, 246, 246, 0.7);
}
@media screen and (max-width: 768px) {
	.expertise {
		padding: 60px 30px;
	}
}
@media screen and (max-width: 480px) {
	.expertise {
		padding: 60px 20px;
	}
}

.expertise p,
.blog-article p {
	max-width: 1200px;
	margin: 0 auto 30px;
	font-size: 18px;
	color: #323232;
	line-height: 1.5;
	font-weight: 400;
}

.expertise p,
.blog-article p {
	max-width: 1069px;
	font-size: 16px;
	line-height: 26px;
}

@media screen and (max-width: 480px) {
	.expertise p,
	.blog-article p {
		font-size: 14px;
	}
}

.continue-reading-btn {
	background: transparent;
	border: 1px solid #767676;
	color: #000;
	padding: 1rem 2rem;
	border-radius: 25px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	margin-top: 10px;
}

.continue-reading-btn .down-arrow,
.continue-reading-btn .up-arrow {
	padding-left: 1rem;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
.extra-content-scroll::-webkit-scrollbar {
	width: 4px; /* thinner scrollbar */
}

.extra-content-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.extra-content-scroll::-webkit-scrollbar-thumb {
	background-color: #333;
	border-radius: 8px;
}

/* For Firefox */
.extra-content-scroll {
	scrollbar-width: thin;
	scrollbar-color: #333 transparent;
}

.hidden {
	display: none;
}

/* Framework Section */
.framework {
	padding: 100px 5rem;
	background: #202020;
	color: white;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.framework {
		padding: 60px 30px;
	}
}
@media screen and (max-width: 480px) {
	.framework {
		padding: 60px 20px;
	}
}

.framework-header p {
	color: #a4a4a4;
	font-size: 18px;
	opacity: 40%;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.framework-header .top-title {
	color: #a4a4a4;
	font-size: 18px;
	opacity: 100%;
	font-weight: 700;
	margin-bottom: 30px;
}

.framework-header .light-header {
	color: #a4a4a4;
}

.framework-header h2 {
	font-size: 40px;
	line-height: 40px;
	margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
	.framework-header h2 {
		font-size: 30px;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 480px) {
	.framework-header p {
		font-size: 14px;
	}
}
.framework-header p:last-child {
	max-width: 800px;
	margin: 0 auto 40px;
	color: #ccc;
}

.framework-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.framework-grid {
		grid-template-columns: 1fr;
	}
}

.framework-card {
	background: #272727;
	padding: 2rem;
	border-radius: 20px;
	text-align: left;
	border: 1px solid transparent;
	transition: all 0.2s ease;
}
@media screen and (max-width: 480px) {
	.framework-card {
		padding: 22px 16px;
	}
}
.framework-card:hover {
	background: linear-gradient(
		to top right,
		rgba(255, 255, 255, 0.09),
		rgba(255, 255, 255, 0)
	);
	border: 1px solid rgba(221, 221, 221, 0.3);
}

.framework-card h3 {
	color: white;
	font-size: 18px;
}

.framework-card p {
	color: #767676;
	line-height: 1.4;
	font-size: 16px;
	font-weight: 400;
}

@media screen and (max-width: 480px) {
	.framework-card p {
		font-size: 14px;
	}
}

.framework-icon {
	display: flex;
	align-items: center;
	gap: 27px;
	margin-bottom: 30px;
}

.framework-icon img {
	width: 82px;
	height: 82px;
	object-fit: contain;
}

@media screen and (max-width: 480px) {
	.framework-icon {
		gap: 16px;
		margin-bottom: 18px;
	}
	.framework-icon img {
		width: 50px;
		height: 50px;
	}
	.framework-icon h3 {
		font-size: 14px;
	}
}

/* Floating Contact Buttons */
.floating-contacts {
	position: fixed;
	right: 2rem;
	bottom: 20%;
	transform: translateY(20%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 1000;
}

.floating-btn {
	background: transparent;
	border: none;
	cursor: pointer;
}

.floating-btn:hover svg {
	background: #555;
	border-radius: 50%;
}

.floating-toggle-content {
	opacity: 0;
	transform: translateY(10px);
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.5s ease, transform 0.5s ease;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: absolute;
	bottom: 70px;
}

.floating-toggle-content.open {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Blog Article Section */
.extra-content {
	padding: 100px 5rem;
	text-align: center;
}

.extra-content {
	padding: 60px 50px 60px 50px;
}

.extra-content h2 {
	font-size: 30px;
}

@media screen and (max-width: 768px) {
	.extra-content {
		padding: 40px 30px;
	}
	.extra-content h2 {
		font-size: 24px;
	}
}
@media screen and (max-width: 480px) {
	.extra-content {
		padding: 30px 20px;
	}
	.extra-content h2 {
		font-size: 20px;
	}
}

.blog-article {
	background: #fcfbf9;
	padding: 100px 5rem 100px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.blog-article {
		padding: 60px 30px;
	}
}
@media screen and (max-width: 480px) {
	.blog-article {
		padding: 60px 20px;
	}
}

.extra-content h2 {
	max-width: 900px;
	margin: 0 auto 28px;
}

.extra-content {
	background: #f5f5f5;
	border-radius: 20px;
	max-width: 1200px;
	margin: 10px auto;
	border: 1px solid #7373734a;
	scrollbar-width: thin;
	scrollbar-color: rgba(35, 35, 35, 1) transparent;
}

.extra-content-scroll {
	overflow-y: auto;
	max-height: 300px;
	padding-right: 30px;
}

@media screen and (max-width: 768px) {
	.extra-content-scroll {
		padding-right: 20px;
	}
}

@media screen and (max-width: 480px) {
	.extra-content-scroll {
		padding-right: 10px;
	}
}

.extra-content::-webkit-scrollbar {
	width: 4px;
}

.extra-content p {
	padding: 0 28px;
}

@media screen and (max-width: 768px) {
	.extra-content p {
		padding: 0 20px;
	}
}
@media screen and (max-width: 480px) {
	.extra-content p {
		padding: 0 10px;
	}
}

.extra-content-outer-box:first-of-type {
	margin-bottom: 40px;
}

/* Key Insights Section */
.key-insights {
	padding: 100px 5rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.key-insights {
		padding: 60px 30px 60px;
	}
}
@media screen and (max-width: 480px) {
	.key-insights {
		padding: 60px 20px 60px;
	}
}

.key-insights p {
	font-size: 18px;
	color: #1b1b1b;
	margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
	.key-insights p {
		font-size: 14px;
	}
}

.insights-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 60px;
}
.insights-grid a {
	text-decoration: unset;
}
a {
	text-decoration: unset;
}
.insight-card {
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.insight-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.insight-content {
	padding: 20px;
	text-align: left;
}

.insight-content h3 {
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	margin-bottom: 20px;
	line-height: 1.4;
}

@media screen and (max-width: 480px) {
	.insight-content {
		padding: 18px;
	}
	.insight-content h3 {
		font-size: 14px;
		margin-bottom: 18px;
	}
}

.read-more-btn {
	background: transparent;
	border: 1px solid #767676;
	color: #333;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 600;
}

.read-more-btn:hover {
	background: #333;
	color: white;
}

/* Customer Testimonials Section */
.testimonials {
	/*padding: 100px 5rem;*/
		padding: 100px 20rem;
	background: #f8f5f1;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.testimonials {
		padding: 60px 30px 60px;
	}
}
@media screen and (max-width: 480px) {
	.testimonials {
		padding: 60px 20px 60px;
	}
}

.testimonials h2 {
	margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
	.testimonials h2 {
		margin-bottom: 30px;
	}
}

.swiper {
	padding-bottom: 40px;
}

.swiper-slide {
	height: auto;
	display: flex;
}

.testimonials-swiper .swiper-pagination {
	margin: 0;
	padding-top: 20px;
}

.testimonials-swiper .swiper-pagination-bullet {
	background: rgba(0, 0, 0, 1) !important;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 20px;
	margin-bottom: 2rem;
}

.testimonial-card {
	background: #fdfcfb;
	padding: 28px 5px 28px 28px;
	border-radius: 20px;
	text-align: left;
	transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
	background: #ffffff;
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
	padding-right: 28px;
	gap: 20px;
}

.company-logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
	border-radius: 8px;
}

.customer-info h4 {
	color: #333;
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 16px;
}

.customer-info p {
	color: #666;
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 0;
}

@media screen and (max-width: 480px) {
	.customer-info h4 {
		font-size: 15px;
		margin-bottom: 12px;
	}
	.customer-info p {
		font-size: 14px;
	}
}

.testimonial-text {
	color: #555;
	line-height: 1.6;
	font-size: 16px;
	max-height: 232px;
	overflow-y: auto;
	padding-right: 28px;
}

@media screen and (max-width: 480px) {
	.testimonial-text p {
		font-size: 14px;
	}
}

.testimonial-text {
	max-height: 232px;
	overflow-y: auto;
	padding-right: 20px;

	/* Firefox */
	scrollbar-width: thin;
	scrollbar-color: #00000099 transparent;
}

/* Chrome, Edge, Safari */
.testimonial-text::-webkit-scrollbar {
	width: 3px; /* You can reduce to 4px if needed */
}

.testimonial-text::-webkit-scrollbar-track {
	background: transparent;
}

.testimonial-text::-webkit-scrollbar-thumb {
	background-color: #00000099; /* Black scrollbar */
	border-radius: 10px;
}

/* FAQ Section */
.faq {
	padding: 100px 5rem;
	background: #ffffff;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.faq {
		padding: 60px 30px 60px;
	}
}
@media screen and (max-width: 480px) {
	.faq {
		padding: 60px 20px 60px;
	}
}

.faq h2 {
	margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
	.faq h2 {
		margin-bottom: 30px;
	}
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #f8f8f8;
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	cursor: pointer;
	background: #f8f8f8;
	transition: background 0.3s;
	text-align: left;
}

@media screen and (max-width: 480px) {
	.faq-question {
		padding: 30px 15px;
	}
}

.faq-question:hover {
	background: #f8f8f8;
}

.faq-question span:first-child {
	font-size: 18px;
	line-height: 1.3;
	color: #333;
	font-weight: 500;
}

@media screen and (max-width: 480px) {
	.faq-question span:first-child {
		font-size: 14px;
	}
}

.faq-toggle {
	font-size: 24px;
	line-height: 1;
	color: #000000;
	font-weight: 500;
	transition: transform 0.3s;
}
@media screen and (max-width: 480px) {
	.faq-toggle {
		font-size: 15px;
	}
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
	height: 0;
}

.faq-item.active .faq-answer {
	padding: 0 40px 25px;
	height: 100%;
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 480px) {
	.faq-item.active .faq-answer {
		padding: 0 25px 15px;
	}
}

.faq-answer p {
	color: #666;
	line-height: 1.6;
	text-align: left;
}

@media screen and (max-width: 480px) {
	.faq-answer p {
		font-size: 14px;
	}
}

.bottom-wrapper {
	position: relative;
}

/* CTA Section */

.cta-section {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background-image: url(../images-new/bg-2.png);
	background-size: cover;
	background-position: center;
	color: white;
	position: relative;
	z-index: 2;
	border-radius: 20px;
	margin-top: 150px;
	transform: translateY(-50%);
}

@media screen and (max-width: 1180px) {
	.cta-section {
		margin-top: 100px;
		transform: translateY(-100px);
		border-radius: 10px;
	}
}

.cta-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
	max-height: 200px;
}

@media screen and (max-width: 1180px) {
	.cta-container {
		flex-direction: column;
		padding: 60px 20px;
		max-height: none;
		text-align: center;
	}
}

.cta-left {
	flex: 1;
	max-width: 412px;
}

.cta-left h2 {
	font-size: 38px;
	line-height: 1.4;
}

@media screen and (max-width: 1180px) {
	.cta-left h2 {
		font-size: 30px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 480px) {
	.cta-left h2 {
		font-size: 30px;
	}
}

.cta-left .faded {
	opacity: 1;
	font-weight: 400;
}

.cta-left .bold {
	display: block;
	font-weight: 700;
	font-size: 30px;
}

.cta-center {
	flex: 0 0 auto;
	position: relative;
	margin-top: -90px;
	z-index: 10;
}

@media screen and (max-width: 1180px) {
	.cta-center {
		margin-top: 0;
		order: 2;
		margin-bottom: -66px;
	}
}

.cta-image {
	height: 300px;
	object-fit: contain;
}

.cta-right {
	flex: 1;
	text-align: right;
	font-size: 16px;
	max-width: 342px;
}

.cta-description {
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.5;
	color: #ebebeb;
}

@media screen and (max-width: 1180px) {
	.cta-description {
		font-size: 16px;
		text-align: center;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 480px) {
	.cta-description {
		font-size: 14px;
	}
}

.cta-phone {
	align-items: center;
	justify-content: end;
	font-size: 18px;
	display: flex;
	line-height: 1.4;
	font-weight: 700;
	color: #fff;
	gap: 3.1px;
}

.cta-phone svg {
	width: 25px;
	height: 25px;
}

@media screen and (max-width: 1180px) {
	.cta-phone {
		margin-bottom: 20px;
		justify-content: center;
	}
}
@media screen and (max-width: 480px) {
	.cta-phone svg {
		width: 20px;
		height: 20px;
		margin-top: 3px;
	}
	.cta-phone a {
		font-size: 14px;
	}
}

.cta-phone > span {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

@media screen and (max-width: 1180px) {
	.cta-phone {
		align-items: flex-start;
	}
	.cta-phone > span {
		flex-wrap: wrap;
        flex-direction: column;
	}
}

.cta-phone .number {
	display: inline-block;
	margin-right: 10px;
	white-space: nowrap;
	word-break: keep-all;
}

.cta-phone .number:last-child {
	margin-right: 0;
}

/* footer styls */
footer {
	position: relative;
}

@media (max-width: 999px) {
	.logo-slider {
		width: 100%;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	/* Note: Header responsive styles moved to components/header.css */

	.hero {
		min-height: auto;
		border-radius: 0 0px 20px 20px;
		padding: 50px 1rem 20px;
	}

	.hero-content h1 {
		font-size: 40px;
		padding-top: 15vh;
		line-height: 1.3;
		margin-bottom: 20px;
	}

	.client-logos {
		gap: 1.5rem;
	}

	.clients {
		padding: 40px 1rem 30px;
	}

	.clients h2 {
		margin-bottom: 20px;
	}

	.logo-slider {
		width: 100%;
	}

	.service-title {
		min-width: 240px;
	}

	.service-item {
		text-align: left;
	}

	.floating-contacts {
		right: 1rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.container {
		padding: 0 2rem;
	}
}

.calendar-container {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 999;
}
.modal-content {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	width: 500px;
}
.hidden {
	display: none;
}
.step {
	margin-top: 1rem;
}
#time-slots button {
	margin: 4px;
}

.hero-content h2 {
	position: relative !important;
	z-index: 1;
	color: white;
	text-align: center;
	padding-top: 10vh;
	font-size: 60px !important;
	font-weight: 400;
	/*margin-bottom: 1.5rem;*/
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.2;
	margin-bottom: 30px;
}
.hero-content h2 .highlight {
	color: #535353;
}

@media (max-width: 768px) {
	.hero-content h2 {
		font-size: 40px !important;
		padding-top: 15vh;
		margin-bottom: 20px;
	}
}

/***hajna style for consultation form**/

.info-form {
	padding: 20px 0;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.form-group {
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-weight: bold;
	margin-bottom: 5px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	padding: 10px 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.confirm-btn {
	background: #737373 !important;
	text-align: center !important;
	border-radius: 56px !important;
	padding: 17px 33px 18px !important;
	font-size: 16px !important;
	margin: 0 auto !important;
}

.sbmtbtn p {
	margin: 0 auto;
}

/* General submenu styling */
.sub-menu {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	width: 250px;
}

/* Heading inside dropdown */
.sub-menu .dropdown-heading {
	font-weight: bold;
	font-size: 16px;
	color: #000;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
	pointer-events: none;
}

/* Individual submenu items */
.sub-menu li {
	list-style: none;
	padding: 8px 0;
	font-weight: 500;
}

/* Remove anchor styling */
.sub-menu li a {
	text-decoration: none;
	color: #333;
	transition: all 0.2s ease;
}

.sub-menu li a:hover {
	color: #1e1e1e;
	font-weight: bold;
}

.sub-menu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-item-has-children:hover > .sub-menu {
	display: block;
}

.sub-menu {
	display: none;
	position: absolute;
	z-index: 1000;
}

ul li ul li:before {
	background: none !important;
}
