:root {
  --primary-color: #d01872;
  --secondary-color: #ffd8eb;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PlayFair display", sans-serif;
}

.title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .title {
    text-align: center;
  }
}

.subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.text-primary {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  font-weight: 600 !important;
}

@media (max-width: 1200px) {
  .pl-main-banner {
    background: #f8e7e7 !important;
  }
}

.note-alert {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

/** @section Preloader */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  transition: 0.3s all ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-body {
  text-align: center;
}

.preloader-body p {
  position: relative;
  right: -8px;
}

/* @service */
.section-services {
  padding: 50px 0;
}
.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.service-item-image {
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}

.service-item-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-item-title {
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

.service-item-text {
  color: #555;
}

.service-item-price {
  background: var(--secondary-color);
  width: fit-content;
  margin: 12px auto;
  padding: 2px 16px;
  border-radius: 25px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: bold;
}

/* @faq */
.section-faq {
  background: #fafbff;
  padding: 100px 0;
}

.section-faq .accordion-item {
  background: none;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 32px 16px;
  border-radius: 0;
}

.section-faq .accordion-item .accordion-body {
  padding: 0;
  margin-top: 16px;
}

.section-faq .accordion-header button {
  width: 100%;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  background: none;
  position: relative;
  font-family: "Playfair Display", serif;
}
.section-faq .accordion-header button::after {
  content: "-";
  position: absolute;
  right: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.section-faq .accordion-header button.collapsed::after {
  content: "+";
}

/* @testimonial */
.section-testimonial {
  padding: 70px 0;
}
/* @footer */
footer {
  padding: 40px 0;
  background: #0b1455;
  color: #ffffff;
}
footer .social-media {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .social-media li {
  display: inline-block;
  margin-right: 10px;
}
footer .social-media li a {
  color: #ffffff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  background: #060d3c;
}
footer .social-media li a:hover {
  background: var(--primary-color);
}
