/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
/* ============================
   Custom Service Section
============================ */
.custom-service-section .service-area {
  width: 1200px;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  padding-top: 20px;
}

.custom-service-section .service-content {
  display: flex;
  width: 100%;
  align-items: center;
  column-gap: 30px;
}

.custom-service-section .service-area h3 {
  font-size: 42px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-top: 25px;
}

.custom-service-section .service-content .desc {
  flex: 0 0 60%;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #000;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.custom-service-section .desc2 {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #000;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.custom-service-section .service-content .service-area {
  flex: 0 0 40%;
}

.custom-service-section .service-content .service-area img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================
   Responsive Design
============================ */
@media (max-width: 991px) {
  .custom-service-section .service-content {
    flex-direction: column;
    margin-top: 0;
  }

  .custom-service-section .service-content .desc,
  .custom-service-section .service-content .service-area {
    flex: 0 0 100%;
  }

  .custom-service-section .service-content .service-area h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  .custom-service-section .service-area h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
  }

  .custom-service-section .service-area {
    padding-top: 0;
  }

  .custom-service-section .service-content .desc,
  .custom-service-section .desc2 {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ============================
   Restoration Section
============================ */
.restoration-section-heading {
  text-align: center;
  font-size: 42px;
  color: #16558B;
  margin-top: 25px;
  margin-bottom: 25px!important;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.restoration-services-section {
  max-width: 1200px;
}

.restoration-services-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.restoration-service-box {
  flex: 1 1 calc(33.333% - 25px);
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.restoration-service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.restoration-service-box img {
  width: 100%;
  height: auto;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
}

.restoration-service-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #B31F28;
  padding: 0 14px;
}

.restoration-service-box p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  padding: 8px 20px;
}

/* Responsive Design for Restoration Section */
@media (max-width: 992px) {
  .restoration-service-box {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .restoration-service-box {
    flex: 1 1 100%;
  }

  .restoration-section-heading {
    text-align: center;
    font-size: 24px;
  }
}

/* ============================
   FAQ Section
============================ */
.restoration-faq-section {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.faq_section_heading {
  text-align: center;
  margin-bottom: 50px;
  font-size: 42px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #16558B;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  text-align: left;
  padding: 10px 10px;
  position: relative;
  color: #222;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  word-wrap: break-word;
  white-space: normal;
}

.faq-answer {
  display: none;
  padding: 10px 0 20px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {
  background-color: #B31F28 !important;
  color: #fff !important;
  text-decoration: none;
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .restoration-faq-section {
    padding: 20px;
  }

  .faq_section_heading {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .faq-icon {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 16px;
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  .restoration-faq-section {
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
	
   
  .faq_section_heading {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 8px 4px;
    gap: 8px;
  }

  .faq-icon {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 8px 0 15px;
  }
}
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 16px;
    padding: 8px;
  }
}

/* ============================
   Post Button Styles
============================ */
.post-btn a.elementor-post__read-more {
  background: #16558B;
  padding: 8px 16px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.post-btn a.elementor-post__read-more:hover {
  background: #B31F28;
}

/* ============================
   Icon Background
============================ */
.icon-bg svg {
  background: #FACCCF;
  border-radius: 100px;
  padding: 15px;
  transition: 0.5s ease;
}

.icon-bg svg:hover {
  background: #B31F28 !important;
  border-radius: 100px !important;
  padding: 15px !important;
  transition: 0.5s ease;
}

.icon-bg svg:hover{
	fill:#fff !important;
}
