/* breadcrumbs and local layouts for the implementation subpage */

.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A;
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A;
  font-weight: 600;
  pointer-events: none;
}

/* IMPL HERO SECTION */
.impl-hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 90px 24px;
  background-image: url('assets/hero-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.impl-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(81, 48, 81, 0.82);
  z-index: 1;
}

.impl-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impl-hero-badge-wrapper {
  margin-bottom: 24px;
}

.impl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 16px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge-star {
  color: #F5A623;
}

.impl-hero-title {
  font-family: 'Kalam', cursive;
  font-size: 3.2rem;
  line-height: 1.25;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.impl-hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin-bottom: 36px;
}

.impl-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.impl-btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: #FFFFFF;
  color: #513051;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 1px solid #FFFFFF;
  cursor: pointer;
}

.impl-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.impl-btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: transparent;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  border: 1px solid #513051;
  cursor: pointer;
}

.impl-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Responsive updates for subpage */
@media (max-width: 768px) {
  .impl-hero-section {
    padding: 70px 16px;
    min-height: auto;
  }
  
  .impl-hero-title {
    font-size: 2.3rem;
  }
  
  .impl-hero-description {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }
  
  .impl-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .impl-btn-primary, .impl-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs-section {
    padding: 16px 16px;
  }
  
  .breadcrumbs {
    font-size: 13.5px;
  }
}

/* SERVICES GRID SECTION */
.impl-services-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.impl-services-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.impl-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.impl-services-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.impl-services-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #6B7280;
}

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

.impl-service-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(122, 79, 122, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.impl-card-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: #FAF8FB;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.impl-card-icon-wrapper i {
  font-size: 24px;
  color: #513051;
  transition: color 0.3s ease;
}

.impl-card-title {
  font-family: 'Kalam', cursive;
  font-style: italic;
  font-size: 1.4rem;
  color: #1F2937;
  font-weight: 700;
  margin-bottom: 10px;
}

.impl-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #556070;
}

/* Card Hover Highlight & Icon Color Shifts */
.impl-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 79, 122, 0.15);
  box-shadow: 0 16px 35px rgba(122, 79, 122, 0.12);
}

.impl-service-card:hover .impl-card-icon-wrapper {
  background-color: #7A4F7A;
}

.impl-service-card:hover .impl-card-icon-wrapper i {
  color: #FFFFFF;
}

/* EXCEPTIONAL GROWTH SECTION */
.impl-growth-section {
  background-color: #ffffff;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.impl-growth-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.impl-growth-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.impl-growth-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impl-growth-p {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #556070;
  margin: 0;
}

/* Scroll Animation Styles (Slower rising motion) */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Grid layout media queries and Why Choose styling */
@media (max-width: 900px) {
  .impl-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .impl-services-section, .impl-growth-section {
    padding: 70px 16px;
  }
  
  .impl-services-title, .impl-growth-title {
    font-size: 1.95rem;
  }
}

/* WHY CHOOSE SECTION */
.impl-choose-section {
  background-color: #f8f8f8;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.impl-choose-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.impl-choose-content-col {
  flex: 1.1;
  text-align: left;
}

.impl-choose-image-col {
  flex: 0.9;
}

.impl-choose-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.impl-choose-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #556070;
  line-height: 1.6;
  margin-bottom: 30px;
}

.impl-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.impl-choose-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
}

.why-choose-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
}

.why-choose-image-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(122, 79, 122, 0.08);
}

.why-choose-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-image-wrapper:hover .why-choose-image {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .impl-choose-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .impl-choose-content-col, .impl-choose-image-col {
    width: 100%;
  }
  
  .impl-choose-section {
    padding: 70px 16px;
  }
  
  .impl-choose-title {
    font-size: 1.95rem;
    text-align: center;
  }
  
  .impl-choose-subtitle {
    text-align: center;
    font-size: 0.98rem;
  }
}

/* EXPECTATION BOX */
.impl-expect-box {
  background: #FFFFFF;
  border: 1.5px solid rgba(122, 79, 122, 0.08);
  border-radius: 20px;
  padding: 60px 45px;
  max-width: 1280px;
  margin: 70px auto 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(122, 79, 122, 0.03);
  box-sizing: border-box;
}

.impl-expect-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.impl-expect-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.impl-expect-p {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #556070;
  margin: 0;
}

@media (max-width: 900px) {
  .impl-expect-box {
    margin-top: 40px;
    padding: 40px 20px;
  }
  
  .impl-expect-title {
    font-size: 1.95rem;
  }
  
  .impl-expect-p {
    font-size: 1.08rem;
  }
}

