 :root {
	--primary-blue: #2065FB;
	--light-gray: #f8f9fa;
	--dark-text: #212529;
	--light-text: #ffffff;
	--font-main: 'Roboto', sans-serif;
	--font-highlight: 'Montserrat', sans-serif;
}

/*
body {
	font-family: var(--font-main);
	color: var(--dark-text);
	line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-highlight);
	font-weight: 700;
} */

.btn-primary {
	background-color: var(--primary-blue);
	border-color: var(--primary-blue);
	font-family: var(--font-highlight);
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: #1a53d1;
	border-color: #1a53d1;
	transform: translateY(-2px);
}

.section-padding {
	padding: 80px 0;
}

/* Hero Section */
.hero-section {
	background-color: var(--light-gray);
	padding: 120px 0;
	text-align: center;
}
.hero-section h1 {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--dark-text);
	margin-bottom: 1rem;
}
.hero-section .highlight {
	color: var(--primary-blue);
}
.hero-section p {
	font-size: 1.25rem;
	text-align: justify;
	color: #6c757d;
	max-width: 784px;
	margin: 0 auto 1.5rem auto;
}

/* About Section */
.about-section img {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Clients Section */
.clients-section {
	background-color: var(--light-gray);
}
.client-logo {
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}
.client-logo:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* Services Section */
.service-card {
	/* background-color: #fff; */
	background: linear-gradient(-153deg, #fff9e4 0%, #e3f2fd 100%);
	border: 1px solid #e9ecef;
	border-radius: 15px;
	padding: 40px;
	/* text-align: center; */
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-card .icon {
	font-size: 3rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
}
.service-card h3 {
	font-size: 1.75rem;
	margin-bottom: 15px;
	font-weight: 500;
	color: #;
}

/* Conviction Section */
.conviction-item {
	display: flex;
	align-items: flex-start;
}
.conviction-item .icon {
	font-size: 1.5rem;
	color: var(--primary-blue);
	margin-right: 15px;
	margin-top: 5px;
}

/* CTA Section */
.cta-section {
	background-color: var(--primary-blue);
	color: var(--light-text);
	text-align: center;
}
.cta-section h2 {
	font-weight: 800;
}
.cta-section .btn-light {
	font-family: var(--font-highlight);
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 50px;
	transition: all 0.3s ease;
}
.cta-section .btn-light:hover {
	background-color: #f8f9fa;
	color: var(--dark-text);
	transform: translateY(-2px);
}
