/* Service Page Styles */

.banner-overlay::after {
	background: rgba(0, 0, 0, 0.2);
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
}

/* Trust Indicators Section */
.trust-indicators {
	padding: 100px 0;
	background-color: #f9f9f9;
}

.trust-header {
	text-align: center;
	margin-bottom: 60px;
}

.trust-header h2 {
	font-size: 42px;
	color: #333;
	margin-bottom: 20px;
}

.trust-header .subtitle {
	font-size: 18px;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.trust-item {
	text-align: center;
	padding: 30px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.trust-item:hover {
	transform: translateY(-5px);
}

.trust-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trust-icon img {
	max-width: 100%;
	height: auto;
}

.trust-item h3 {
	color: #0d5f60;
	font-size: 20px;
	margin-bottom: 10px;
}

.trust-item p {
	color: #666;
	font-size: 16px;
	line-height: 1.5;
}

@media (max-width: 992px) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-header h2 {
		font-size: 36px;
	}
}

@media (max-width: 576px) {
	.trust-grid {
		grid-template-columns: 1fr;
	}

	.trust-header h2 {
		font-size: 32px;
	}

	.trust-indicators {
		padding: 60px 0;
	}
}

/* Banner Section */
.service-banner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #808080; /* Matching the gray from reference */
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3); /* Slight dark overlay */
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-banner-content {
	text-align: center;
	color: #ffffff;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.service-banner-content h1 {
	font-size: 64px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 400;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
}

.service-banner-content .subtitle {
	font-size: 32px;
	margin-bottom: 40px;
	font-weight: 400;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards 0.2s;
}

.banner-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards 0.4s;
}

.btn {
	display: inline-block;
	padding: 15px 30px;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	font-weight: 400;
}

.btn-primary {
	background-color: #0d5f60;
	color: #ffffff !important;
}

.btn-primary:hover {
	background-color: #094748;
}

.btn-outline {
	border: 2px solid #ffffff;
	color: #ffffff;
}

.btn-outline:hover {
	background-color: #ffffff;
	color: #0d5f60;
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* About Section */
.service-about {
	padding: 120px 0;
	background-color: #ffffff;
}

.service-about-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
	padding: 30px 0;
}

.service-about-content.right {
	align-items: end;
}

.service-about-content h2 {
	font-size: 64px;
	line-height: 1.1;
	font-weight: 400;
	margin: 0;
	flex: 1;
}
.service-about-content.right h2,
.service-about-content.right .service-about-text {
	text-align: right;
}

.service-about-content .highlight {
	color: #0d5f60;
}

.service-about-text {
	flex: 1;
	text-align: left;
}

.service-about-text p {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 30px;
	color: #333;
	font-weight: 300;
}

.service-about-text li, .service-about-text a {
	font-size: 24px;
	line-height: 1.5;
    color: #333;
	font-weight: 300;
}

.service-about-text ul {
	list-style: circle;
    margin-bottom: 30px;
}

.about-link {
	display: inline-flex;
	align-items: center;
	color: #0d5f60;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.about-link .arrow {
	margin-left: 10px;
	font-size: 24px;
	transition: transform 0.3s ease;
}

.about-link:hover {
	color: #094748;
}

.about-link:hover .arrow {
	transform: translateX(5px);
}

/* Why Choose Section */
.why-choose {
	padding: 120px 0;
	background-color: #f9f9f9;
}

.why-choose-header {
	text-align: center;
	margin-bottom: 80px;
}

.why-choose-header h2 {
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #333;
}

.why-choose-header .subtitle {
	font-size: 24px;
	color: #666;
	font-weight: 300;
}

.why-choose-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.feature-item {
	text-align: center;
	padding: 20px;
}

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

.feature-icon img {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}

.feature-item h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #333;
}

.feature-item p {
	font-size: 18px;
	line-height: 1.6;
	color: #666;
	font-weight: 300;
}

/* Building Process Section */
.building-process {
	padding: 120px 0;
	background-color: #ffffff;
}

.process-header {
	text-align: center;
	margin-bottom: 80px;
}

.process-header h2 {
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #333;
}

