*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', arial, sans-serif;
}

body {
	padding-top: 70px;
	overflow-x: hidden;
	background-color: #fff;
}

ul {
	list-style: none;
	margin: 0px;
}

p {
	font-size: 13px;
	line-height: 22px;
	color: #4a4a4a;
}

.white-border-button a {
	padding: 14px 20px;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 30px;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.5s;
}

.pink-button a {
	padding: 14px 20px;
	background-color: #b94e5e;
	border-radius: 30px;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.5s;
}

.white-button a {
	padding: 14px 20px;
	background-color: #fff;
	border-radius: 30px;
	color: #121212;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.5s;
}


.banner .col-md-8 {
	padding-left: 0px;
	padding-right: 5px;
}

.banner .col-md-4 {
	padding-right: 0px;
	padding-left: 5px;
}


.banner .left-banner-content {
	padding-top: 175px;
	padding-bottom: 175px;
	padding-left: 120px;
	text-align: left;
	background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/banner-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 680px;
	height: 680px;
	position: relative;
}

.left-banner-content h6 {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.left-banner-content h1 {
	font-size: 64px;
	font-weight: 300;
	color: #fff;
	line-height: 70px;
}

.left-banner-content .line-dec {
	width: 60px;
	height: 3px;
	margin-top: 20px;
	margin-bottom: 30px;
	background-color: #f4bc51;
}

.left-banner-content .white-border-button {
	margin-top: 52px;
}

.right-banner-content {
	padding: 100px 45px;
	background-color: #f4bc51;
	text-align: center;		
	min-height: 680px;
	height: 680px;
}

.right-banner-content h2 {
	font-size: 48px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	margin-bottom: 5px;
}

.logo-text {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.1;
	letter-spacing: 2px;
	font-family: 'Open Sans', arial, sans-serif;
	position: relative;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.logo-text::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #b94e5e 0%, #f4bc51 100%);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.logo-text:hover {
	color: #f4bc51;
	transform: translateY(-1px);
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.logo-text:hover::before {
	width: 80px;
	background: linear-gradient(90deg, #f4bc51 0%, #b94e5e 100%);
}

/* Navigation Styles */
.navbar {
	background-color: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	padding: 0 20px;
	min-height: 70px;
}

.navbar-brand {
	font-size: 22px;
	font-weight: 800;
	color: #b94e5e !important;
	text-transform: uppercase;
	padding: 22px 15px;
	line-height: 26px;
	height: 70px;
	display: flex;
	align-items: center;
	letter-spacing: 1.5px;
	font-family: 'Open Sans', arial, sans-serif;
	position: relative;
	transition: all 0.3s ease;
}

.navbar-brand::after {
	content: '';
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #b94e5e 0%, #f4bc51 100%);
	border-radius: 1px;
	transition: all 0.3s ease;
}

.navbar-brand:hover {
	color: #f4bc51 !important;
	transform: translateY(-1px);
}

.navbar-brand:hover::after {
	width: 40px;
}

.navbar-brand i {
	margin-right: 8px;
	color: #f4bc51;
}

.navbar-nav {
	float: right;
	margin: 0;
}

.navbar-nav > li {
	float: left;
}

.navbar-nav > li > a {
	color: #4a4a4a !important;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	padding: 25px 15px;
	transition: all 0.3s ease;
	line-height: 20px;
	height: 70px;
	display: flex;
	align-items: center;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
	color: #b94e5e !important;
	background-color: transparent !important;
	transform: translateY(-1px);
}

.navbar-cta {
	background-color: #b94e5e !important;
	color: rgba(255, 255, 255, 0.9) !important;
	border-radius: 25px;
	margin: 15px 0 15px 10px !important;
	padding: 12px 20px !important;
	font-weight: 700;
	transition: all 0.3s ease;
	height: 40px !important;
	display: flex !important;
	align-items: center !important;
	text-shadow: none;
	box-shadow: 0 2px 8px rgba(185, 78, 94, 0.3);
}

.navbar-cta:hover,
.navbar-cta:focus {
	background-color: #f4bc51 !important;
	color: rgba(255, 255, 255, 0.95) !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(244, 188, 81, 0.4);
	text-shadow: none;
}

.navbar-toggle {
	border: 2px solid #b94e5e;
	margin-top: 18px;
	margin-bottom: 18px;
	padding: 8px 10px;
}

.navbar-toggle .icon-bar {
	background-color: #b94e5e;
	width: 22px;
	height: 2px;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
	background-color: #b94e5e;
}

.navbar-toggle:hover .icon-bar,
.navbar-toggle:focus .icon-bar {
	background-color: #fff;
}

/* Navbar scroll effect */
.navbar.scrolled {
	background-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.banner {
	margin-top: -70px;
	padding-top: 70px;
}

.right-banner-content .line-dec {
	width: 100%;
	height: 5px;
	background-color: #fff;
	margin: 30px auto;
}

.right-banner-content span {
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.5px;
}

.right-banner-content em {
	font-style: normal;
	font-weight: 700;
}

.right-banner-content p {
	font-style: italic;
	font-size: 13px;
	color: #fff;
}

.right-banner-content .social-icons {
	margin-top: 40px;
	padding: 0;
	list-style: none;
}

.right-banner-content .social-icons li {
	display: inline-block;
	margin: 0px 3px;
}

.right-banner-content .social-icons li a {
	width: 36px;
	height: 36px;
	text-align: center;
	display: inline-block;
	line-height: 36px;
	background-color: #fff;
	border-radius: 50%;
	transition: all 0.5s;
	color: #f4bc51;
	font-size: 17px;
}

.right-banner-content .social-icons li a:hover {
	background-color: #d59b2b;
}




.best-offer {
	margin-top: 10px;
}

.best-offer .col-md-4 {
	padding-left: 0px;
	padding-right: 5px;
}

.best-offer .col-md-8 {
	padding-right: 0px;
	padding-left: 5px;
}

.best-offer-left-content {
	min-height: 550px;
	height: 550px;
	padding-top: 175px;
	padding-bottom: 175px;
	text-align: center;
	background-image: url(../img/best-offer-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.best-offer-left-content .icon {
	text-align: center;
	margin: 0 auto;
	width: 140px;
	height: 140px;
	line-height: 140px;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.best-offer-left-content .icon i {
	transition: all 0.3s ease;
}

.best-offer-left-content:hover .icon {
	transform: scale(1.05);
	border-color: rgba(255, 255, 255, 0.8);
}

.best-offer-left-content:hover .icon i {
	transform: scale(1.1);
}

.best-offer-left-content h4 {
	margin-top: 33px;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
}

.best-offer-right-content {
	background-color: #eee;
	padding: 80px 40px;
	min-height: 550px;
	height: 550px;
}

.best-offer-right-content h2 {
	margin-top: 0px;
	font-size: 32px;
	font-weight: 300;
	color: #121212;
	line-height: 36px;
}

.best-offer-right-content em {
	font-style: normal;
	color: #b94e5e;
	font-weight: 700;
}

.best-offer-right-content p {
	margin: 18px 0px;
}

.best-offer-right-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.best-offer-right-content ul li {
	display: block;
	font-size: 13px;
	font-style: italic;
	color: #7a7a7a;
	font-weight: 300;
	margin-bottom: 10px;
}

.best-offer-right-content .pink-button {
	margin-top: 45px;
}





.projects-holder .mix {
  display: none;
}

.events {
	margin-top: 10px;
	padding-top: 100px;
	padding-bottom: 100px;
	text-align: center;
	background-image: url(../img/events-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.events .filter-categories {
  list-style: none;
  margin-top: 0px;
  padding-right: 0px;
  text-align: center;
  margin-bottom: 60px;
}

.events .filter-categories li {
  display: inline;
  text-align: center;
  margin: 8px 0px;
}

.events .filter-categories li {
  display:block;
  transition: all 0.5s;
  text-align: center;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing: 0.5px;
  color:#121212;
  font-size: 17px!important;
  font-weight: 600;
  display: inline-block;
  max-width: 200px;
  width: 200px;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  cursor: pointer;
}

.filter-categories ul li.active span {
  color: #f4bc51;
}

.project-item {
	width: 100%;
}

.event-list {
	background-color: #fff;
}

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

.event-list ul li {
	display: block;
	text-align: left;
	margin-bottom: 5px;
}

.event-list ul li:last-child {
	margin-bottom: 0px;
}

.event-list ul .first-child{
	background-color: #eee;
}

.event-list ul .second-child{
	background-color: #ddd;
}

.event-list ul .third-child{
	background-color: #eee;
}

.event-list ul .fourth-child{
	background-color: #ddd;
}

.event-list ul .fivth-child{
	background-color: #eee;
}

.event-list ul li .date span {
	background-color: #f4bc51;
	width: 80px;
	height: 80px;
	text-align: center;
	line-height: 25px;
	margin-right: 0px;
}

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

.event-list .event-item li {
	display: inline-block;
	padding: 10px;
}

.event-list .event-item li:last-child {
	float: right;
	margin-top: 30px;
	margin-right: 20px;
}

.event-list .event-item .time span{
	text-align: center;
	margin-left: 50px;
	color: #4a4a4a;
	font-weight: 300;
	font-size: 15px;
	display: inline-block;
}

.event-list ul li .date span {
	padding-top: 15px;
	margin-top: 0px;
	font-size: 18px;
	display: block;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
}

.event-list h4 {
	width: 300px;
	margin-top: 0px;
	font-size: 18px;
	text-transform: uppercase;
	color: #121212;
	font-weight: 700;
	margin-bottom: 5px;
	display: inline-block;
}

.event-list .web span {
	font-size: 13px;
	font-weight: 600;
	color: #b94e5e;
	display: inline-block;
}

.event-list .design span {
	font-size: 13px;
	font-weight: 600;
	color: #e86859;
	display: inline-block;
}

.event-list .app span {
	font-size: 13px;
	font-weight: 600;
	color: #f4bc51;
	display: inline-block;
}


.event-list .white-button a:hover {
	background-color: #f4bc51;
	color: #fff;
}

.event-list {
	transition: all 0.5s;
	height: 545px;
}





.testimonial {
	margin-top: 10px;	
}

.testimonial .col-md-8 {
	padding-left: 5px;
	padding-right: 0px;
}

.testimonial .col-md-4 {
	padding-right: 5px;
	padding-left: 0px;
}

.testimonial-image {
	text-align: center;
	background-image: url(../img/testimonial-left-image.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 600px;
	height: 600px;

}

#owl-testimonial {
	padding-top: 100px;
	padding-bottom: 100px;
	text-align: center;
	background-image: url(../img/testimonial-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 600px;
	height: 600px;
}

#owl-testimonial .item {
	text-align: center;
}

#owl-testimonial .item img {
	width: 130px;
}

#owl-testimonial .item span {
	margin-top: 28px;
	display: block;
	color: #e86859;
	font-size: 13px;
	font-style: italic;
	font-weight: 300;
}

#owl-testimonial .item h4 {
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 700;
	color: #121212;
}

#owl-testimonial .item p {
	font-size: 17px;
	font-style: italic;
	color: #4a4a4a;
	padding: 0px 120px;
	font-weight: 300;
	line-height: 28px;
	letter-spacing: 0.5px;
}

.owl-pagination {
	margin-top: 15px;
	margin-left: -30px;
  opacity: 1;
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 9999;
}


.owl-page span {
	text-align: center;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #e86859;
}




.services {
	margin-top: 10px;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
	background-image: url(../img/services-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.services-header {
	text-align: center;
	margin-bottom: 50px;
}

.services-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #121212;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.services-header p {
	font-size: 16px;
	color: #4a4a4a;
	margin: 0;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.services .col-md-4 {
	padding-left: 0px;
	padding-right: 0px;
}

.flip-container {
  perspective: 1000;
}
/* turning on hover */

.flip-container:hover .flipper {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.flip-container,
.front,
.back {
  width: 100%;
  height: 350px;
  text-align: center;
  font-size: 30px;
}
/* flipping speed here */

.front {
	padding: 40px 30px;
}

.front .icon {
	width: 140px;
	height: 140px;
	line-height: 140px;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	margin: 30px auto;
	transition: all 0.3s ease;
}

.front .icon i {
	transition: all 0.3s ease;
}

.flip-container:hover .front .icon {
	transform: scale(1.1);
	border-color: rgba(255, 255, 255, 0.8);
}

.flip-container:hover .front .icon i {
	transform: scale(1.2);
}

.front h4 {
	margin-top: 0px;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 700;
}

.flipper {
  -webkit-transition: 0.3s all;   
-webkit-transition-delay: 0.3s; 
-moz-transition: 0.3s all;   
-moz-transition-delay: 5s; 
-ms-transition: 0.3s all;   
-ms-transition-delay: 5s; 
-o-transition: 0.3s all;   
-o-transition-delay: 5s; 
transition: 0.3s all;   
transition-delay: 0.3s; 
  transform-style: preserve-3d;
  position: relative;
}
/* making the the other side hidden while flipping */


.front,
.back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
/* front side is in front of a back side */

.front {
  z-index: 2;
  color: white;
  /* for firefox 31 */
	transform: rotateY(0deg);
}
/* back side */

.back {
  transform: rotateY(180deg);
}

.back p {
  color: #fff;
  padding: 90px 30px;
  font-size: 16px;
  line-height: 1.6;
}

.first-service .front,
.first-service .back {
	background-color: rgba(244, 188, 81, 0.9);
}

.second-service .front,
.second-service .back {
	background-color: rgba(243, 158, 75, 0.9);
}

.third-service .front,
.third-service .back {
	background-color: rgba(185, 78, 94, 0.9);
}

.fourth-service .front,
.fourth-service .back {
	background-color: rgba(232, 104, 89, 0.9);
}

/* Service Detail Sections */
.service-details {
	padding: 80px 0;
	margin-top: 10px;
}

.service-details.interior-painting {
	background-color: #f8f8f8;
}

.service-details.exterior-painting {
	background-color: #fff;
}

.service-details.residential-commercial {
	background-color: #f8f8f8;
}

.service-details-content {
	padding: 40px;
}

.service-details-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #121212;
	margin-bottom: 25px;
	line-height: 1.2;
}

.service-details-content h2 em {
	color: #b94e5e;
	font-style: normal;
	font-weight: 700;
}

.service-details-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: #b94e5e;
	margin: 30px 0 20px 0;
	text-transform: uppercase;
}

.service-details-content h4 {
	font-size: 18px;
	font-weight: 700;
	color: #121212;
	margin: 25px 0 15px 0;
}

.service-details-content p {
	font-size: 15px;
	line-height: 1.8;
	color: #4a4a4a;
	margin-bottom: 20px;
}

.service-features ul,
.service-category ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.service-features ul li,
.service-category ul li {
	padding: 8px 0;
	font-size: 14px;
	line-height: 1.6;
	color: #4a4a4a;
	border-bottom: 1px solid rgba(180, 180, 180, 0.1);
}

.service-features ul li:last-child,
.service-category ul li:last-child {
	border-bottom: none;
}

.service-features ul li strong {
	color: #b94e5e;
	font-weight: 700;
}

.service-details-image {
	min-height: 850px;
	max-width: 550px;
	width: 100%;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	margin: 0 auto;
}

.service-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
}

.service-details-image.interior-bg {
	background-color: #f8f8f8;
}

.service-details-image.exterior-bg {
	background-color: #f8f8f8;
}

.service-highlight-card {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.90) 100%);
	padding: 30px;
	z-index: 2;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(8px);
}

.card-header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f4bc51;
}

.card-header i {
	font-size: 24px;
	color: #b94e5e;
	margin-right: 10px;
}

.card-header h4 {
	font-size: 18px;
	font-weight: 700;
	color: #121212;
	margin: 0;
	text-align: center;
}

.highlight-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}

.highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	border-left: 4px solid #b94e5e;
	transition: all 0.3s ease;
	backdrop-filter: blur(2px);
}

