:root {
	--primary-color: #1a5276;
	--secondary-color: #3498db;
	--accent-color: #e74c3c;
	--light-bg: #f8f9fa;
	--dark-text: #2c3e50;
	--footer-bg: #2c3e50;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
}

/* Top Contact Bar */
.top-contact-bar {
	background-color: var(--primary-color);
	color: white;
	padding: 8px 0;
	font-size: 14px;
}

.contact-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-info a {
	color: white;
	text-decoration: none;
	margin-right: 20px;
	transition: color 0.3s;
}

.contact-info a:hover {
	color: var(--secondary-color);
}

.contact-info i {
	margin-right: 5px;
}

/* Navigation */
.main-header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar-brand {
	font-weight: bold;
	color: var(--primary-color) !important;
	font-size: 24px;
	display: flex;
	align-items: center;
}

.navbar-brand i {
	margin-right: 10px;
	color: var(--accent-color);
}

.navbar-nav .nav-link {
	color: var(--dark-text) !important;
	font-weight: 500;
	margin: 0 10px;
	position: relative;
	transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
	color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}

/* Improved Dropdown Menu */
.nav-item.dropdown {
	position: relative;
}

.dropdown-menu {
	border: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 0;
	padding: 10px 0;
	margin-top: 0;
	background-color: white;
	min-width: 220px;
	max-height: 400px;
	overflow-y: auto;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
}

.dropdown-item {
	padding: 10px 20px;
	color: var(--dark-text);
	transition: all 0.3s;
	font-weight: 500;
	display: block;
	width: 100%;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.dropdown-item:hover {
	background-color: var(--light-bg);
	color: var(--secondary-color);
}

.dropdown-item:focus {
	outline: 0;
}

/* Fixed hover behavior for dropdown */
.nav-item.dropdown:hover > .dropdown-menu {
	display: block;
}

.navbar-toggler {
	border: none;
}

.navbar-toggler:focus {
	box-shadow: none;
}

/* Slider Section */
.slider-section {
	position: relative;
	overflow: hidden;
}

.carousel-item {
	height: 500px;
	background-position: center;
	background-size: cover;
	position: relative;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26, 82, 118, 0.8), rgba(0, 0, 0, 0.6));
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-content {
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 20px;
}

.carousel-content h1 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: slideInDown 1s ease-out;
}

.carousel-content p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	animation: slideInUp 1s ease-out;
}

.btn-custom {
	background-color: var(--accent-color);
	color: white;
	padding: 14px 35px;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: fadeIn 1.5s ease-out;
	display: inline-block;
	text-decoration: none;
}

.btn-custom:hover {
	background-color: #c0392b;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 5px;
	background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
	background-color: var(--accent-color);
}

