body {
	background: #f8f8f8;
	color: #606060;
	font-family: 'Proxima', sans-serif;
	font-size: 16px;
	font-weight: 400;
	position: relative;
}
html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-align: center;
	vertical-align: middle;
}
@font-face {
	font-family: 'Proxima';
	src: url(../fonts/ProximaNova-Regular.otf);
}
@font-face {
	font-family: 'Proxima Bold';
	src: url(../fonts/ProximaNova-Bold.otf);
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Proxima Bold";
	font-weight: bold;
}
/* logo-text styling */
.logo-text {
	font-family: "Proxima Bold";
	font-size: 28px;
	font-weight: bold;
	color: #ffffff;
	line-height: 40px;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #eb5424 0%, #d43f1a 100%);
	padding: 8px 16px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(235, 84, 36, 0.3);
	transition: all 0.3s ease-in-out;
}
.logo-text i {
	font-size: 24px;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}
.navbar-default .navbar-brand:hover .logo-text {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(235, 84, 36, 0.4);
}
.navbar-default .navbar-brand:hover .logo-text i {
	transform: scale(1.1) rotate(-5deg);
}
p {
	letter-spacing: 1px;
	line-height: 28px;
}
/* Hero section enhancements */
.hero-title {
	line-height: 1.1;
	margin: 15px 0;
	font-size: 60px;
}
.hero-subtitle {
	line-height: 1.1;
	margin: 15px 0 30px 0;
	font-size: 48px;
}
.hero-tagline {
	font-size: 18px;
	margin-bottom: 15px;
}
.hero-description {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.hero-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}
.hero-feature-item {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	white-space: nowrap;
}
/* Section heading styling */
.section-heading {
	line-height: 1.2;
	margin: 15px 0;
	font-size: 48px;
}
hr {
	border-color: #e0e0e0;
	margin: 0 auto 20px auto;
	width: 100px !important;
}
h1 {
	font-size: 60px;
	line-height: 1.2;
	margin: 15px 0;
}
h2 {
	font-size: 48px;
	line-height: 1.2;
	margin: 15px 0;
}
h3 {
	font-size: 30px;
	line-height: 1.2;
	margin: 12px 0;
}
h4 {
	font-size: 24px;
	line-height: 1.2;
	margin: 10px 0;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
.title {
	padding-bottom: 40px;
}
.title h2 {
	color: #202020;
	line-height: 1.2;
	padding-bottom: 30px;
}
.title p {
	padding-top: 14px;
	padding-bottom: 30px;
}
.parallax-section {
	background-attachment: fixed !important;
	background-size: cover !important;
}
/* preloader section */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row nowrap;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: none repeat scroll 0 0 #fff;
	background: none repeat scroll 0 0 #f9f9f9;
}
.sk-spinner-rotating-plane.sk-spinner {
	width: 40px;
	height: 40px;
	background-color: #eb5424;
	border-radius: 50%;
	-webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
	animation: sk-rotatePlane 1.2s infinite ease-in-out;
}
@keyframes sk-rotatePlane {
	0% {
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	}
	50% {
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	}
	100% {
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}
/* home section */
#home {
	background: url('../images/home-bg.jpg') center/cover no-repeat fixed;
	color: #ffffff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
}
#home .container {
	position: relative;
	z-index: 2;
}
#home h2 {
	letter-spacing: 2px;
}
#home .btn {
	background: #eb5424;
	border-radius: 4px;
	border: none;
	color: #ffffff;
	font-size: 16px;
	padding: 20px 40px;
	margin-top: 60px;
}
#home .btn:hover {
	background: #fff;
	color: #eb5424;
	transition: all 0.4s ease-in-out;
}
/* navigation section */
.navbar-default {
	background: #fff;
	border: none;
	box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.04);
	margin: 0 !important;
}
.navbar-default .navbar-brand {
	font-size: auto;
	font-weight: normal;
	margin: 0;
	line-height: 40px !important;
	padding: 8px 15px;
}
.navbar-default .navbar-nav li a {
	color: #606060;
	font-weight: bold;
	padding-right: 20px;
	padding-left: 20px;
	line-height: 40px;
}
.navbar-default .navbar-nav li a:hover {
	color: #eb5424;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
	color: #606060;
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: #eb5424;
	background-color: transparent;
}
.navbar-default .navbar-toggle {
	border: none;
	padding-top: 12px;
}
.navbar-default .navbar-toggle .icon-bar {
	background: #eb5424;
	border-color: transparent;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: transparent;
}
/* intro section */
#intro {
	padding-top: 180px;
	padding-bottom: 140px;
}
#intro h4 {
	padding-bottom: 16px;
}
/* About section image */
.about-section-image {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	margin: 30px 0;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	display: block;
}
/* work section - Modern Service Cards */
#work {
	background-color: #ffffff;
}
#work .container {
	width: 100%;
	padding: 0;
	margin: 0;
}
#work .title {
	padding: 100px 60px 60px 60px;
}
/* Services Left Content with Benefits */
.services-left-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.services-benefits {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin: 20px 0;
}
.benefit-item {
	text-align: left;
	padding: 20px;
	background: rgba(235, 84, 36, 0.05);
	border-left: 4px solid #eb5424;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}
.benefit-item:hover {
	background: rgba(235, 84, 36, 0.1);
	transform: translateX(8px);
}
.benefit-item i {
	display: block;
	margin-bottom: 12px;
}
.benefit-item h4 {
	color: #202020;
	margin-bottom: 10px;
	font-size: 18px;
}
.benefit-item p {
	font-size: 14px;
	line-height: 1.6;
	color: #606060;
	margin: 0;
}
/* Services content with padding */
.services-content {
	padding-left: 40px;
	padding-right: 40px;
}
/* Modern Service Cards */
.service-card {
	border-radius: 12px;
	padding: 40px 20px;
	margin-bottom: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.4s ease-in-out;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.service-card.bg-black {
	background: linear-gradient(135deg, #303030 0%, #1a1a1a 100%);
	color: #ffffff;
}
.service-card.bg-red {
	background: linear-gradient(135deg, #eb5424 0%, #d43f1a 100%);
	color: #ffffff;
}
.service-card i {
	font-size: 50px;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
	color: inherit;
}
.service-card:hover i {
	transform: scale(1.15) rotate(5deg);
}
.service-card h3 {
	color: inherit;
	margin: 15px 0;
	font-size: 24px;
}
.service-card p {
	font-size: 15px;
	line-height: 24px;
	margin: 0;
	color: inherit;
	opacity: 0.95;
}
/* team section - Service Areas */
#team {
	background: url('../images/team-bg.jpg') center/cover no-repeat fixed;
	color: #ffffff;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
}
#team::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
	z-index: 1;
}
#team .container {
	position: relative;
	z-index: 2;
}
#team h2 {
	color: #ffffff;
}
/* Service Areas Grid */
.service-areas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
	padding: 40px;
	background: #ffffff;
	border-radius: 12px;
	margin-top: 30px;
}
.area-badge {
	background: linear-gradient(135deg, #eb5424 0%, #d43f1a 100%);
	color: #ffffff;
	padding: 15px 20px;
	border-radius: 8px;
	text-align: center;
	font-weight: bold;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 10px rgba(235, 84, 36, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
}
.area-badge:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(235, 84, 36, 0.3);
	background: linear-gradient(135deg, #d43f1a 0%, #eb5424 100%);
}
/* portfolio section - FAQ */
#portfolio {
	padding-top: 100px;
	padding-bottom: 100px;
}
/* FAQ Accordion Styles */
.faq-accordion {
	padding: 40px;
	background: #ffffff;
	border-radius: 12px;
	margin-top: 30px;
}
.accordion-item {
	margin-bottom: 20px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
.accordion-item:hover {
	border-color: #eb5424;
	box-shadow: 0 4px 15px rgba(235, 84, 36, 0.1);
}
.accordion-header {
	width: 100%;
	padding: 20px;
	background: #f9f9f9;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s ease-in-out;
	font-weight: bold;
	color: #202020;
}
.accordion-header:hover {
	background: #f0f0f0;
}
.accordion-header.collapsed {
	color: #606060;
}
.plus-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: #eb5424;
	color: #ffffff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s ease-in-out;
	min-width: 30px;
}
.accordion-header[aria-expanded="true"] .plus-icon {
	transform: rotate(45deg);
}
.accordion-header[aria-expanded="false"] .plus-icon {
	transform: rotate(0deg);
}
.faq-question {
	flex: 1;
}
.accordion-body {
	padding: 0;
	overflow: hidden;
}
.accordion-body.collapse:not(.show) {
	display: none;
}
.accordion-body.show {
	display: block;
}
.accordion-body p {
	padding: 20px;
	margin: 0;
	color: #606060;
	font-size: 15px;
	line-height: 26px;
	background: #fff;
}
/* Contact Section Enhanced */
#contact {
	background: url('../images/contact-bg.jpg') center/cover no-repeat fixed;
	color: #ffffff;
	padding-top: 100px;
	padding-bottom: 80px;
	position: relative;
	overflow: hidden;
}
#contact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
	z-index: 1;
}
#contact .container {
	position: relative;
	z-index: 2;
}
#contact .title {
	margin-bottom: 50px;
}
#contact h2 {
	color: #ffffff;
}
.contact-wrapper {
	display: flex;
	align-items: center;
	gap: 30px;
}
.contact-info-block {
	margin-bottom: 0;
}
.contact-box {
	background: linear-gradient(135deg, #303030 0%, #1a1a1a 100%);
	color: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.contact-box h3 {
	font-size: 28px;
	margin-bottom: 30px;
	color: #eb5424;
}
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
	transition: all 0.3s ease-in-out;
}
.contact-item:last-child {
	margin-bottom: 0;
}
.contact-item:hover {
	transform: translateX(8px);
}
.contact-item i {
	font-size: 24px;
	color: #eb5424;
	width: 30px;
	min-width: 30px;
	text-align: center;
	margin-top: 4px;
}
.contact-item h4 {
	font-size: 16px;
	margin: 0 0 5px 0;
	color: #eb5424;
}
.contact-item p {
	margin: 0;
	font-size: 14px;
	line-height: 22px;
	color: #d0d0d0;
}
.contact-item a {
	color: #eb5424;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease-in-out;
}
.contact-item a:hover {
	color: #ffffff;
}
.contact-map-block {
	margin-bottom: 0;
}
.map-container {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	height: 100%;
}
.map-container iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 350px;
}
/* footer section */
footer {
	background: #202020;
	color: #ffffff;
	border-bottom: 10px solid #ffffff;
	padding-top: 60px;
	padding-bottom: 60px;
}
footer h2 {
	padding-top: 40px;
	padding-bottom: 20px;
}
footer p {
	line-height: 20px;
}
footer .copyright a {
	color: #eb5424;
}
/* Footer Content */
.footer-content {
	text-align: center;
}
.footer-content h3 {
	color: #ffffff;
	font-size: 28px;
	margin-bottom: 20px;
}
.footer-content p {
	color: #ffffff;
	margin: 10px 0;
}
.footer-content a {
	color: #eb5424;
	text-decoration: none;
}
.footer-content a:hover {
	text-decoration: underline;
}
/* Hide old elements */
.service-areas-list {
	display: none;
}
.faq-section {
	display: none;
}
.contact-info {
	display: none;
}
.google_map {
	display: none;
}
/* CTA Sections */
.cta-section {
	padding: 80px 20px;
	text-align: center;
	color: #ffffff;
	background: linear-gradient(135deg, #eb5424 0%, #d43f1a 100%);
}
.cta-section.cta-alternate {
	background: linear-gradient(135deg, #303030 0%, #1a1a1a 100%);
}
.cta-content h2 {
	color: #ffffff;
	margin-bottom: 20px;
	font-size: 42px;
}
.cta-content p {
	color: #ffffff;
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 1.6;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.btn-cta {
	display: inline-block;
	background: #ffffff;
	color: #eb5424;
	padding: 15px 45px;
	border-radius: 8px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	font-size: 16px;
	border: 2px solid #ffffff;
}
.cta-alternate .btn-cta {
	background: #eb5424;
	color: #ffffff;
	border-color: #eb5424;
}
.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cta-alternate .btn-cta:hover {
	background: #d43f1a;
	border-color: #d43f1a;
}
/* Service Detail Sections */
.service-detail-section {
	padding: 80px 20px;
	background: #ffffff;
}
.service-detail-section .row {
	display: flex;
	align-items: center;
	gap: 40px;
}
.service-detail-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-detail-img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease-in-out;
}
.service-detail-img:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.service-detail-content h3 {
	color: #202020;
	margin-bottom: 20px;
	font-size: 32px;
}
.service-detail-content p {
	color: #606060;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 25px;
}
.service-features {
	list-style: none;
	padding: 0;
	margin: 25px 0;
}
.service-features li {
	padding: 12px 0;
	padding-left: 30px;
	color: #606060;
	font-size: 15px;
	line-height: 1.6;
	position: relative;
}
.service-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #eb5424;
	font-weight: bold;
	font-size: 18px;
}
/* About image wrapper for centering */
.about-image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}
/* Responsive design */
@media screen and (max-width:980px) {
	.navbar-default .navbar-nav li a {
		padding-right: 14px;
		padding-left: 14px;
		font-size: 13px;
	}
	#intro h2 {
		font-size: 32px;
	}
	#work .title {
		padding: 80px 20px 20px 20px;
	}
	.contact-wrapper {
		flex-direction: column;
	}
	.service-areas-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
	.service-card {
		padding: 30px 15px;
	}
	.services-content {
		padding-left: 20px;
		padding-right: 20px;
	}
	.hero-features {
		flex-direction: column;
		gap: 10px;
	}
	.hero-feature-item {
		margin-left: 0 !important;
	}
	.service-detail-section .row {
		flex-direction: column;
		gap: 20px;
	}
	.cta-content h2 {
		font-size: 32px;
	}
	.service-detail-content h3 {
		font-size: 24px;
	}
}
@media (max-width:767px) {
	.navbar-brand {
		padding-top: 6px;
	}
	.contact-map-block {
		width: 100%;
	}
	.services-content {
		padding-left: 15px;
		padding-right: 15px;
	}
	.hero-description {
		font-size: 14px;
	}
}
@media (max-width:480px) {
	#home h1 {
		font-size: 32px;
	}
	#home h2 {
		font-size: 22px;
	}
	#intro h2 {
		font-size: 20px;
	}
	.service-areas-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.area-badge {
		padding: 12px 15px;
		font-size: 13px;
	}
	.accordion-header {
		padding: 15px;
	}
	.contact-wrapper {
		flex-direction: column;
	}
	.service-card {
		padding: 25px 15px;
	}
	.services-content {
		padding-left: 10px;
		padding-right: 10px;
	}
	.about-section-image {
		max-width: 100%;
		margin: 20px 0;
	}
	.hero-title {
		font-size: 40px;
	}
	.hero-subtitle {
		font-size: 28px;
	}
	.hero-features {
		font-size: 12px;
		gap: 8px;
	}
	.services-benefits {
		gap: 15px;
	}
	.benefit-item {
		padding: 15px;
	}
	.benefit-item h4 {
		font-size: 16px;
	}
	.benefit-item p {
		font-size: 13px;
	}
	.cta-section {
		padding: 60px 15px;
	}
	.cta-content h2 {
		font-size: 28px;
		margin-bottom: 15px;
	}
	.cta-content p {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.btn-cta {
		padding: 12px 30px;
		font-size: 14px;
	}
	.service-detail-section {
		padding: 60px 15px;
	}
	.service-detail-img {
		max-width: 100%;
	}
	.service-detail-content h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.service-detail-content p {
		font-size: 14px;
	}
	.service-features li {
		font-size: 13px;
	}
}
