/* ========== CSS VARIABLES ========== */

:root {
  --primary-gradient: linear-gradient(
    97.81deg,
    #febd8f -3.43%,
    #eb63d3 49.6%,
    #8a87f9 94.42%
  );
  --primary-color: #8a87f9;
}

/* ========== RESET & BASE STYLES ========== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  max-width: 100vw;

  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

p {
  margin-bottom: 1rem;
  color: #374151;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.btn-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: var(--primary-gradient);
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-cta:hover {
  transform: scale(1.05);
}

.section {
  padding-top: 2rem;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .section {
    padding: 1.5rem 0;
  }
}

/* ========== Nav SECTION STYLES ========== */

.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
  box-shadow: none;
}

.sticky-navbar.scrolled {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
  box-shadow: none;
}

.navbar.scrolled {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

/* ========== HERO SECTION STYLES ========== */
#hero-section {
  background-color: #ffffff;
  overflow: hidden;
  min-height: 80vh;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: #111827;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.04);
}

.hero-heading span {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text .description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-img {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: center;
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #hero-section {
    padding: 4rem 1rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-img {
    max-width: 100%;
  }

  .hero-img img {
    max-height: 300px;
  }
}

/* ========== FEATURE SECTION STYLES ========== */

.features {
  padding: 5rem 1rem;
}

.features span {
  color: var(--primary-color);
}

.feature-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.feature-block:last-child {
  border-bottom: none;
}

/* Feature Section Image Class */
/* .features .feature-block .feature-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
} */

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 1rem;
  display: flex;
  align-items: start;
}

.feature-list li i {
  color: #8a87f9;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .feature-block {
    text-align: center;
  }

  .feature-block .feature-list li {
    text-align: start;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .features .feature-block img {
    height: auto;
    object-fit: contain;
    max-height: 350px;
  }
}

@media (max-width: 767px) {
  .features .feature-block img {
    height: auto;
    object-fit: contain;
    max-height: 300px;
  }
}

/* ========== TESTIMONIAL SECTION STYLES ========== */

#testimonialCarousel {
  position: relative;
}

.carousel-indicators {
  position: static;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.5;
  border: none;
  transition: opacity 0.3s, transform 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #000;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
}

.carousel-control-prev {
  left: -50px;
}

.carousel-control-next {
  right: -50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #333;
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.testimonial h2 {
  color: #111827;
  margin-bottom: 0.5rem;
}

.testimonial p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.testimonial .card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  height: 350px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.testimonial .card:hover {
  transform: translateY(-4px);
}

.testimonial .card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.testimonial .name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0;
  color: #111827;
}

.testimonial .position {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial .linkedin {
  font-size: 0.875rem;
  color: var(--primary-color);
  text-decoration: none;
}

.testimonial i {
  font-size: 0.8rem;
}

.testimonial .linkedin:hover {
  text-decoration: underline;
}

.testimonial .card p {
  color: #374151;
  margin-top: 1rem;
}

@media (min-width: 632px) and (max-width: 759px) {
  .testimonial .card {
    height: 380px;
  }
}

@media (min-width: 760px) and (max-width: 991px) {
  .testimonial .card {
    height: 550px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .testimonial .card {
    height: 400px;
  }
}

/* ========== About Us SECTION STYLES ========== */

#about-us {
  padding: 4rem 1rem;
  color: #1f2937;
}

#about-us h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

#about-us .lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
}

#about-us p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

#about-us img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

#about-us .text-muted {
  font-size: 0.9rem;
  color: #6b7280 !important;
}

@media (min-width: 768px) {
  #about-us .lead {
    font-size: 1.25rem;
  }
}

/* ========== FAQ SECTION STYLES ========== */

.faq-section {
  padding: 5rem 0;
}

.faq-wrapper {
  max-width: 720px;

  margin: auto;
}

#faq .accordion-button {
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1.25rem;
  background-color: transparent;
  box-shadow: none;
}

#faq .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e7eb;
}

#faq .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}

#faq .accordion-body {
  font-size: 0.9rem;
  color: #4b5563;
  padding: 1rem 1.25rem;
}

/* ========== METRICS SECTION STYLES ========== */

.metric-wrapper {
  background-color: #f4f4ff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.metric-card {
  background: transparent;
  border-radius: 0;
  padding: 0 1rem;
  box-shadow: none;
  transition: none;
}

.metrics h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metrics h2 i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.metric-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.metric-desc {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .metric-wrapper {
    font-size: 1rem;
    padding: 2rem 0.5rem;
  }
  .metrics h2,
  i {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .metric-wrapper {
    padding: 2rem 1rem;
  }

  .metrics h2 {
    flex-direction: column;
  }

  .metrics h2 i {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }

  .metric-title {
    font-size: 1rem;
  }

  .metric-desc {
    font-size: 0.9rem;
  }
}

/* ========== FINAL CTA SECTION STYLES ========== */

.final-cta {
  position: relative;
  background: #fef9f5;
  padding: 6rem 1rem;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  margin-top: 0px;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(254, 189, 143, 0.1),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(138, 135, 249, 0.15),
      transparent 60%
    );
  z-index: 0;
}

.final-cta h2 {
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.final-cta .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.final-cta p {
  color: #6b7280;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.final-cta .btn-cta {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  background: var(--primary-gradient);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(138, 135, 249, 0.2);
  position: relative;
  z-index: 2;
}

.final-cta .btn-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(138, 135, 249, 0.3);
}

/* ========== FOOTER SECTION STYLES ========== */

footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

footer h5,
footer h6 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

footer p {
  color: #9ca3af;
  line-height: 1.5;
}

footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color);
}

footer .bi {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

footer .bi:hover {
  transform: scale(1.2);
  color: var(--primary-color);
}

footer ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

footer hr {
  border-color: #374151;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

footer .text-center a {
  text-decoration: underline;
  font-weight: 500;
}



/* ========== NEW SECTION: WHATTOSAY ========== */



@media (max-width: 768px) {
  .whattosay {
    text-align: center;
  }

  .whattosay .feature-list li {
    text-align: start;
  }
}