/* CLIENT SUCCESS STORIES TESTIMONIALS SECTION */
.impl-testimonials-section {
  background-color: #FFFFFF;
  padding: 90px 0;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.impl-testimonials-container {
  width: 100%;
}

.impl-testimonials-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

/* Marquee wrapper and tracks styling */
.impl-testimonials-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 30px;
}

.impl-testimonials-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 35s linear infinite;
  flex-shrink: 0;
}

/* Pause animation on hover */
.impl-testimonials-marquee:hover .impl-testimonials-track {
  animation-play-state: paused;
}

/* Testimonial Card layout and design */
.impl-testimonial-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(122, 79, 122, 0.08);
  border-radius: 16px;
  padding: 30px;
  width: 380px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.impl-testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 16px 35px rgba(122, 79, 122, 0.08);
  transform: translateY(-4px);
}

.impl-testi-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #556070;
  font-style: italic;
  margin: 0 0 25px 0;
}

.impl-testi-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.impl-testi-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.impl-testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.impl-testi-name {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem;
  color: #1F2937;
  font-weight: 700;
  margin: 0;
}

.impl-testi-rating {
  display: flex;
  gap: 3px;
  font-size: 12px;
  color: #F5A623;
}

.impl-testi-location {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #8892A0;
}

/* Marquee continuous transition scrolling animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 30px));
  }
}

@media (max-width: 900px) {
  .impl-testimonials-section {
    padding: 70px 0;
  }
  
  .impl-testimonials-title {
    font-size: 1.95rem;
    margin-bottom: 35px;
  }
  
  .impl-testimonial-card {
    width: 320px;
    padding: 24px;
  }
  
  .impl-testi-text {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }
}

/* FREQUENTLY ASKED QUESTIONS SECTION */
.impl-faq-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.impl-faq-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.impl-faq-header {
  text-align: center;
  margin-bottom: 45px;
}

.impl-faq-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: #7A4F7A;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.highlight-underline {
  position: relative;
  display: inline-block;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 8px;
  background-color: #F5A623;
  border-radius: 4px;
}

.impl-faq-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #6B7280;
  max-width: 700px;
  margin: 10px auto 0;
  line-height: 1.5;
}

.impl-faq-list {
  display: flex;
  flex-direction: column;
}

.impl-faq-item {
  border-bottom: 1.5px solid #edf2f7;
}

.impl-faq-item:first-child {
  border-top: 1.5px solid #edf2f7;
}

.impl-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.impl-faq-question-text {
  font-family: 'Kalam', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: #7A4F7A;
  font-style: italic;
  margin: 0;
  transition: color 0.25s ease;
}

.impl-faq-chevron {
  font-size: 12px;
  color: #7A4F7A;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.impl-faq-question:hover .impl-faq-question-text {
  color: #F5A623;
}

.impl-faq-question:hover .impl-faq-chevron {
  color: #F5A623;
}

.impl-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.impl-faq-answer-content {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1rem;
  color: #556070;
  line-height: 1.7;
  padding: 0 0 16px;
  margin: 0;
}

/* Active state styling */
.impl-faq-item.active .impl-faq-chevron {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .impl-faq-section {
    padding: 70px 16px;
  }
  
  .impl-faq-title {
    font-size: 1.95rem;
  }
  
  .impl-faq-question-text {
    font-size: 1.15rem;
  }
  
  .impl-faq-question {
    padding: 14px 0;
  }
  
  .impl-faq-answer-content {
    font-size: 0.95rem;
    padding: 0 0 16px;
  }
}

/* CALL TO ACTION (CTA) SECTION */
.impl-cta-section {
  position: relative;
  width: 100%;
  padding: 100px 24px;
  background-image: url('assets/cta-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.impl-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(81, 48, 81, 0.85); /* Dark purple overlay matching mockup */
  z-index: 1;
}

.impl-cta-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impl-cta-title {
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  line-height: 1.35;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 24px;
}

.highlight-cta-underline {
  position: relative;
  display: inline-block;
}

.highlight-cta-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #D36B6B; /* Soft coral-red highlight line */
  border-radius: 10px;
}

.impl-cta-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-bottom: 35px;
}

.impl-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.impl-cta-btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: #FFFFFF;
  color: #7A4F7A;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 1.5px solid #FFFFFF;
  cursor: pointer;
}

.impl-cta-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.impl-cta-btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background-color: transparent;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.impl-cta-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .impl-cta-section {
    padding: 70px 16px;
  }
  
  .impl-cta-title {
    font-size: 1.95rem;
  }
  
  .impl-cta-description {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }
  
  .impl-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .impl-cta-btn-primary, .impl-cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

