/*

Pico Ducting - Air Duct Cleaning Services

*/

/* Body 
------------------------------------- */
body {
		background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    position: relative;
}

html,body {
      width: 100%;
     overflow-x: hidden;
  }

.post-masonry img {
    width: 100%;
    display: block;
}

/* Typography
------------------------------------- */
h1,h2,h3,h4,h5 {
  font-weight: bold;
}

h1 {
  font-size: 62px;
  line-height: 72px;
}

h2 {
  color: #323232;
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 1px;
  padding-bottom: 12px;
}

h3 {
  color: #ffa400;
  font-size: 16px;
  letter-spacing: 2px;
}

h5 {
  color: #ffa400;
  line-height: 28px;
  letter-spacing: 2px;
}

p {
  font-size: 16px;
  letter-spacing: 0.9px;
  line-height: 32px;
}

.logo-text {
  color: #ffa400;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin: 0;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  position: relative;
  padding: 10px 0;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #ffa400, transparent);
  transform: scaleX(0.8);
  transition: transform 0.3s ease;
}

.logo-text:hover::after {
  transform: scaleX(1);
}

.logo-text span {
  color: #333;
  font-weight: 400;
}

/* Responsive logo styling */
@media (max-width: 768px) {
  .logo-text {
    font-size: 20px;
    letter-spacing: 1px;
    padding: 8px 0;
  }
  
  .logo-text::after {
    bottom: 6px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 18px;
    letter-spacing: 0.8px;
    padding: 6px 0;
  }
  
  .logo-text::after {
    bottom: 4px;
    height: 1.5px;
  }
}


/* All Section styles
------------------------------------- */
#faq, #services, #service-areas, #contact {
   	padding-top: 120px;
  	padding-bottom: 120px;
}

#about h3 {
  	padding-bottom: 12px;
}

.parallax-section {
  	background-attachment: fixed !important;
  	background-size: cover !important;
}


/* navigation styles
/* ========================================== */
.navbar-default {
    background: #fff;
    border: none;
    box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.04);
    margin: 0 !important;
    padding: 8px 0;
  }
.navbar-default .navbar-brand {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  }
.navbar-default .navbar-header {
  display: flex;
  align-items: center;
}
.navbar-default li {
  margin: 0 20px;
}
.navbar-default .navbar-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar-default .navbar-nav li a {
    color: #303030;
    font-size: 13px;
    font-weight: 600;
    padding: 15px 0;
    position: relative;
    transition: all 0.3s ease;
  }
.navbar-default .navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffa400;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
.navbar-default .navbar-nav li a:hover::after {
    transform: scaleX(1);
  }
.navbar-default .navbar-nav li a:hover {
    color: #ffa400;
  }
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #303030;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #ffa400;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
     margin-right: 10px;
  }

@media (max-width: 768px) {
  .navbar-default {
    padding: 5px 0;
  }
  
  .navbar-default .navbar-toggle {
    padding-top: 8px;
  }
  
  .navbar-default li {
    margin: 0 10px;
  }
  
  .navbar-default .navbar-nav li a {
    padding: 10px 0;
  }
}
.navbar-default .navbar-toggle .icon-bar {
    background: #ffa400;
    border-color: transparent;
  }
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent;
}



/* home section styles
/* ========================================== */
#home {
  background: url('../images/home-bg.jpg') 50% 0 repeat-y fixed;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  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;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 1;
}

#home .container {
  position: relative;
  z-index: 2; /* Place content above the overlay */
}

#home h1 {
  color: #ffffff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

#home h3 {
  color: #ffa400;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
  text-transform: uppercase;
}

#home .btn-danger {
  background: #ffa400 !important;
  margin-right: 20px;
  border: 2px solid #ffa400;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#home .btn-danger:hover {
  background: #ffc400 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

#home .btn {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 16px 52px;
  margin-top: 40px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#home .btn:hover {
  background: #ffa400;
  border-color: #ffa400;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}


/* about section styles
/* ========================================== */
#about .container {
  	width: 100%;
  	padding: 0px;
  	margin: 0px;
}

#about .col-md-6 {
	padding: 0;
}

#about .about-des {
  	padding: 65px;
}

#about .about-des h3 {
	font-size: 26px;
}

#about .about-des h4 {
	font-size: 20px;
}

#about .about-des p {
	font-size: 16px;
	line-height: 32px;
}


