:root {
	--primary-color: #2a4365; /* Deep blue */
	--secondary-color: #f6ad55; /* Warm orange */
	--accent-color: #4fd1c5; /* Teal */
	--light-color: #f7fafc;
	--dark-color: #1a202c;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--dark-color);
	line-height: 1.6;
}

.navbar {
	background-color: var(--primary-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
	font-weight: 700;
	color: white;
	font-size: 1.8rem;
}

.nav-link {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	margin: 0 10px;
	transition: color 0.3s;
}

.nav-link:hover {
	color: var(--secondary-color);
}

.hero {
	background: linear-gradient(135deg, var(--primary-color) 0%, #4c51bf 100%);
	color: white;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
	opacity: 0.2;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.btn-primary {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	color: var(--dark-color);
	font-weight: 600;
	padding: 10px 25px;
}

.btn-primary:hover {
	background-color: #e69c3f;
	border-color: #e69c3f;
}

.section-title {
	position: relative;
	margin-bottom: 50px;
	color: var(--primary-color);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--secondary-color);
}

.service-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	margin-bottom: 30px;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	font-size: 3rem;
	color: var(--secondary-color);
	margin-bottom: 20px;
}

.skill-badge {
	background-color: var(--light-color);
	color: var(--dark-color);
	padding: 10px 15px;
	border-radius: 30px;
	margin: 5px;
	display: inline-block;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.skill-badge:hover {
	background-color: var(--secondary-color);
	color: white;
	transform: translateY(-3px);
}

.about-section {
	background-color: var(--light-color);
	padding: 80px 0;
}

.contact-section {
	background-color: white;
	padding: 80px 0;
}

.contact-info {
	background-color: var(--primary-color);
	color: white;
	padding: 30px;
	border-radius: 10px;
	height: 100%;
}

.contact-icon {
	font-size: 2rem;
	color: var(--secondary-color);
	margin-bottom: 15px;
}

footer {
	background-color: var(--dark-color);
	color: white;
	padding: 40px 0 20px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
	display: block;
	margin-bottom: 10px;
}

.footer-links a:hover {
	color: var(--secondary-color);
}

.social-icons a {
	color: white;
	background-color: rgba(255, 255, 255, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s;
}

.social-icons a:hover {
	background-color: var(--secondary-color);
	transform: translateY(-3px);
}