.process-header .subtitle {
	font-size: 24px;
	color: #666;
	font-weight: 300;
	max-width: 800px;
	margin: 0 auto;
}

.process-timeline {
	position: relative;
}

.process-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #f0efef;
	transform: translateX(-50%);
}

.step-inner {
	position: absolute;
	width: 100%;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -20px;
}

.process-step {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
	position: relative;
}

.process-step:last-child {
	margin-bottom: 0;
}

.step-content {
	width: calc(50% - 50px);
	text-align: right;
	background-color: #f9f9f9;
	padding: 40px;
}

.process-step:nth-child(even) .step-content {
	order: 2;
	text-align: left;
	padding-right: 0;
	padding-left: 50px;
}

.step-content h3 {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 15px;
	color: #333;
}

.step-content p {
	font-size: 18px;
	line-height: 1.6;
	color: #666;
	font-weight: 300;
}

.process-step .step {
	/* position: absolute;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center; */
}

.step-number {
	width: 50px;
	height: 50px;
	background-color: #0d5f60;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

/* Featured Projects Section */
.featured-projects {
	padding: 120px 0;
	background-color: #f9f9f9;
}

.projects-header {
	text-align: center;
	margin-bottom: 80px;
}

.projects-header h2 {
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #333;
}

.projects-header .subtitle {
	font-size: 24px;
	color: #666;
	font-weight: 300;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.project-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.project-card:hover {
	transform: translateY(-5px);
}

.project-image {
	position: relative;
	padding-bottom: 66.67%; /* 3:2 aspect ratio */
	overflow: hidden;
}

.project-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
	transform: scale(1.05);
}

.project-content {
	padding: 30px;
}

.location {
	display: inline-block;
	font-size: 14px;
	color: #0d5f60;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.project-content h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 15px;
	color: #333;
}

.scope {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
	font-style: italic;
}

.features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.features li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	font-size: 16px;
	color: #666;
}

.features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #0d5f60;
}

.testimonial {
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.testimonial p {
	font-size: 16px;
	font-style: italic;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.6;
}

.client {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

/* FAQ Section */
.faq-section {
	padding: 120px 0;
	background-color: #ffffff;
}

.faq-header {
	text-align: center;
	margin-bottom: 80px;
}

.faq-header h2 {
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #333;
}

.faq-header .subtitle {
	font-size: 24px;
	color: #666;
	font-weight: 300;
}

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

.faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	font-size: 24px;
	font-weight: 400;
	color: #333;
	cursor: pointer;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: #0d5f60;
}

.faq-question .icon {
	font-size: 30px;
	transition: transform 0.3s ease;
	color: #125b5c;
}

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

.faq-item.active .faq-answer {
	height: auto;
	padding-bottom: 20px;
}

.faq-answer p {
	font-size: 18px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 20px;
}

.faq-answer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.faq-answer li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	font-size: 18px;
	color: #666;
}

.faq-answer li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #0d5f60;
}

/* Locations Section */
.locations-section {
	padding: 120px 0;
	background-color: #f9f9f9;
}

.locations-header {
	text-align: center;
	margin-bottom: 60px;
}

.locations-header h2 {
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 20px;
	color: #333;
}

.locations-header .subtitle {
	font-size: 24px;
	color: #666;
	font-weight: 300;
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.location-item {
	text-align: center;
}

.location-link {
	display: inline-block;
	text-decoration: none;
	color: #333;
	font-size: 20px;
	font-weight: 300;
	transition: all 0.3s ease;
	padding: 15px 20px;
	background: #ffffff;
	border-radius: 4px;
	width: 100%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-link:hover {
	color: #0d5f60;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.locations-footer {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
}

.locations-footer p {
	font-size: 18px;
	line-height: 1.6;
	color: #666;
	font-weight: 300;
}

/* CTA Section */
.cta-section {
	padding: 120px 0;
	background-color: #0d5f60;
	color: #ffffff;
	text-align: center;
}

.cta-header {
	margin-bottom: 80px;
}

.cta-header h2 {
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 20px;
}

.cta-header .subtitle {
	font-size: 24px;
	font-weight: 300;
	opacity: 0.9;
}

.cta-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.cta-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 40px 30px;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-cards.one-column {
	grid-template-columns: repeat(1, 1fr);
    max-width: 750px;
    margin: 0 auto;
}
.cta-cards.two-column {
	grid-template-columns: repeat(2, 1fr);
}

.cta-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
}

.cta-card h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 15px;
}