.highlight-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	background-color: rgba(255, 255, 255, 0.95);
}

.item-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #b94e5e, #f4bc51);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.item-icon i {
	font-size: 16px;
	color: #fff;
}

.item-content {
	flex: 1;
}

.item-content h5 {
	font-size: 14px;
	font-weight: 700;
	color: #121212;
	margin: 0 0 4px 0;
	line-height: 1.2;
}

.item-content span {
	font-size: 12px;
	color: #4a4a4a;
	line-height: 1.3;
}

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

.section-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #121212;
	margin-bottom: 20px;
}

.section-header p {
	font-size: 16px;
	color: #4a4a4a;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.service-category {
	padding: 40px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	height: 100%;
}

.service-category.commercial {
	margin-top: 0;
}

.category-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f4bc51;
}

.category-header i {
	font-size: 32px;
	color: #b94e5e;
	margin-right: 15px;
}

.category-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #121212;
	margin: 0;
}

.category-content p {
	font-size: 15px;
	line-height: 1.7;
	color: #4a4a4a;
	margin-bottom: 20px;
}

.category-content h4 {
	font-size: 18px;
	font-weight: 700;
	color: #b94e5e;
	margin: 25px 0 15px 0;
}

.white-border-button {
	margin-top: 30px;
}

.white-border-button a {
	padding: 12px 25px;
	background-color: transparent;
	border: 2px solid #b94e5e;
	border-radius: 30px;
	color: #b94e5e;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-block;
}