/* Service Badges */
.service-badges {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.service-badge {
	background-color: rgba(255, 255, 255, 0.2);
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	backdrop-filter: blur(10px);
	animation: fadeIn 2s ease-out;
}

/* Home Section */
.home-section {
	padding: 80px 0;
	background-color: white;
}

.home-section h2 {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

.home-section p {
	color: var(--dark-text);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 30px;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.feature-box {
	background-color: var(--light-bg);
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	margin-bottom: 30px;
	transition: all 0.3s;
	height: 100%;
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
	color: var(--accent-color);
	font-size: 3rem;
	margin-bottom: 20px;
}

.feature-box h3 {
	color: var(--primary-color);
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.feature-box p {
	color: var(--dark-text);
	line-height: 1.6;
	margin-bottom: 0;
}

/* About Section */
.about-section {
	padding: 80px 0;
	background-color: var(--light-bg);
}

.about-section h2 {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

.about-content {
	margin-bottom: 50px;
}

.about-content p {
	color: var(--dark-text);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

.about-image {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 400px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.about-image:hover img {
	transform: scale(1.05);
}

.stat-box {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	transition: all 0.3s;
	height: 100%;
}

.stat-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-box i {
	color: var(--accent-color);
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.stat-box h3 {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.stat-box p {
	color: var(--dark-text);
	margin: 0;
}

/* City Service Sections */
.city-service-section {
	padding: 80px 0;
	background-color: var(--light-bg);
}

.city-header {
	margin-bottom: 50px;
}

.city-header h2 {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 15px;
}

.city-header p {
	color: var(--dark-text);
	font-size: 1.1rem;
	max-width: 800px;
}

.city-landmark {
	height: 400px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

.city-landmark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.city-landmark:hover img {
	transform: scale(1.05);
}

.service-card {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	transition: all 0.3s;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
	color: var(--accent-color);
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.service-card h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.service-card p {
	color: var(--dark-text);
	margin-bottom: 20px;
	line-height: 1.6;
}

.service-card ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

.service-card ul li {
	margin-bottom: 8px;
	color: var(--dark-text);
}

.btn-service {
	background-color: var(--secondary-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-service:hover {
	background-color: var(--primary-color);
	color: white;
}

/* Work Info Section - 6x6 Layout */
.work-info-section {
	padding: 80px 0;
	background-color: white;
}

.work-info-section h2 {
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 20px;
	font-size: 2.5rem;
	font-weight: bold;
}

.work-info-section p {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
	color: var(--dark-text);
	font-size: 1.1rem;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.process-step {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.process-step-image {
	height: 200px;
	overflow: hidden;
}

.process-step-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.process-step:hover .process-step-image img {
	transform: scale(1.05);
}

.process-step-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.process-step-number {
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 15px;
}

.process-step h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.process-step p {
	text-align: left;
	margin: 0;
	color: var(--dark-text);
	line-height: 1.6;
	margin-bottom: 15px;
}

.process-step .features {
	margin-top: auto;
}

.process-step .features li {
	margin-bottom: 8px;
	list-style-type: none;
	position: relative;
	padding-left: 25px;
	color: var(--dark-text);
}

.process-step .features li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--accent-color);
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
	background-color: var(--light-bg);
}

.contact-section h2 {
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 50px;
	font-size: 2.5rem;
	font-weight: bold;
}

.contact-form {
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.contact-form h3 {
	color: var(--primary-color);
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	color: var(--dark-text);
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
}

.form-control {
	border: 2px solid #e0e0e0;
	border-radius: 5px;
	padding: 12px 15px;
	font-size: 15px;
	transition: all 0.3s;
}

.form-control:focus {
	border-color: var(--secondary-color);
	box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-control::placeholder {
	color: #999;
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.btn-submit {
	background-color: var(--accent-color);
	color: white;
	border: none;
	padding: 14px 40px;
	font-weight: 600;
	border-radius: 50px;
	font-size: 16px;
	transition: all 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-submit:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.contact-info-card {
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.contact-info-card h3 {
	color: var(--primary-color);
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.contact-item i {
	color: var(--accent-color);
	font-size: 20px;
	margin-right: 15px;
	margin-top: 3px;
	width: 25px;
	text-align: center;
}

.contact-item .contact-text {
	flex: 1;
}

.contact-item h4 {
	color: var(--dark-text);
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-item p {
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.contact-item a {
	color: var(--secondary-color);
	text-decoration: none;
	transition: color 0.3s;
}

.contact-item a:hover {
	color: var(--accent-color);
}

.map-container {
	margin-top: 50px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 400px;
	border: none;
}

.office-hours {
	background-color: var(--primary-color);
	color: white;
	padding: 20px;
	border-radius: 10px;
	margin-top: 30px;
}

.office-hours h4 {
	margin-bottom: 15px;
	font-size: 18px;
}

.office-hours p {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
}

.office-hours p span {
	font-weight: 600;
}

/* Footer Styles */
footer {
	background-color: var(--footer-bg);
	color: white;
	padding: 60px 0 20px;
}

.footer-widget h4 {
	color: white;
	font-size: 18px;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-widget h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--accent-color);
}

.footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-widget ul li {
	margin-bottom: 12px;
}

.footer-widget ul li a {
	color: #b8c1c8;
	text-decoration: none;
	transition: color 0.3s, padding-left 0.3s;
	display: inline-block;
}

.footer-widget ul li a:hover {
	color: var(--secondary-color);
	padding-left: 5px;
}

.footer-widget p {
	color: #b8c1c8;
	line-height: 1.6;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.footer-contact-item i {
	color: var(--accent-color);
	margin-right: 10px;
	margin-top: 5px;
}

.footer-social a {
	display: inline-block;
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
	text-align: center;
	line-height: 36px;
	border-radius: 50%;
	margin-right: 8px;
	transition: all 0.3s;
}

.footer-social a:hover {
	background-color: var(--accent-color);
	transform: translateY(-3px);
}

.footer-newsletter .form-control {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	border-radius: 0;
	padding: 12px;
}

.footer-newsletter .form-control::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .form-control:focus {
	background-color: rgba(255, 255, 255, 0.15);
	border-color: var(--accent-color);
	box-shadow: none;
	color: white;
}

.footer-newsletter .btn {
	background-color: var(--accent-color);
	border: none;
	padding: 12px 20px;
	font-weight: 600;
	transition: all 0.3s;
}

.footer-newsletter .btn:hover {
	background-color: #c0392b;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
	color: #b8c1c8;
	font-size: 14px;
}

.footer-bottom a {
	color: var(--secondary-color);
	text-decoration: none;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

/* Animations */
@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.process-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-info {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-info a {
		margin-bottom: 5px;
	}

	.carousel-item {
		height: 400px;
	}

	.carousel-content h1 {
		font-size: 2rem;
	}

	.carousel-content p {
		font-size: 1rem;
	}

	.footer-widget {
		margin-bottom: 30px;
	}

	.service-badges {
		gap: 10px;
	}

	.service-badge {
		font-size: 0.8rem;
		padding: 6px 12px;
	}

	.dropdown-menu {
		position: static !important;
		transform: none !important;
		border: none !important;
		box-shadow: none !important;
		width: 100%;
		margin-top: 0;
	}

	.contact-form, .contact-info-card {
		margin-bottom: 30px;
	}

	.contact-section h2 {
		font-size: 2rem;
	}

	.work-info-section h2 {
		font-size: 2rem;
	}

	.process-step-content {
		padding: 20px;
	}

	.city-header h2 {
		font-size: 2rem;
	}

	.home-section h2, .about-section h2 {
		font-size: 2rem;
	}
}