.cta-card p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.btn-outline-light {
	border: 2px solid #ffffff;
	color: #ffffff;
	padding: 12px 30px;
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-outline-light:hover {
	background: #ffffff;
	color: #0d5f60;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
	display: flex;
	align-items: center;
}

.contact-item a,
.contact-item address {
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	font-style: normal;
	transition: opacity 0.3s ease;
}

.contact-item a, .contact-item address {
	display: flex;
	align-items: center;
	gap:10px;
}

.contact-item a:hover {
	opacity: 0.8;
}

/* === Comparison Section === */
.comparison-section {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.comparison-header {
	text-align: center;
	margin-bottom: 60px;
}

.comparison-header h2 {
	font-size: 42px;
	color: #333;
	margin-bottom: 20px;
}

.comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.comparison-column {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.comparison-column h3 {
	color: #0d5f60;
	font-size: 24px;
	margin-bottom: 30px;
	text-align: center;
}

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

.comparison-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
	font-size: 18px;
	color: #555;
}

.comparison-list li::before {
	content: "•";
	color: #0d5f60;
	position: absolute;
	left: 0;
	font-size: 24px;
	line-height: 1;
}

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

	.comparison-header h2 {
		font-size: 32px;
	}

	.comparison-column {
		padding: 30px;
	}

	.comparison-list li {
		font-size: 16px;
	}
}

/* Responsive Styles */
@media (max-width: 1024px) {

	.service-about-content h2 {
		font-size: 48px;
	}

	.service-about-text p {
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.why-choose-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.why-choose-header h2 {
		font-size: 36px;
	}

	.why-choose-header .subtitle {
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.process-header h2 {
		font-size: 36px;
	}

	.process-header .subtitle {
		font-size: 20px;
	}

	.step-content h3 {
		font-size: 24px;
	}

	.step-content p {
		font-size: 16px;
        line-height: 30px !important;
	}
}

@media (max-width: 1024px) {
	.faq-header h2 {
		font-size: 36px;
	}

	.faq-header .subtitle {
		font-size: 20px;
	}

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

	.faq-answer p,
	.faq-answer li {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.cta-header h2 {
		font-size: 36px;
	}

	.cta-header .subtitle {
		font-size: 20px;
	}

	.cta-cards {
		gap: 20px;
	}

	.cta-card h3 {
		font-size: 20px;
	}

	.cta-card p {
		font-size: 16px;
	}

	.contact-info {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.service-banner-content h1 {
		font-size: 42px;
	}
    
    .cta-cards.two-column {
    	    grid-template-columns: repeat(1, 1fr);
    }

	.service-banner-content .subtitle {
		font-size: 24px;
	}

	.banner-cta {
		flex-direction: column;
		gap: 15px;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

	.service-about {
		padding: 60px 0;
	}

	.service-about-content {
		flex-direction: column;
		gap: 30px;
	}

	.service-about-content h2 {
		font-size: 36px;
		text-align: center !important;
	}

	.service-about-content {
		align-items: center !important;
	}
	.service-about-text {
		text-align: center !important;
	}

	.faq-section, .featured-projects, .trust-indicators {
		padding: 70px 0;
	}

	.service-about-text p, .service-about-text li, .service-about-text a {
		font-size: 18px;
        line-height: 30px !important;
	}
    
    .service-about-text li {
    	text-align:left;
    }

	.why-choose {
		padding: 60px 0;
	}

	.why-choose-header {
		margin-bottom: 40px;
	}

	.why-choose-features {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.why-choose-header h2 {
		font-size: 32px;
	}

	.why-choose-header .subtitle {
		font-size: 18px;
        line-height: 30px !important;
	}

	.feature-item h3 {
		font-size: 20px;
	}

	.feature-item p {
		font-size: 16px;
        line-height: 30px !important;
	}

	.projects-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.projects-header h2 {
		font-size: 32px;
	}

	.projects-header .subtitle {
		font-size: 18px;
        line-height: 30px !important;
	}

	.project-content h3 {
		font-size: 20px;
        line-height: 30px !important;
	}

	.features li, .testimonial p {
		font-size: 14px;
        line-height: 30px !important;
	}

	.building-process {
		padding: 60px 0;
	}

	.process-header {
		margin-bottom: 40px;
	}

	.process-step {
		flex-direction: column;
		margin-bottom: 40px;
	}

	.step-content {
		width: 100%;
		text-align: center !important;
		padding: 20px !important;
		order: 2;
		margin: 50px 0;
	}

	.process-step:nth-child(even) .step-content {
		order: 2;
		padding: 0 0 0 60px;
	}

	.process-header h2 {
		font-size: 32px;
	}

	.process-header .subtitle {
		font-size: 18px;
        line-height: 30px !important;
	}

	.locations-section {
		padding: 60px 0;
	}

	.locations-header {
		margin-bottom: 40px;
	}

	.locations-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.locations-header h2 {
		font-size: 32px;
	}

	.locations-header .subtitle {
		font-size: 18px;
        line-height: 30px !important;
	}

	.location-link {
		font-size: 18px;
	}

	.locations-footer p {
		font-size: 16px;
	}

	.cta-section {
		padding: 60px 0;
	}

	.cta-header {
		margin-bottom: 40px;
	}

	.cta-cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-info {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.contact-item {
		justify-content: center;
	}

	.cta-header h2 {
		font-size: 32px;
        
	}

	.cta-header .subtitle {
		font-size: 18px;
        line-height: 30px !important;
	}
    
    .service-page p, .service-page a,
    .faq-header .subtitle,
    .faq-answer p, .faq-answer li,
    .cta-card p,
    .locations-footer p {
    	line-height: 30px !important;	
    }
}


/* 12/09/2025 */

/* Box Section */
.box-section {
	padding: 120px 0;
	background-color: #0d5f60;
	color: #ffffff;
	text-align: center;
}

.box-section .cta-header {
	margin-bottom: 80px;
}

.box-section .cta-header h2 {
	font-size: 48px;
	font-weight: 400;
	margin-bottom: 20px;
}

.box-section .cta-header .subtitle {
	font-size: 24px;
	font-weight: 300;
	opacity: 0.9;
}

.box-section .cta-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
    margin-bottom: 0px;
}

.box-section .cta-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 40px 30px;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.box-section .cta-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
}

.box-section .cta-card h3 {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 15px;
}

.box-section .cta-card p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.box-section .btn-outline-light {
	border: 2px solid #ffffff;
	color: #ffffff;
	padding: 12px 30px;
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
}

.box-section .btn-outline-light:hover {
	background: #ffffff;
	color: #0d5f60;
}

/* Responsive */
@media (max-width: 1024px) {
	.box-section .cta-header h2 {
		font-size: 36px;
	}

	.box-section .cta-header .subtitle {
		font-size: 20px;
	}

	.box-section .cta-cards {
		gap: 20px;
	}

	.box-section .cta-card h3 {
		font-size: 20px;
	}

	.box-section .cta-card p {
		font-size: 16px;
	}

	.box-section .contact-info {
		gap: 30px;
	}
}
@media (max-width: 1024px) {
	.box-section .cta-header h2 {
		font-size: 36px;
	}

	.box-section .cta-header .subtitle {
		font-size: 20px;
	}

	.box-section .cta-cards {
		grid-template-columns: repeat(2, 1fr); 
		gap: 20px;
	}

	.box-section .cta-card h3 {
		font-size: 20px;
	}

	.box-section .cta-card p {
		font-size: 16px;
	}

	.box-section .contact-info {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.box-section {
		padding: 60px 0; 
	}

	.box-section .cta-header h2 {
		font-size: 28px;
	}

	.box-section .cta-header .subtitle {
		font-size: 18px;
	}

	.box-section .cta-cards {
		grid-template-columns: 1fr; 
		gap: 20px;
		margin-bottom: 0px;

	}

	.box-section .cta-card {
		padding: 40px 30px;
	}
    
}