.white-border-button a:hover {
	background-color: #b94e5e;
	color: #fff;
	transform: translateY(-2px);
}




.contact-us .col-md-8 {
	padding-left: 0px;
	padding-right: 5px;
}

.contact-us .col-md-4 {
	padding-right: 0px;
	padding-left: 5px;
}


#contact .col-md-4 {
	padding-right: 15px;
	padding-left: 15px;
}


.contact-us {
	margin-top: 10px;
}

.contact-us #contact {
	min-height: 500px;
	height: 500px;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 120px;
	padding-right: 120px;
	text-align: center;
	background-image: url(../img/contact-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.contact-info {
	min-height: 500px;
	height: 500px;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 120px;
	padding-right: 120px;
	text-align: center;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/contact-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.contact-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-content p {
	font-size: 18px;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.6;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-content a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	border: 2px solid #fff;
	padding: 8px 16px;
	border-radius: 25px;
	transition: all 0.3s ease;
	display: inline-block;
	margin: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.contact-content a:hover {
	background-color: #fff;
	color: #b94e5e;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
	.contact-info {
		padding-left: 30px;
		padding-right: 30px;
		padding-top: 60px;
		padding-bottom: 60px;
		height: auto;
		min-height: 400px;
	}
	
	.contact-content h2 {
		font-size: 28px;
	}
	
	.contact-content p {
		font-size: 16px;
		margin-bottom: 15px;
	}
	
	footer {
		padding: 40px 0 30px 0;
	}
	
	footer p {
		font-size: 14px;
		margin-bottom: 10px;
	}
	
	footer::after {
		background-size: 20px 20px;
		animation: float 15s infinite linear;
	}
	
	/* Service details responsive */
	.services-header h2 {
		font-size: 28px;
	}
	
	.services-header p {
		font-size: 14px;
	}
	
	.service-details-content {
		padding: 30px 20px;
	}
	
	.service-details-content h2 {
		font-size: 28px;
	}
	
	.service-details-image {
		min-height: 600px;
		max-width: 100%;
		margin-bottom: 30px;
	}
	
	.service-highlight-card {
		padding: 20px;
	}
	
	.highlight-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.highlight-item {
		padding: 12px;
	}
	
	.card-header {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
	
	.card-header i {
		margin-right: 0;
		margin-bottom: 5px;
	}
	
	.card-header h4 {
		font-size: 16px;
	}
	
	.service-category {
		padding: 30px 20px;
		margin-bottom: 30px;
	}
	
	.section-header h2 {
		font-size: 28px;
	}
	
	.category-header {
		flex-direction: column;
		text-align: center;
	}
	
	.category-header i {
		margin-right: 0;
		margin-bottom: 10px;
	}
		
	/* Mobile navbar styles */
	.navbar-brand {
		font-size: 20px;
		padding: 22px 15px;
	}
	
	.navbar-nav {
		float: none;
		margin: 0;
	}
		
	.navbar-nav > li {
		float: none;
	}
		
	.navbar-nav > li > a {
		padding: 15px 20px;
		font-size: 16px;
		border-bottom: 1px solid rgba(180, 180, 180, 0.1);
		height: auto;
		display: block;
	}
		
	.navbar-cta {
		margin: 10px 20px !important;
		text-align: center;
		border-radius: 25px;
		height: auto !important;
		display: block !important;
		padding: 15px 20px !important;
	}
		
	.navbar-collapse {
		background-color: rgba(255, 255, 255, 0.98);
		border-top: 1px solid rgba(180, 180, 180, 0.2);
		margin-top: 0;
		border-radius: 0 0 5px 5px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}
		
	.navbar-collapse.in {
		max-height: 400px;
	}
		
	.navbar-toggle {
		display: block;
		margin-right: 15px;
	}
}

#contact input {
  border-radius: 0px;
  padding-left: 15px;
  font-size: 13px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
  border-bottom: 2px solid #fff;
  outline: none;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  line-height: 40px;
  height: 40px;
  width: 100%;
  margin-bottom: 30px;
}

#contact textarea {
  border-radius: 0px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
  border-bottom: 2px solid #fff;
  outline: none;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  height: 165px;
  max-height: 165px;
  min-height: 165px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 25px;
}

#contact button {
	float: left;
	padding: 14px 20px;
	background-color: #f39e4b;
	border-radius: 30px;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.5s;
	outline: none;
}

.contact-right-content {
	min-height: 500px;
	height: 500px;
	line-height: 500px;
	padding-top: 150px;
	padding-bottom: 150px;
	text-align: center;
	background-image: url(../img/contact-right-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.contact-right-content .icon {
	text-align: center;
	margin: 0 auto;
	width: 140px;
	height: 140px;
	line-height: 140px;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.contact-right-content .icon i {
	transition: all 0.3s ease;
}

.contact-right-content:hover .icon {
	transform: scale(1.05);
	border-color: rgba(255, 255, 255, 0.8);
}

.contact-right-content:hover .icon i {
	transform: scale(1.1);
}

.contact-right-content h4 {
	margin-top: 33px;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
}

footer {
	padding: 60px 0 40px 0;
	margin-top: 10px;
	background: #b94e5e;
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

footer::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 30px 30px;
	animation: float 20s infinite linear;
	z-index: 1;
}

@keyframes float {
	0% { transform: translate(0, 0) rotate(0deg); }
	100% { transform: translate(-30px, -30px) rotate(360deg); }
}

footer .container-fluid {
	position: relative;
	z-index: 2;
}

footer p {
	font-size: 15px;
	color: #fff;
	margin-bottom: 12px;
	line-height: 1.8;
	font-weight: 400;
	transition: all 0.3s ease;
}

footer p:last-child {
	margin-bottom: 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 20px;
}

footer a {
	color: #fff;
	text-decoration: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	font-weight: 600;
	padding: 2px 4px;
	border-radius: 3px;
}

footer a:hover {
	color: #121212;
	background-color: rgba(255, 255, 255, 0.9);
	border-bottom-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer p em {
	font-weight: 800;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1000px) {

	.event-list h4 {
		width: 230px;
	}

	.event-list .event-item .time span{
		margin-left: 20px;
	}

}

@media (max-width: 991px) {

	.banner .col-md-8 {
		margin-top: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.banner .col-md-4 {
		margin-top: 10px;
		padding-right: 10px;
		padding-left: 10px;
	}

	.banner .left-banner-content {
		padding-left: 0px;
		text-align: center;
	}

	.left-banner-content h1 {
		font-size: 64px;
		font-weight: 300;
		color: #fff;
		line-height: 80px!important;
	}


	.banner .left-banner-content .line-dec {
		margin: 0 auto;
	}

	.best-offer .col-md-8 {
		margin-top: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.best-offer .col-md-4 {
		margin-top: 10px;
		padding-right: 10px;
		padding-left: 10px;
	}

	.best-offer-right-content {
		text-align: center;
	}

	.best-offer-right-content {
		background-color: #eee;
		padding: 30px 30px;
		min-height: 550px;
		height: auto;
	}

	.best-offer-right-content .pink-button {
		margin-bottom: 50px;
	}

	.events {
		margin-right: 10px;
		margin-left: 10px;
	}

	.event-item {
		text-align: center!important;
		display: inline-block;
	}

	.event-item h4 {
		text-align: center!important;
	}

	.event-item span {
		text-align: center!important;
		display: inline-block;
		width: 100%;
	}

	.event-list h4 {
		width: 300px;
	}

	.event-list .event-item .time span{
		margin-left: 50px;
	}

	.event-list .project-item li:first-child {
		float: none;
	}
	
	.event-list .project-item li:last-child {
		float: none;
		margin-top: 0px;
		margin-right: 0px;
		padding-bottom: 25px;
	}
	
	.events .filter-categories li {
		text-align: center;
		display: inline-block;
		margin-bottom: -5px;
	}

	.event-list {
		transition: all 0.5s;
		height: auto;
	}

	.event-list .event-item li:last-child {
		float: right;
		margin-top: 30px;
		margin-right: 20px;
	}

	.event-list .event-item .time {
		margin-left: 0px;
	}

	.events .filter-categories li {
	  cursor: pointer;
	  display:block;
	  transition: all 0.5s;
	  text-align: center;
	  text-decoration:none;
	  text-transform:uppercase;
	  letter-spacing: 0.5px;
	  color:#121212;
	  font-size: 14px!important;
	  font-weight: 600;
	  display: inline-block;
	  width: 100%;
	  height: 50px;
	  line-height: 50px;
	  background-color: #fff;
	  padding: 0px 10px;
	}

	.event-list .event-item .time span {
		margin-left: 0px;
	}

	.testimonial .col-md-8 {
		margin-top: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.testimonial .col-md-4 {
		margin-top: 0px;
		padding-right: 10px;
		padding-left: 10px;
	}	

	.owl-pagination {
		margin-top: -15px;
	}

	#owl-testimonial {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	#owl-testimonial .item p {
		padding: 0px 60px;
		font-size: 15px;
	}

	.services {
		margin-left: 10px;
		margin-right: 10px;
	}

	.contact-us .col-md-8 {
		margin-top: 0px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.contact-us .col-md-4 {
		margin-top: 10px;
		padding-right: 10px;
		padding-left: 10px;
	}

	.contact-us #contact {
		padding-left: 60px;
		padding-right: 60px;
	}

	.contact-us #contact {
		min-height: 600px;
		height: 600px;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	footer {
		margin-right: 10px;
		margin-left: 10px;
		border-radius: 5px;
		padding: 30px 0 25px 0;
	}

	footer p {
		font-size: 13px;
		margin-bottom: 8px;
	}
		
}

@media (max-width: 843px) {

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

	.event-item li:first-child {
		float: none!important;
		width: 100px;
	}

	.event-item li {
		text-align: center!important;
		width: 49%!important;
	}

	.event-item li:last-child {
		display: block;
		margin-top: 5px!important;
		margin-right: 0px!important;
	}

	.event-list ul li .date span {
		background-color: #f4bc51;
		width: 100%;
		height: 80px;
		text-align: center;
		line-height: 25px;
		margin-right: 0px;
	}
	.event-list h4 {
		width: auto;
	}

}

@media (max-width: 1045px) {

	.event-list h4 {
		width: 250px;
	}
	
}

@media (max-width: 620px) {

	.event-list h4 {
		width: auto;
	}

}

@media (max-width: 500px) {

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

	.event-item li:first-child {
		float: none!important;
		width: 100px;
	}

	.event-item li {
		text-align: center!important;
		width: 100%!important;
	}

	.event-item li:last-child {
		float: none!important;
		margin-top: 15px!important;
		margin-right: 0px!important;
	}

	.event-list h4 {
		width: auto;
	}

}