/* =========================================
   Paws Up K9 Academy — Custom Styles
   ========================================= */

/* ==========================================
   1. TEAM SECTION — Card Style (About + Home)
   ========================================== */
.team-card-section {
  padding: 60px 0;
}
.team-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.team-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 340px;
  flex: 0 0 340px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.team-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 8px 8px 0 0;
}
.team-card-body {
  padding: 24px 20px 20px;
  background: #F5F5F5;
}
.team-card-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.45em;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.team-card-role {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #E0007A;
  display: block;
  margin-bottom: 14px;
}
.team-card-bio {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-card-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.team-card-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #E0007A;
  color: #fff !important;
  font-size: 14px;
  transition: background-color 0.3s;
  text-decoration: none;
}
.team-card-social li a:hover {
  background-color: #1A1A1A;
}
@media (max-width: 767px) {
  .team-card {
    width: 100%;
    flex: 0 0 100%;
    max-width: 360px;
  }
  .team-cards-row {
    gap: 24px;
    padding: 0 15px;
  }
}

/* ==========================================
   2. ABOUT SECTION — Left-align text
   ========================================== */
#aboutus .col-lg-6:first-child {
  text-align: left !important;
}
#aboutus .col-lg-6:first-child .section-heading {
  text-align: left;
}

/* ==========================================
   3. CTA / CALLOUT — Fix dog image position
   ========================================== */
#callout .callout-img {
  position: relative;
  bottom: 0;
  display: block;
  margin: 0 auto;
}
/* Remove skrollr transform on callout dog */
#callout .col-lg-5 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* ==========================================
   4. SERVICE CARDS CAROUSEL — Equal Height + Button
   ========================================== */
.owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}
.owl-carousel .owl-item {
  display: flex !important;
  flex-direction: column;
}
.owl-carousel .owl-item > div {
  display: flex !important;
  flex-direction: column;
  height: 100%;
}
.icon-box.style2 {
  display: flex !important;
  flex-direction: column !important;
  height: 95% !important;
}
.icon-box.style2 p {
  flex: 1 !important;
}
.icon-box.style2 .btn {
  align-self: center;
  margin-top: auto !important;
  min-width: 160px;
}

/* ==========================================
   5. FAQ SECTION — Accordion left, Dog image right
   ========================================== */
.faq-section-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 20px;
}
.faq-accordion-col {
  flex: 1 1 0;
  min-width: 0;
}
.faq-dog-image {
  flex: 0 0 280px;
  max-width: 280px;
  position: sticky;
  top: 120px;
}
.faq-dog-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.13);
}
@media (max-width: 991px) {
  .faq-section-wrapper {
    flex-direction: column;
  }
  .faq-dog-image {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
  }
  .faq-dog-image img {
    max-height: 260px;
    width: auto;
    margin: 0 auto;
    display: block;
  }
}

/* FAQ Accordion styling */
.faq-accordion .card {
  border: 0;
  border-radius: 0;
  background: transparent;
  margin-bottom: 10px;
}
.faq-accordion .card-header {
  padding: 0;
  background: transparent;
  border: 0;
}
.faq-accordion .faq-toggle {
  display: block;
  width: 100%;
  text-align: left;
  background-color: #E0007A;
  color: #ffffff !important;
  padding: 16px 50px 16px 20px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  line-height: 1.4;
}
.faq-accordion .faq-toggle:hover,
.faq-accordion .faq-toggle:focus {
  background-color: #000;
  color: #ffffff !important;
  text-decoration: none;
  outline: none;
}
.faq-accordion .faq-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
  font-size: 18px;
}
.faq-accordion .faq-toggle:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-accordion .card-body {
  background-color: #F5F5F5;
  padding: 18px 25px;
  font-size: 16px;
  line-height: 1.7;
  border-left: 4px solid #E0007A;
  margin-bottom: 2px;
}

/* ==========================================
   6. SERVICE DETAIL PAGES — Spacing & Lists
   ========================================== */
.service-detail-section {
  padding: 60px 0;
}
.service-detail-section .section-heading {
  margin-bottom: 20px;
}
.service-list {
  padding-left: 0;
}
.service-list li {
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 16px;
  list-style: none;
  /* color:#fff; */
}
.service-dark-bg li{
  color:#000;
}
.service-list li i {
  margin-right: 8px;
}

/* Benefit cards */
.benefit-card {
  background-color: #D7D3DD;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
}
.benefit-card .icon-features {
  font-size: 50px;
  margin-bottom: 15px;
}

/* Service CTA banner */
.service-cta-section {
  background-color: #fff;
  padding: 70px 0;
}
.service-cta-section h3 {
  color: #000;
}
.service-cta-section p {
  color: rgba(0, 0, 0, 0.9);
}

/* Outline button for dark backgrounds */
.btn-outline-brand {
  background-color: transparent;
  color: #000 !important;
  border: 2px solid #000;
  border-radius: 0;
  padding: 0 30px;
  display: inline-block;
  text-transform: uppercase;
  line-height: 2.5em;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 16px;
  transition: all ease-in-out 0.3s;
  text-decoration: none;
}
.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background-color: #ffffff;
  color: #E0007A !important;
  text-decoration: none;
}

/* ==========================================
   7. ABOUT PAGE — Mission, Trust, Feature
   ========================================== */
#mission-section {
  padding: 60px 0;
}
#mission-section .lead {
  font-size: 1.2em;
  color: #6D6D6D;
}
#why-trust {
  padding: 60px 0;
}
#why-trust li {
  font-size: 17px;
  color: #6D6D6D;
  list-style: none;
}
#why-trust li i {
  color: #E0007A;
  margin-right: 10px;
}
#why-trust ul {
  padding-left: 0;
}

/* ==========================================
   8. MOBILE OPTIMIZATIONS
   ========================================== */
@media (max-width: 991px) {
  /* Service detail intro — stack image below text */
  .service-detail-section .row.align-items-center .col-lg-5 {
    margin-top: 30px;
  }
  /* Benefit cards full width on mobile */
  .benefit-card {
    margin-bottom: 20px;
  }
  /* CTA section button stacking */
  .service-cta-section .btn,
  .service-cta-section .btn-outline-brand {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 10px auto !important;
    text-align: center;
  }
  /* Callout section dog image hidden on small screens */
  #callout .col-lg-5 {
    display: none;
  }
  #callout .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  /* About section — stack columns */
  #aboutus .col-lg-6 {
    margin-bottom: 20px;
  }
  /* Section headings smaller on mobile */
  .service-detail-section .section-heading h2 {
    font-size: 1.8em !important;
  }
  /* FAQ section full width */
  .faq-accordion .faq-toggle {
    font-size: 15px;
    padding: 14px 44px 14px 16px;
  }
  /* Service list items */
  .service-list li {
    font-size: 15px;
  }
  /* Team cards full width */
  .team-cards-row {
    flex-direction: column;
    align-items: center;
  }
  .team-card {
    width: 100%;
    flex: 0 0 100%;
    max-width: 340px;
  }
  /* Benefit cards */
  .col-lg-4.mb-4 {
    width: 100%;
  }
  /* Mission lead text */
  #mission-section .lead {
    font-size: 1.05em;
  }
}

/* ==========================================
   9. TESTIMONIALS intro paragraph
   ========================================== */
#testimonials > .container > p.text-light {
  font-size: 17px;
  opacity: 0.92;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.list-a{
  color:#000 !important;
}