/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  max-height: 60px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #007bff;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  flex-direction: column;
  gap: 10px !important;
}

.dropdown-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.header-contact .phone-link {
  text-decoration: none;
  color: #eee;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 16px;
  background-color: #007bff;
  border-radius: 12px;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 240px 0;
}

.hero-phone {
  color: #eee;
  font-size: 1.4rem;
  text-decoration: none;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Services Section */
.services-preview {
  padding: 80px 0;
}

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

.service-grid {
  padding: 80px 0;
  background-color: #fff;
}

.service-grid h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
}

.services-grid {
  padding: 80px 0;
  background-color: #fff;
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-grid h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #007bff;
  border-color: #007bff;
}

.service-item a {
  display: block;
  padding: 25px;
  text-decoration: none;
  color: #333;
  text-align: center;
  transition: color 0.3s ease;
}

.service-item:hover a {
  color: #fff;
}

.service-item h3 {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
}

.service-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
  display: block;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* About Preview Section */
.about-preview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  margin-top: 20px;
  text-align: right;
}

/* Footer */
.main-footer {
  background-color: #333;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #007bff;
}

.contact-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.form-and-keywords-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0px;
}

.homepage-second-section-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0px 0;
}

.form-wrapper {
  position: absolute;
  left: 65%;
  top: 60%;
  flex: 1;
  width: 450px;
  max-width: 500px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-home {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-message {
  margin-top: 10px;
  font-weight: bold;
}


.contact-form-home input,
.contact-form-home textarea {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.contact-form-home button {
  padding: 15px;
  background-color: #007bff;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-home button:hover {
  background-color: #0056b3;
}

.keywords-wrapper {
  flex: 2;
}

.homepage-second-section-wrapper {
  flex: 2;
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.form-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  text-align: center;
}


/* Responsive: show form below the service section on mobile */
@media (max-width: 768px) {
  .form-and-keywords-wrapper {
    flex-direction: column-reverse;
  }


  .form-wrapper,
  .keywords-wrapper,
  .homepage-second-section-wrapper {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
}



/* Responsive Design */
@media (max-width: 768px) {

  .header-contact .phone-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #333;
  }

  .logo img {
    max-height: 45px;
  }

  .mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }

  .header-content {
    flex-direction: row;
    gap: 20px;
  }

  .cta-button {
    margin-bottom: 20px;
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown a {
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
    min-width: auto;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    padding: 10px 0 0 15px;
  }

  .dropdown.active a i {
    transform: rotate(180deg);
  }

  .dropdown-menu li {
    padding: 5px 0;
  }

  .dropdown-menu a {
    padding: 5px 10px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    margin-bottom: 15px;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .header-contact .phone-link {
    color: #eee;
  }

  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
    position: absolute;
    background-color: #fff;
    width: 100%;
    margin-left: -20px;
    margin-top: 20em;
    padding: 12px;
  }
}

/* Service Areas Section */
.service-areas {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.service-areas h2 {
  text-align: center;
  margin-bottom: 30px;
}

.service-areas>.container>p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.area-group {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.area-group h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.area-group ul {
  list-style: none;
  padding: 0;
}

.area-group li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.area-group li:before {
  content: "•";
  color: #007bff;
  position: absolute;
  left: 0;
}

.areas-cta {
  text-align: center;
  margin-top: 30px;
}

.areas-cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Emergency Services Section */
.emergency-services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.emergency-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.emergency-text h2 {
  color: #dc3545;
  margin-bottom: 20px;
}

.emergency-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.emergency-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.emergency-features i {
  color: #dc3545;
  font-size: 1.2rem;
}

.emergency-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #dc3545;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.emergency-button:hover {
  background-color: #c82333;
}

.emergency-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* FAQ Preview Section */
.faq-preview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.faq-preview h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.homepage-projects-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 40px;
}

.faq-item,
.homepage-projects-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3,
.homepage-projects-item h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.homepage-projects-item h2 {
  color: #333;
  text-align: center !important;
  margin-bottom: 10px !important;
}

.faq-cta {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .emergency-content {
    grid-template-columns: 1fr;
  }

  .emergency-image {
    order: -1;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .homepage-projects-grid {
    flex-direction: column;
  }
}

/* Service Keywords Section */
.service-keywords {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.service-keywords h2 {
  text-align: left;
  margin-bottom: 40px;
  font-size: 2rem;
}

.keywords-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.keywords-text {
  padding-right: 30px;
}

.keywords-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.keywords-text h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #333;
}

.keywords-list {
  list-style: none;
  padding: 0;
}

.keywords-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.keywords-list i {
  color: #007bff;
  font-size: 1.2rem;
}

.keywords-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Section Intro Styles */
.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Service Benefits Section */
.service-benefits {
  padding: 80px 0;
  background-color: #fff;
}

.service-benefits h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.benefit-item h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #333;
}

.benefit-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .keywords-content {
    grid-template-columns: 1fr;
  }

  .keywords-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .keywords-image {
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    padding: 0 20px;
  }
}

/* About Hero Section */
.about-hero {
  padding: 80px 0;
  background-color: #f8f9fa;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-hero-text {
  max-width: 100%;
  color: #333;
}

.about-hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
  white-space: nowrap;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  white-space: nowrap;
}

.about-hero-image {
  max-width: 100%;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 0;
  background-color: #fff;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-box,
.vision-box {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mission-box i,
.vision-box i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.mission-box p,
.vision-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* About Why Choose Section */
.about-why-choose {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.about-why-choose h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: #fff;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.team-member .position {
  font-size: 1.1rem;
  color: #007bff;
  margin-bottom: 15px;
}

.team-member .bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Service Map Section */
.service-map {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.service-map h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
}

.map-container {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.map-cta {
  text-align: center;
}

.map-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .about-hero-image {
    order: -1;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    min-width: auto;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-text h2 {
    font-size: 2rem;
  }
}

/* Services Hero Section */
.services-hero {
  padding: 80px 0;
  background-color: #f8f9fa;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/services-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  margin-top: 60px;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;

}

.services-hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.services-hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

.rating {
  margin-bottom: 30px;
}

.rating-stars {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-right: 10px;
}

.rating-count {
  font-size: 1rem;
  color: #fff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #fff;
  color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.phone-button:hover {
  background-color: #007bff;
  color: #fff;
}

/* Service Features Section */
.service-features {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.service-features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Services CTA Section */
.services-cta {
  padding: 80px 0;
  background-color: #007bff;
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.services-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta .cta-button {
  background-color: #fff;
  color: #007bff;
}

.services-cta .cta-button:hover {
  background-color: #f8f9fa;
}

.services-cta .phone-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.services-cta .phone-button:hover {
  background-color: #fff;
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {

  .services-hero-text h2,
  .services-grid h2,
  .service-features h2,
  .services-cta h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button,
  .phone-button {
    width: 100%;
    text-align: center;
  }
}

/* Blog Hero Section */
.blog-hero {
  padding: 100px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/blog-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  margin-top: 60px;
}

.blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.blog-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #fff;
}

/* Blog Content Section */
.blog-content {
  padding: 80px 0;
  background-color: #fff;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-post-card:hover {
  transform: translateY(-5px);
}

.blog-post-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: #fff;
}

.blog-post-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.3;
}

.blog-post-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 80px 0;
  }

  .blog-hero h1 {
    font-size: 2.5rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-image {
    height: 200px;
  }
}

/* Contact Hero Section */
.contact-hero {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
  margin-top: 60px;
}

.contact-hero h1 {
  font-size: 2.5rem;

  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero p {
  font-size: 1.2rem;

  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-cta .cta-button:hover {
  background-color: #0056b3;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.contact-form-container p {
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  padding: 15px 30px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0056b3;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.contact-info-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.contact-info-item p {
  color: #666;
  margin-bottom: 0;
}

.contact-info-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: #007bff;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: #fff;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    margin-top: 100px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-cta {
    flex-direction: column;
  }

  .contact-cta .cta-button {
    width: 100%;
    justify-content: center;
  }

  .contact-form-container {
    padding: 30px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Post Styles */
.blog-post {
  padding: 80px 0;
  background-color: #fff;
  margin-top: 100px;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-post-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #666;
  font-size: 0.9rem;
}

.blog-post-image {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.blog-post-body h2 {
  font-size: 1.8rem;
  color: #333;
  margin: 40px 0 20px;
}

.blog-post-body p {
  margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-body li {
  margin-bottom: 10px;
}

.blog-post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

/* Related Posts Section */
.related-posts {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.related-posts h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-post-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
}

.related-post-card a {
  text-decoration: none;
  color: inherit;
}

.related-post-image {
  height: 200px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.05);
}

.related-post-content {
  padding: 20px;
}

.related-post-content h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.related-post-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-header h1 {
    font-size: 2rem;
  }

  .blog-post-body {
    font-size: 1rem;
  }

  .blog-post-body h2 {
    font-size: 1.5rem;
  }

  .blog-post-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Post Hero Section */
.blog-post-hero {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin-bottom: 40px;
}

.blog-post-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.blog-post-hero .breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.blog-post-hero .breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-hero .breadcrumb a:hover {
  color: #0056b3;
}

.blog-post-hero .breadcrumb span {
  color: #333;
}

.blog-post-hero h1 {
  font-size: 2.5rem;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-hero {
    padding: 40px 0;
    margin-top: 120px;
  }

  .blog-post-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .blog-post-hero {
    margin-top: 140px;
  }
}

/* Service Hero Section */
.service-hero {
  padding: 100px 0;
  background-color: #f8f9fa;
  text-align: center;
  margin-top: 100px;
}

.service-hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.service-hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.service-hero p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
}

.rating {
  margin-bottom: 30px;
}

.rating-stars {
  font-size: 1.5rem;
  color: #ffc107;
  margin-right: 10px;
}

.rating-count {
  color: #fff !important;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

.phone-button {
  background-color: #28a745;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.phone-button:hover {
  background-color: #218838;
}

/* Service Intro Section */
.service-intro {
  padding: 60px 0;
  text-align: center;
}

.service-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
}

.service-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Service Details Section */
.service-details {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-detail-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.service-detail-item p {
  color: #666;
  line-height: 1.6;
}

/* Service Features Section */
.service-features {
  padding: 60px 0;
  text-align: center;
}

.service-features h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.feature p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service CTA Section */
.service-cta {
  padding: 80px 0;
  background-color: #007bff;
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-hero {
    margin-top: 120px;
    padding: 60px 0;
  }

  .service-hero h1 {
    font-size: 2.5rem;
  }

  .service-hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .service-intro h2,
  .service-features h2,
  .service-cta h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero {
    margin-top: 140px;
    padding: 40px 0;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero p {
    font-size: 1rem;
  }

  .service-intro h2,
  .service-features h2,
  .service-cta h2 {
    font-size: 1.8rem;
  }
}

/* Service Content Section */
.service-content {
  padding: 60px 0;
  background-color: #fff;
}

.service-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-intro {
  margin-bottom: 60px;
  text-align: center;
}

.service-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
}

.service-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.service-section {
  margin-bottom: 60px;
}

.service-section h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-image {
  margin: 40px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.service-image:hover img {
  transform: scale(1.02);
}

.service-features {
  margin-top: 80px;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.service-features h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature {
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
}

.feature p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-content {
    padding: 40px 0;
  }

  .service-intro h2 {
    font-size: 2rem;
  }

  .service-intro p {
    font-size: 1.1rem;
  }

  .service-section h3 {
    font-size: 1.5rem;
  }

  .service-section p {
    font-size: 1rem;
  }

  .service-features h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .service-article {
    padding: 0 15px;
  }

  .service-intro h2 {
    font-size: 1.8rem;
  }

  .service-section h3 {
    font-size: 1.3rem;
  }
}

/* Service Areas Hero Section */
.service-areas-hero {
  padding: 100px 0;
  background-color: #f8f9fa;
  text-align: center;
  margin-top: 100px;
}

.service-areas-hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.service-areas-hero h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-areas-hero p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Service Areas Content Section */
.service-areas-content {
  padding: 80px 0;
  background-color: #fff;
}

.service-areas-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-areas-intro h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 20px;
}

.service-areas-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.areas-list {
  max-width: 1000px;
  margin: 0 auto 60px;
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.areas-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-list li {
  padding: 12px 15px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.areas-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.areas-list li a i {
  color: #007bff;
  font-size: 1.2rem;
}

.areas-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #007bff;
}

.areas-list li:hover a {
  color: #fff;
}

.areas-list li:hover a i {
  color: #fff;
}

.areas-cta {
  text-align: center;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 10px;
  margin-top: 40px;
}

.areas-cta h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
}

.areas-cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .areas-list ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .service-areas-content {
    padding: 60px 0;
  }

  .service-areas-intro h2 {
    font-size: 1.8rem;
  }

  .areas-list {
    padding: 30px;
  }

  .areas-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .service-areas-intro h2 {
    font-size: 1.5rem;
  }

  .areas-list {
    padding: 20px;
  }

  .areas-list ul {
    grid-template-columns: 1fr;
  }

  .areas-cta {
    padding: 30px 20px;
  }
}