/* Detailed Services Section Styles
/* ========================================== */
.service-detail-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.service-detail-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.service-detail-box {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.service-detail-box h3 {
  color: #323232;
  font-size: 22px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffa400;
  padding-bottom: 10px;
}

.service-detail-box .service-icon {
  font-size: 48px;
  color: #ffa400;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.service-detail-box ul {
  padding-left: 20px;
  margin: 15px 0;
}

.service-detail-box ul li {
  padding: 5px 0;
  position: relative;
}

.service-detail-box .btn-service {
  background: #ffa400;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-detail-box .btn-service:hover {
  background: #e09000;
  text-decoration: none;
}

.service-highlight {
  background-color: #fff8e6;
  border-left: 4px solid #ffa400;
  padding: 15px;
  margin: 20px 0;
}

.service-area-highlight {
  background: linear-gradient(to right, rgba(255,164,0,0.1), rgba(255,164,0,0));
  padding: 15px;
  border-radius: 4px;
  margin: 20px 0;
}

.testimonial-quote {
  font-style: italic;
  border-left: 3px solid #ffa400;
  padding-left: 15px;
  margin: 20px 0;
  color: #555;
}

/* CTA Styles */
.cta-box {
  background: linear-gradient(to right, #ffa400, #ffc400);
  color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 15px;
}

.cta-box p {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-btn {
  background: #ffffff;
  color: #ffa400;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f0f0f0;
  color: #e09000;
  text-decoration: none;
}

/* Geo-specific Content Styles */
.geo-specific-section {
  padding: 60px 0;
}

.geo-specific-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.neighborhood-box {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.neighborhood-box h3 {
  color: #323232;
  font-size: 20px;
  margin-bottom: 15px;
}

.neighborhood-box p {
  font-size: 14px;
  line-height: 24px;
}

/* Benefits Section Styles */
.benefits-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.benefits-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefit-box {
  text-align: center;
  margin-bottom: 30px;
}

.benefit-box .benefit-icon {
  font-size: 40px;
  color: #ffa400;
  margin-bottom: 15px;
}

.benefit-box h3 {
  color: #323232;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Process Section Styles */
.process-section {
  padding: 80px 0;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.process-step .step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #ffa400;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  color: #323232;
  font-size: 20px;
  margin-bottom: 10px;
}
#services h2, #services h4 {
  text-align: center;
}

#services h2 {
  padding-bottom: 12px;
  font-size: 32px;
}

#services h4 {
  padding-bottom: 32px;
  letter-spacing: 0.9px;
}

#services p {
	padding-top: 10px;
	font-size: 14px;
	line-height: 28px;
}

#services .blog-wrapper {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#services .blog-wrapper h3 a {
  color: #000000;
}

/* FAQ section styles
/* ========================================== */
#faq h2, #faq h4 {
  text-align: center;
}

#faq h2 {
  padding-bottom: 12px;
  font-size: 32px;
}

#faq h4 {
  padding-bottom: 32px;
  letter-spacing: 0.9px;
}

#faq p {
	padding-top: 10px;
	font-size: 14px;
	line-height: 28px;
}

#faq .blog-wrapper {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#faq .blog-wrapper h3 {
  color: #000000;
  font-size: 18px;
}

/* Service Areas section styles
/* ========================================== */
#service-areas h2, #service-areas h4 {
  text-align: center;
}

#service-areas h2 {
  padding-bottom: 12px;
  font-size: 32px;
}

#service-areas h4 {
  padding-bottom: 32px;
  letter-spacing: 0.9px;
}

#service-areas .link-list li {
  list-style: none;
  padding: 8px 0;
  color: #606060;
}

/* contact section styles
/* ========================================== */
#contact {
  background: url('../images/contact-bg.jpg') 50% 0 repeat-y fixed;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#contact .container {
  position: relative;
  z-index: 2;
}

#contact .contact-detail {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

#contact .contact-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

#contact .contact-detail h2 {
  padding-bottom: 30px;
  color: #323232;
  font-size: 32px;
  position: relative;
  display: inline-block;
}

#contact .contact-detail h2::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ffa400;
}

#contact .contact-detail div {
  padding: 15px 0;
  margin-bottom: 10px;
}

#contact .contact-detail h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #323232;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact .contact-detail h4 i {
  color: #ffa400;
  margin-right: 10px;
  font-size: 24px;
}

#contact .contact-detail p {
  font-size: 16px;
  margin-bottom: 0;
}

#contact .contact-detail a {
  color: #303030;
  font-weight: 600;
  transition: all 0.3s ease;
}

#contact .contact-detail a:hover {
  color: #ffa400;
  text-decoration: none;
}


/* footer section styles
/* ========================================== */
footer {
  padding: 60px 0 40px;
  background: #f9f9f9;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

footer .container {
  text-align: center;
}

footer h2 {
  color: #323232;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

footer h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ffa400;
}

footer p {
  padding: 5px 0;
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer .copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #777;
}

footer a {
  color: #ffa400;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #e09000;
  text-decoration: none;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 30px;
  }
  
  footer h2 {
    font-size: 24px;
  }
  
  footer p {
    font-size: 14px;
    padding: 3px 0;
  }
}


@media (max-width: 1280px) {
	#about .about-des {
		padding: 40px;
	}
	#about .about-des h3 {
		font-size: 20px;
	}
	
	#about .about-des h4 {
		font-size: 16px;
	}
	
	#about .about-des p {
		font-size: 13px;
		line-height: 24px;
	}
}
/* mobile responsive section styles
/* ========================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 53px;
  }
}

@media (max-width: 650px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 450px) {
  h1 {
    font-size: 28px;
    line-height: 38px;
  }
  #home h5 {
    font-size: 11px;
  }
  #home .btn {
    display: inline-block;
    padding: 14px 32px;
  }
}

@media (max-width: 375px) {
  h1 {
    font-size: 24px;
    line-height: 34px;
  }
  #home h5 {
    font-size: 9px;
  }
}
