/*------- HEADER ---------*/
/*------- FOOTER ---------*/
/*------- breadrumb ---------*/
/*------- Pagination ---------*/
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
/*========================================================*/
/*============	    CONFIG STYLE      ====================*/
/*========================================================*/
.service-header-section {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
.service-header-section .service-badge-outline {
  display: inline-block;
  font-family: "Poppins";
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #8f0000;
  border: 1px solid #8f0000;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-header-section .service-section-title {
  font-family: "Lora";
  font-size: 38px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

/*========================================================*/
/*============		 CSS STYLE        ====================*/
/*========================================================*/
.grid_service {
  margin-top: 30px;
}
.grid_service .item {
  position: relative;
  margin-bottom: 30px;
  background: transparent;
}
.grid_service .item .inner {
  display: flex;
  column-gap: 30px;
  flex-direction: row;
  align-items: stretch;
  background: none;
}
.grid_service .item .i-image {
  flex: 0 0 calc(50% - 15px);
  position: relative;
  overflow: visible;
  border-radius: 10px;
}
.grid_service .item .i-image a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.grid_service .item .i-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.grid_service .item .i-image:hover img {
  transform: scale(1.05);
}
.grid_service .item .i-image .arrow-circle-btn {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translate(50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #cc2638;
  border: 20px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}
.grid_service .item .i-image .arrow-circle-btn .arrow-icon {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.grid_service .item .i-image .arrow-circle-btn:hover {
  background: #cc2638;
  transform: translate(50%, -50%) scale(1.1);
}
.grid_service .item .i-desc {
  flex: 0 0 calc(50% - 15px);
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 10px;
  background: #ffffff;
}
.grid_service .item .i-desc .card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.grid_service .item .i-desc .card-header-flex .header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.grid_service .item .i-desc .card-header-flex .header-left h3.i-title {
  margin: 0;
}
.grid_service .item .i-desc .card-header-flex .badge-solid {
  background: #8f0000;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  height: 30px;
  line-height: 22px;
  margin-bottom: 12px;
}
.grid_service .item .i-desc .card-header-flex .service-number {
  font-family: "Lora";
  font-size: 100px;
  font-weight: 300;
  color: #eaeaea;
  line-height: 1;
}
.grid_service .item .i-desc h3.i-title {
  margin: 0 0 20px 0;
  font-family: "Lora";
  font-size: 30px;
  color: #1a1a1a;
  line-height: 1.3em;
  font-weight: 500;
  text-transform: uppercase;
}
.grid_service .item .i-desc h3.i-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.grid_service .item .i-desc h3.i-title a:hover {
  color: #8f0000;
}
.grid_service .item .i-desc .card-divider {
  border: none;
  border-top: 1px solid #8b0000;
  margin: 0 0 25px 0;
  width: 100%;
}
.grid_service .item .i-desc .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.grid_service .item .i-desc .features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #555555;
  line-height: 1.4;
}
.grid_service .item .i-desc .features-list li:last-child {
  margin-bottom: 0;
}
.grid_service .item .i-desc .features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #8f0000;
}
.grid_service .item .i-desc .features-list li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 9.5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
}
.grid_service .item.even .inner {
  flex-direction: row-reverse;
}
.grid_service .item.even .i-image a {
  border-radius: 10px;
}
.grid_service .item.even .i-image a.arrow-circle-btn {
  border-radius: 50%;
}
.grid_service .item.even .i-image .arrow-circle-btn {
  right: auto;
  left: -15px;
  transform: translate(-50%, -50%);
}
.grid_service .item.even .i-image .arrow-circle-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.grid_service .item.even .i-desc {
  border-radius: 10px;
}

/*-------------------*/
.service_related {
  width: 100%;
  margin: 30px 0 20px;
}
.service_related .related_title {
  margin-bottom: 20px;
}
.service_related .related_title h4 {
  display: inline-block;
  position: relative;
  font-size: 30px;
  line-height: 1.3em;
  text-transform: uppercase;
  font-family: "Lora";
  color: #d50e0a;
}

/*-------------------*/
.mod-content {
  margin: 0 -15px;
}

.desc.entry {
  padding: 30px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.the_date {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #cccccc;
  font-size: 13px;
  line-height: 20px;
  color: #999999;
  padding-left: 18px;
  position: relative;
}
.the_date:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: fontawesome;
  content: "\f017";
  color: #66c9f9;
}

.the_content {
  margin-bottom: 20px;
}

/*========================================================*/
/*============		RESPONSIVE        ====================*/
/*========================================================*/
@media screen and (max-width: 1024px) {
  .grid_service .item .i-desc {
    padding: 40px 30px;
  }
  .grid_service .item .i-desc h3.i-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .service-header-section {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .service-header-section .service-section-title {
    font-size: 28px;
  }
  .grid_service .item {
    margin-bottom: 40px;
  }
  .grid_service .item .inner {
    flex-direction: column !important;
    border-radius: 8px;
  }
  .grid_service .item .i-image {
    flex: 0 0 auto;
    height: 300px;
    width: 100%;
  }
  .grid_service .item .i-image a {
    border-radius: 8px 8px 0 0 !important;
  }
  .grid_service .item .i-image .arrow-circle-btn {
    top: 100%;
    right: 25px;
    left: auto !important;
    transform: translate(0, -50%) !important;
  }
  .grid_service .item .i-image .arrow-circle-btn:hover {
    transform: translate(0, -50%) scale(1.1) !important;
  }
  .grid_service .item .i-desc {
    flex: 0 0 auto;
    width: 100%;
    padding: 40px 30px;
    border-radius: 0 0 8px 8px !important;
  }
}
@media screen and (max-width: 480px) {
  .service-header-section .service-section-title {
    font-size: 24px;
  }
  .grid_service .item .i-image {
    height: 220px;
  }
  .grid_service .item .i-desc {
    padding: 30px 20px;
  }
  .grid_service .item .i-desc .card-header-flex .service-number {
    font-size: 56px;
  }
  .grid_service .item .i-desc h3.i-title {
    font-size: 20px;
  }
}
/*========================================================*/
/*============     SERVICE ARCHIVE STYLE   ===============*/
/*========================================================*/
.service-archive-header {
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
}
.service-archive-header .service-badge-outline {
  display: inline-block;
  font-family: "Poppins";
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #8f0000;
  border: 1px solid #8f0000;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-archive-header .service-category-title {
  font-family: "Lora";
  font-size: 38px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.grid_service_archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.grid_service_archive .item,
.service-other-slider .item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.grid_service_archive .item:hover,
.service-other-slider .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.grid_service_archive .item .inner,
.service-other-slider .item .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.grid_service_archive .item .i-image,
.service-other-slider .item .i-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
.grid_service_archive .item .i-image a,
.service-other-slider .item .i-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.grid_service_archive .item .i-image img,
.service-other-slider .item .i-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.grid_service_archive .item .i-image:hover img,
.service-other-slider .item .i-image:hover img {
  transform: scale(1.05);
}
.grid_service_archive .item .i-desc,
.service-other-slider .item .i-desc {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.grid_service_archive .item .i-desc .badge-solid,
.service-other-slider .item .i-desc .badge-solid {
  align-self: flex-start;
  background: #8f0000;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  line-height: 1.5em;
}
.grid_service_archive .item .i-desc h3.i-title,
.service-other-slider .item .i-desc h3.i-title {
  margin: 0 0 15px 0;
  font-family: "Lora";
  font-size: 24px;
  color: #1a1a1a;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
}
.grid_service_archive .item .i-desc h3.i-title a,
.service-other-slider .item .i-desc h3.i-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.grid_service_archive .item .i-desc h3.i-title a:hover,
.service-other-slider .item .i-desc h3.i-title a:hover {
  color: #8f0000;
}
.grid_service_archive .item .i-desc .i-short,
.service-other-slider .item .i-desc .i-short {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 4.8em;
}

@media screen and (max-width: 1024px) {
  .grid_service_archive .item .i-image,
  .service-other-slider .item .i-image {
    height: 280px;
  }
  .grid_service_archive .item .i-desc,
  .service-other-slider .item .i-desc {
    padding: 25px 30px;
  }
  .grid_service_archive .item .i-desc h3.i-title,
  .service-other-slider .item .i-desc h3.i-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .grid_service_archive {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid_service_archive .item .i-image,
  .service-other-slider .item .i-image {
    height: 300px;
  }
  .grid_service_archive .item .i-desc,
  .service-other-slider .item .i-desc {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 480px) {
  .grid_service_archive .item .i-image,
  .service-other-slider .item .i-image {
    height: 200px;
  }
  .grid_service_archive .item .i-desc,
  .service-other-slider .item .i-desc {
    padding: 20px;
  }
  .grid_service_archive .item .i-desc h3.i-title,
  .service-other-slider .item .i-desc h3.i-title {
    font-size: 20px;
  }
}
/*========================================================*/
/*============      SERVICE DETAIL STYLE    ==============*/
/*========================================================*/
.service-detail-header {
  padding-top: 40px;
  padding-bottom: 30px;
  text-align: center;
}
.service-detail-header .service-category-badge-outline {
  display: inline-block;
  font-family: "Poppins";
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #8f0000;
  border: 1px solid #8f0000;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.service-detail-header .service-detail-title {
  font-family: "Lora";
  font-size: 38px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.service-detail-body {
  display: flex;
  column-gap: 50px;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 60px;
}
.service-detail-body .service-content-col {
  flex: 0 0 calc(60% - 25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-body .service-image-col {
  flex: 0 0 calc(40% - 25px);
}
.service-detail-body .service-image-col .service-main-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 10px;
  overflow: hidden;
}
.service-detail-body .service-image-col .service-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ SECTION */
.section-faq-wrap {
  background: #f9f9f9;
  padding: 80px 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.service-faq-section .faq-header {
  margin-bottom: 50px;
}
.service-faq-section .faq-header h2 {
  font-family: "Lora";
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-faq-section .faq-header p {
  font-size: 16px;
  color: #666666;
  margin: 0;
}
.service-faq-section .faq-slider-container .faq-slider {
  position: relative;
}
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-prev,
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 50% !important;
  color: #8f0000 !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-prev:hover,
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-next:hover {
  background: #8f0000 !important;
  border-color: #8f0000 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(204, 38, 56, 0.3);
}
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-prev.disabled,
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-prev {
  left: -60px;
}
.service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-next {
  right: -60px;
}
@media screen and (max-width: 1200px) {
  .service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-prev {
    left: -15px;
  }
  .service-faq-section .faq-slider-container .faq-slider .owl-nav .owl-next {
    right: -15px;
  }
}
@media screen and (max-width: 768px) {
  .service-faq-section .faq-slider-container .faq-slider .owl-nav {
    display: none !important;
  }
}
.service-faq-section .faq-slider-container .faq-slider .faq-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  margin: 10px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.service-faq-section .faq-slider-container .faq-slider .faq-item .faq-question {
  font-family: "Lora";
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.4;
}
.service-faq-section .faq-slider-container .faq-slider .faq-item .faq-answer {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

/* OTHER SERVICES SECTION */
.section-service-other {
  padding: 80px 0;
}
.section-service-other .service-other-header {
  margin-bottom: 50px;
}
.section-service-other .service-other-header .service-badge-outline {
  display: inline-block;
  font-family: "Poppins";
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #8f0000;
  border: 1px solid #8f0000;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section-service-other .service-other-header .box-title {
  font-family: "Lora";
  font-size: 36px;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.5px;
}
.section-service-other .service-other-slider {
  position: relative;
}
.section-service-other .service-other-slider .owl-nav .owl-prev,
.section-service-other .service-other-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 50% !important;
  color: #8f0000 !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.section-service-other .service-other-slider .owl-nav .owl-prev:hover,
.section-service-other .service-other-slider .owl-nav .owl-next:hover {
  background: #8f0000 !important;
  border-color: #8f0000 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(204, 38, 56, 0.3);
}
.section-service-other .service-other-slider .owl-nav .owl-prev.disabled,
.section-service-other .service-other-slider .owl-nav .owl-next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.section-service-other .service-other-slider .owl-nav .owl-prev {
  left: -60px;
}
.section-service-other .service-other-slider .owl-nav .owl-next {
  right: -60px;
}
@media screen and (max-width: 1200px) {
  .section-service-other .service-other-slider .owl-nav .owl-prev {
    left: -15px;
  }
  .section-service-other .service-other-slider .owl-nav .owl-next {
    right: -15px;
  }
}
@media screen and (max-width: 768px) {
  .section-service-other .service-other-slider .owl-nav {
    display: none !important;
  }
}
.section-service-other .service-other-slider .item {
  margin: 10px;
}

/* REQUEST QUOTE SECTION */
.section_request_quote {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
}
.section_request_quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.section_request_quote .wrapper {
  position: relative;
  z-index: 2;
}
.section_request_quote .request-quote-container {
  display: flex;
  flex-direction: row;
  column-gap: 50px;
  align-items: center;
}
.section_request_quote .quote-form-col {
  flex: 0 0 60%;
}
.section_request_quote .quote-image-col {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}
.section_request_quote .quote-image-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.section_request_quote .quote-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.section_request_quote .quote-form-card {
  background: rgba(12, 16, 23, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.section_request_quote .quote-form-card h3 {
  font-family: "Lora";
  font-size: 32px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 35px;
  text-transform: uppercase;
}
.section_request_quote .quote-form-card .form-section-title {
  font-family: "Poppins";
  font-size: 14px;
  color: #8f0000;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}
.section_request_quote .quote-form-card .form-row {
  display: flex;
  column-gap: 20px;
  margin-bottom: 20px;
}
.section_request_quote .quote-form-card .form-row .form-group {
  flex: 1;
}
.section_request_quote .quote-form-card .form-row .form-group.full-width {
  flex: 0 0 100%;
}
.section_request_quote .quote-form-card .form-group {
  margin-bottom: 20px;
}
.section_request_quote .quote-form-card .form-group input[type=text],
.section_request_quote .quote-form-card .form-group input[type=email] {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 15px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.section_request_quote .quote-form-card .form-group input[type=text]::placeholder,
.section_request_quote .quote-form-card .form-group input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.section_request_quote .quote-form-card .form-group input[type=text]:focus,
.section_request_quote .quote-form-card .form-group input[type=email]:focus {
  border-color: #8f0000;
  background: rgba(255, 255, 255, 0.12);
}
.section_request_quote .quote-form-card .checkboxes-row {
  margin-top: 25px;
  margin-bottom: 30px;
  gap: 30px;
}
.section_request_quote .quote-form-card .checkboxes-row .checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  font-size: 15px;
}
.section_request_quote .quote-form-card .checkboxes-row .checkbox-label input[type=checkbox] {
  display: none;
}
.section_request_quote .quote-form-card .checkboxes-row .checkbox-label .checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.section_request_quote .quote-form-card .checkboxes-row .checkbox-label .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.section_request_quote .quote-form-card .checkboxes-row .checkbox-label input[type=checkbox]:checked ~ .checkbox-custom {
  border-color: #8f0000;
  background-color: #8f0000;
}
.section_request_quote .quote-form-card .checkboxes-row .checkbox-label input[type=checkbox]:checked ~ .checkbox-custom::after {
  opacity: 1;
}
.section_request_quote .quote-form-card .checkboxes-row .checkbox-label span {
  user-select: none;
}
.section_request_quote .quote-form-card .btn-submit-request {
  width: 100%;
  background: #8f0000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.section_request_quote .quote-form-card .btn-submit-request:hover {
  background: rgb(168.5, 0, 0);
  transform: translateY(-2px);
}
.section_request_quote .quote-form-card .btn-submit-request:active {
  transform: translateY(0);
}

@media screen and (max-width: 1024px) {
  .service-detail-body {
    column-gap: 30px;
  }
  .service-detail-body .service-image-col .service-main-image {
    min-height: 350px;
  }
  .section_request_quote .request-quote-container {
    column-gap: 30px;
  }
  .section_request_quote .quote-form-card {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .service-detail-header .service-detail-title {
    font-size: 30px;
  }
  .service-detail-body {
    flex-direction: column;
    row-gap: 30px;
  }
  .service-detail-body .service-content-col {
    flex: 0 0 100%;
    width: 100%;
  }
  .service-detail-body .service-image-col {
    flex: 0 0 100%;
    width: 100%;
  }
  .service-detail-body .service-image-col .service-main-image {
    min-height: 300px;
    height: 350px;
  }
  .section-faq-wrap,
  .section-service-other {
    padding: 50px 0;
  }
  .service-faq-section .faq-header {
    margin-bottom: 30px;
  }
  .service-faq-section .faq-header h2 {
    font-size: 28px;
  }
  .section_request_quote {
    padding: 60px 0;
  }
  .section_request_quote .request-quote-container {
    flex-direction: column;
    row-gap: 40px;
  }
  .section_request_quote .quote-form-col {
    flex: 0 0 100%;
    width: 100%;
  }
  .section_request_quote .quote-image-col {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .service-detail-header .service-detail-title {
    font-size: 24px;
  }
  .service-faq-section .faq-slider-container .faq-slider .faq-item {
    padding: 25px;
    min-height: 200px;
  }
  .service-faq-section .faq-slider-container .faq-slider .faq-item .faq-question {
    font-size: 18px;
  }
  .section_request_quote .quote-form-card {
    padding: 30px 20px;
  }
  .section_request_quote .quote-form-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .section_request_quote .quote-form-card .form-row {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 0;
  }
  .section_request_quote .quote-form-card .form-group {
    margin-bottom: 20px;
  }
  .section_request_quote .quote-form-card .checkboxes-row {
    flex-direction: column;
    row-gap: 15px;
    align-items: flex-start;
    margin-top: 15px;
    margin-bottom: 25px;
  }
}