/* Home page specific styles (pixel-aligned to screenshot, using tokens) */



.hero {
  background:
    radial-gradient(1100px 520px at -10% -10%, color-mix(in srgb, var(--color-accent) 50%, transparent), transparent 60%),
    linear-gradient(135deg, color-mix(in srgb, var(--color-accent) 25%, var(--color-white)), var(--color-surface));
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__content {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-2xl) 0;
}

.hero__title {
  font-size: var(--font-size-display);
  line-height: 1.15;
  letter-spacing: 0.2px;
  font-family: var(--font-serif-accent);
}

.hero__title-accent {
  color: var(--color-primary);
}

.hero__bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md) var(--space-xl);
  color: var(--color-text);
  list-style: none;
  padding-left: 0;
}

.hero__bullet {
  position: relative;
  padding-left: calc(var(--space-lg) + 4px);
  list-style: none;
}

.hero__bullet::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 22%, transparent);
}

.hero__actions {
  margin-top: var(--space-md);
}

.hero__actions .btn {
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.btn--primary {
  padding: calc(var(--space-sm) + 2px) var(--space-lg);

  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition:
    background 0.22s cubic-bezier(.77, 0, .18, 1),
    color 0.22s cubic-bezier(.77, 0, .18, 1),
    box-shadow 0.22s cubic-bezier(.77, 0, .18, 1),
    transform 0.18s cubic-bezier(.77, 0, .18, 1);
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--color-secondary);
  /* Slightly lighter blue */
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: scale(1.06) translateY(-2px);
}

/* Right media: mock browser with top bar overlay */
.mock-browser {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.mock-browser__topbar {
  width: 100%;
  display: block;
}

.mock-browser__viewport {
  aspect-ratio: 16 / 10;
  background: #000;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Services */
.services__title {
  font-family: var(--font-serif-accent);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.375rem);
}

.services__title-accent {
  color: var(--color-primary);
}

.services__subtitle {
  max-width: 72ch;
  margin: var(--space-sm) auto 0;
}

/* Mobile-only view-all link (appears when services become carousel) */
.services__view-all-link {
  display: none;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  align-self: flex-end;
}

.services__view-all-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 1.2em;
  /* leave space for arrow */
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.services__view-all-link:hover::after,
.services__view-all-link:focus-visible::after {
  transform: scaleX(1);
}

/* Show link on small screens and push it to the far right */
@media (max-width: 640px) {
  .services__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
  }

  /* Order children so text comes before the CTA link */
  .services__header .services__title { order: 1; }
  .services__header .services__subtitle { order: 2; }
  .services__header .services__view-all-link { order: 3; }

  .services__view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: var(--space-sm);
  }
}

.services__grid {
  margin-top: var(--space-2xl);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  align-items: stretch; /* ensure grid items (cards) are same height per row */
}

@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-lg);
  display: grid;
  grid-template-rows: auto auto 1fr auto; /* icon, title, text grows, button at bottom */
  gap: var(--space-sm);
  transition:
    box-shadow 0.25s cubic-bezier(.4, 0, .2, 1),
    border-color 0.2s,
    transform 0.25s cubic-bezier(.4, 0, .2, 1);
  height: 100%;
}

.service-card .btn {
  width: 100%;
  border-radius: 2rem;
  padding: 0.9rem 1.25rem;
  min-height: 48px;
  text-align: center;
  transition: background 0.22s cubic-bezier(.77, 0, .18, 1),
                color 0.22s cubic-bezier(.77, 0, .18, 1),
                border-color 0.22s cubic-bezier(.77, 0, .18, 1),
                box-shadow 0.22s cubic-bezier(.77, 0, .18, 1);
  border: 2px solid var(--color-primary);
  margin-top: auto; /* push the button to the bottom of the card */
}

.service-card__icon {
  font-size: 32px;
  opacity: 0.9;
  color: var(--color-dark);
  justify-self: center;
  margin-bottom: var(--space-xs);
}

.service-card__title {
  font-family: var(--font-serif-accent);
  font-size: 1.125rem;
}

.service-card__link {
  color: var(--color-primary);
}

.service-card--cta {
  text-align: left;
  display: grid;
  align-content: start;
  gap: var(--space-md);
}


/* Hover effect (blue background, white text) */
.service-card:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border));
  box-shadow: var(--shadow-md);
}

.service-card:hover .service-card__icon,
.service-card:hover .service-card__link,
.service-card:hover .service-card__title,
.service-card:hover .service-card__text {
  color: var(--color-white);
}

.service-card:hover .btn {
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Ensure accent-colored spans turn white on hover */
.service-card:hover .services__title-accent {
  color: var(--color-white);
}

/* Mobile 3D carousel for services */
@media (max-width: 640px) {
  .services__grid.services--carousel {
    display: block;
    position: relative;
    perspective: 1000px;
    height: auto;
    padding-bottom: var(--space-xl);
  }

  .services__grid.services--carousel .service-card {
    position: absolute;
    left: 50%;
    transform-style: preserve-3d;
    width: calc(100% - 2 * var(--space-sm));
    max-width: 420px;
    will-change: transform, opacity;
    cursor: pointer;
  }

  /* Depth positions */
  .services__grid.services--carousel .service-card.is-center {
    transform: translateX(-50%) translateZ(0) scale(1);
    z-index: 3;
    opacity: 1;
    box-shadow: var(--shadow-md);
  }

  .services__grid.services--carousel .service-card.is-left {
    transform: translateX(calc(-50% - 55%)) translateZ(-140px) rotateY(8deg) scale(0.92);
    z-index: 2;
    opacity: 0.8;
  }

  .services__grid.services--carousel .service-card.is-right {
    transform: translateX(calc(-50% + 55%)) translateZ(-140px) rotateY(-8deg) scale(0.92);
    z-index: 2;
    opacity: 0.8;
  }

  .services__grid.services--carousel .service-card.is-back {
    transform: translateX(-50%) translateZ(-260px) scale(0.86);
    z-index: 1;
    opacity: 0.0;
    pointer-events: none;
  }

  /* Smooth transitions */
  .services__grid.services--carousel .service-card {
    transition: transform 450ms cubic-bezier(.4, 0, .2, 1), opacity 300ms ease, box-shadow 250ms ease;
  }
}



/*Why choose styling*/

.why-choose {
  padding: 3rem 0;
  background: var(--background-color);
}

.why-choose__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose__content {
  flex: 1 1 350px;
  min-width: 320px;
  margin-left: 15px;
}

.why-choose__title {
  font-size: 2.5rem;
  font-family: var(--font-family);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.why-choose__highlight {
  color: var(--primary-color);
}

.why-choose__subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.why-choose__image {
  width: 100%;
  max-width: 510px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

.why-choose__stack {
  flex: 2 1 500px;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 600px;
  overflow: visible;
}

.why-choose__card {
  cursor: pointer;
  transition:
    box-shadow 0.35s cubic-bezier(.4, 0, .2, 1),
    transform 0.35s cubic-bezier(.4, 0, .2, 1),
    border-color 0.35s cubic-bezier(.4, 0, .2, 1);
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
}

.why-choose__card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 0;
}

.why-choose__card:hover::before,
.why-choose__card.active::before {
  opacity: 1;
}

.why-choose__card:hover,
.why-choose__card.active {
  z-index: 20 !important;
  transform: scale(1.04) translateY(-10px) rotate(-1deg);
  border-color: var(--color-primary);
  box-shadow: 0 12px 32px 0 rgba(12, 65, 96, 0.13), 0 0 0 4px var(--color-accent);
}

.why-choose__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.why-choose__card-header .why-choose__icon {
  opacity: 0;
  transform: scale(0.7) rotate(-20deg);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  margin-right: 0.5rem;
}

.why-choose__card:hover .why-choose__icon,
.why-choose__card.active .why-choose__icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.why-choose__card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), padding 0.3s;
  padding: 0 1.5rem;
  opacity: 0.7;
}

.why-choose__card:hover .why-choose__card-content,
.why-choose__card.active .why-choose__card-content {
  max-height: 300px;
  padding: 1.2rem 1.5rem;
  opacity: 1;
}

.why-choose__card-title {
  transition: color 0.3s;
}

.why-choose__card:hover .why-choose__card-title,
.why-choose__card.active .why-choose__card-title {
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .why-choose__stack {
    grid-template-columns: 1fr !important;
  }

  .why-choose__card {
    margin-bottom: 1.2rem !important;
    transform: none !important;
  }
}



/* --- Why Choose Interactive Accordion --- */
.why-choose__container--split {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
}

.why-choose__accordion {
  flex: 1 1 420px;
  min-width: 340px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose__card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(12, 65, 96, 0.07);
  border: 2px solid #E0E0E0;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
}

.why-choose__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark, #1a2233);
  position: relative;
  z-index: 2;
}

.why-choose__icon {
  font-size: 1.7rem;
  transition: transform 0.3s;
  filter: drop-shadow(0 2px 8px rgba(6, 109, 204, 0.08));
}

.why-choose__arrow {
  margin-left: auto;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='none' stroke='%23066dcc' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center/1.5rem no-repeat;
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
  opacity: 0.7;
}

.why-choose__card[aria-expanded="true"] .why-choose__arrow {
  transform: rotate(90deg);
}

.why-choose__card[aria-expanded="true"] {
  border-color: var(--color-primary, #066dcc);
  box-shadow: 0 8px 32px 0 rgba(6, 109, 204, 0.13), 0 0 0 4px var(--color-accent, #eaf3fb);
  transform: scale(1.03) translateY(-4px);
  z-index: 2;
}

.why-choose__card:focus-visible {
  border-color: var(--color-primary, #066dcc);
  box-shadow: 0 0 0 3px var(--color-primary, #066dcc);
}

.why-choose__card-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.5rem;
  font-size: 1rem;
  color: #444;
  background: linear-gradient(90deg, #f8fbff 60%, #f0f6fa 100%);
  transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.4s, padding 0.3s;
}

.why-choose__card[aria-expanded="true"] .why-choose__card-content {
  max-height: 300px;
  opacity: 1;
  padding: 1.2rem 1.5rem 1.5rem 3.2rem;
  transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.4s, padding 0.3s;
}

.why-choose__card-title {
  font-family: var(--font-serif-accent, 'EB Garamond', serif);
  font-size: 1.1rem;
  color: var(--color-dark, #1a2233);
  transition: color 0.3s;
}

.why-choose__card[aria-expanded="true"] .why-choose__card-title,
.why-choose__card:hover .why-choose__card-title {
  color: var(--color-primary, #066dcc);
}

.why-choose__card:hover {
  box-shadow: 0 8px 32px 0 rgba(6, 109, 204, 0.13), 0 0 0 4px var(--color-accent, #eaf3fb);
  border-color: var(--color-primary, #066dcc);
  transform: scale(1.02) translateY(-2px);
}

.why-choose__card:hover .why-choose__icon {
  transform: scale(1.1) rotate(-8deg);
}

@media (max-width: 900px) {
  .why-choose__container--split {
    flex-direction: column;
    gap: 2rem;
  }

  .why-choose__accordion {
    max-width: 100%;
  }
}


/* Center Why Choose content on small screens */
@media (max-width: 900px) {
  .why-choose__content {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .why-choose__title,
  .why-choose__subtitle {
    text-align: center;
  }

  .why-choose__image {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 85%;

  }
}

@media (max-width: 639px) and (min-width: 331px)
{
    .why-choose{
    margin-top:20%;
    }
}

@media (max-width: 330px)
{
    .why-choose{
    margin-top:50%;
    }
}


.cta-next-step {
  margin: 3rem 0 0 0;
  display: flex;
  justify-content: center;
}

.cta-next-step__container {
  position: relative;
  background: var(--color-primary);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  margin: 0 8px 0 8px;
}

.cta-next-step__content {
  z-index: 2;
}

.cta-next-step__title {
  color: #fff;
  font-family: var(--font-serif-accent, 'EB Garamond', serif);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cta-next-step__subtitle {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-next-step__btn, .service-btn {
  background: #fff;
  color: var(--color-primary);
  border-radius: 2rem;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-left: 2rem;

}
.service-btn{
  width: 38%;
}

.cta-next-step__btn:hover,
.cta-next-step__btn:focus, .service-btn:hover, .service-btn:focus {
  text-decoration: none;
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  border: 1px solid white;
}

.cta-next-step__icon {
  font-size: 1.2em;
  margin-left: 0.5em;
  display: inline-flex;
  align-items: center;
}

.cta-next-step__arrow {
  position: absolute;
  left: 35%;
  top: 60%;
  width: 220px;
  height: 60px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  display: none;
}

@media (min-width: 900px) {
  .cta-next-step__arrow {
    display: block;
  }
}

.cta-next-step__circle {
  position: absolute;
  border-radius: 50%;
  background: #0a6dcf;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.cta-next-step__circle--left {
  width: 160px;
  height: 160px;
  left: -60px;
  top: 30px;
}

.cta-next-step__circle--right {
  width: 140px;
  height: 140px;
  right: -50px;
  top: 20px;
}

@media (max-width: 900px) {
  .cta-next-step__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .cta-next-step__btn, .service-btn {
    margin-left: auto;
    align-self: flex-end;
  }

  .cta-next-step__arrow {
    left: 10%;
    top: 70%;
    width: 160px;
    height: 40px;
  }
}




/* How to Begin Section */
.how-to-begin {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-surface) 100%);
  position: relative;
  overflow: hidden;
}

/* Floating decorative elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-element--1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element--2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element--3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
}

.floating-element--4 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.how-to-begin__title {
  font-family: var(--font-serif-accent);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.title-line {
  color: var(--color-text);
  opacity: 0;
  animation: slideInFromTop 0.8s ease-out 0.2s forwards;
}

.title-accent {
  color: var(--color-primary);
  font-size: 1.2em;
  opacity: 0;
  animation: slideInFromTop 0.8s ease-out 0.4s forwards;
}

.title-subtitle {
  color: var(--color-text-muted);
  font-size: 0.8em;
  font-weight: 400;
  opacity: 0;
  animation: slideInFromTop 0.8s ease-out 0.6s forwards;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.how-to-begin__content {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Integrated Timeline Layout */
.how-to-begin__timeline-integrated {
  position: relative;
  /* max-width: 600px; */
  width: 100%;
  padding: 2rem 0;
  margin-left: 0;
}

/* Step Description Panels */
.step-description-panel {
  display: block;
  /* margin: 2rem 0; */
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-description-panel.is-active {
  margin-left: 16%;
  opacity: 1;
  max-height: 500px;
  transform: translateY(0) scale(1);
  padding: 2rem;
}

.step-description-panel.is-closing {
  opacity: 0;
  max-height: 0;
  transform: translateY(-20px) scale(0.95);
  padding: 2rem;
}

.step-description-panel::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-white);
}

.step-description-content {
  text-align: center;
}

.step-description-content .step-title {
  font-family: var(--font-serif-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.step-description-content .step-description {
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.step-description-content .step-button {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.step-description-content .step-button:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Enhanced Timeline Step Interactions */
.timeline-step {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-step:hover {
  transform: translateX(5px);
}

.timeline-step:hover .timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

.timeline-step.is-active .timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary) 40%, transparent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary) 40%, transparent);
  }

  50% {
    box-shadow: 0 0 35px color-mix(in srgb, var(--color-primary) 60%, transparent);
  }

  100% {
    box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary) 40%, transparent);
  }
}

.timeline-step.is-active .timeline-label {
  color: var(--color-primary);
  font-weight: 600;
  transform: translateX(5px);
}

/* Left Side - Enhanced Images with Parallax */
.how-to-begin__images {
  position: relative;
}

.image-container {
  position: relative;
  height: auto;
  width: 100%;
}

.image-stack {
  position: relative;
  height: 100%;
  width: 100%;
}

.image-stack__top {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 400px;
  z-index: 1;
  transition: transform 0.3s ease;
}

.image-stack__top:hover {
  transform: translateY(-10px) scale(1.02);
}

.image-stack__bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 300px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.image-stack__bottom:hover {
  transform: translateY(-5px) scale(1.02);
}

.stack-image {
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.image-stack__top .stack-image {
  border-radius: 90px 20px 20px 20px;
  width: 80%;
}

.image-stack__bottom .stack-image {
  border-radius: 20px 90px 20px 20px;
  width: 75%;
}

/* Image overlays */
.image-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.image-stack__top:hover .image-overlay,
.image-stack__bottom:hover .image-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  display: block;
}

.overlay-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 3;
}

.floating-badge--1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.floating-badge--2 {
  top: 45%;
  left: 5%;
  animation-delay: 1.5s;
}

.floating-badge--3 {
  bottom: 25%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Right Side - Enhanced Steps with Animations */
.how-to-begin__steps {
  position: relative;
  padding-left: 2rem;
}

.steps-timeline {
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), transparent);
  border-radius: var(--radius-pill);
}

.step-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item[data-step="1"] {
  transition-delay: 0.1s;
}

.step-item[data-step="2"] {
  transition-delay: 0.2s;
}

.step-item[data-step="3"] {
  transition-delay: 0.3s;
}

.step-item[data-step="4"] {
  transition-delay: 0.4s;
}

.step-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item:hover {
  transform: translateX(0);
}

.step-connector {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-line {
  width: 3px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}

.step-dot {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.step-item:hover .step-dot {
  background: var(--color-primary);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(12, 65, 96, 0.2);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 3;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.step-content {
  flex: 1;
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-serif-accent);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.step-item:hover .step-title {
  color: var(--color-primary);
}

.step-description {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.step-item:hover .step-description {
  color: var(--color-text-muted);
}

/* Active expansion for right-side details */
.step-item.is-active .step-content {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.35s ease, transform 0.35s ease;
}

/* Click entrance animation for newly-activated right step */
.step-item.is-active.was-clicked {
  animation: stepPopIn 420ms cubic-bezier(.4, 0, .2, 1);
}

@keyframes stepPopIn {
  0% {
    transform: scale(0.98);
    filter: brightness(0.98);
  }

  60% {
    transform: scale(1.02);
    filter: brightness(1.02);
  }

  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.step-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border: none;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.step-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.step-button:hover::before {
  left: 100%;
}

.step-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.button-text {
  position: relative;
  z-index: 1;
}

.button-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.step-button:hover .button-arrow {
  transform: translateX(5px);
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .how-to-begin__content {
    padding: 0 1rem;
    justify-content: flex-start;
  }

  .how-to-begin__timeline-integrated {
    max-width: 500px;
  }

  .how-to-begin__title {
    font-size: 2.5rem;
  }

  .image-container {
    height: 500px;
  }

  .image-stack__top {
    height: 350px;
  }

  .image-stack__bottom {
    height: 250px;
  }

  .floating-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .how-to-begin {
    padding: 4rem 0;
  }

  .how-to-begin__content {
    padding: 0 0.5rem;
    justify-content: flex-start;
  }

  .how-to-begin__timeline-integrated {
    max-width: 100%;
    padding: 1rem 0;
  }

  .step-description-panel {
    margin: 1.5rem 0;
  }

  .step-description-panel.is-active {
    padding: 1.5rem;
  }

  .how-to-begin__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .title-decoration {
    margin-top: 1rem;
  }

  .decoration-line {
    width: 40px;
  }

  .how-to-begin__images {
    order: 2;
  }

  .how-to-begin__steps {
    order: 1;
    padding-left: 1.5rem;
  }

  .image-container {
    height: 450px;
  }

  .image-stack__top {
    height: 300px;
  }

  .image-stack__bottom {
    height: 200px;
  }

  .floating-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .step-item {
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .step-number {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .step-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .how-to-begin {
    padding: 3rem 0;
  }

  .how-to-begin__content {
    justify-content: flex-start;
  }

  .how-to-begin__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .title-decoration {
    margin-top: 0.75rem;
  }

  .decoration-line {
    width: 30px;
  }

  .step-description-panel {
    margin: 1rem 0;
  }

  .step-description-panel.is-active {
    padding: 1rem;
  }

  .step-description-content .step-title {
    font-size: 1.25rem;
  }

  .step-description-content .step-description {
    font-size: 0.9rem;
  }

  .steps-timeline::before {
    left: 1rem;
  }

  .image-container {
    height: 400px;
  }

  .image-stack__top {
    height: 250px;
  }

  .image-stack__bottom {
    height: 180px;
  }

  .floating-badge {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }

  .step-item {
    margin-bottom: 1.5rem;
    gap: 0.75rem;
  }

  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .step-title {
    font-size: 1.125rem;
  }

  .step-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Feature Cards Section */
.feature-cards {
  margin: 4rem 0 2.5rem 0;
  text-align: center;
}

.feature-cards__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark, #222);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-cards__title-accent {
  color: var(--color-primary, #066dcc);
}

.feature-cards__subtitle {
  color: var(--color-text, #444);
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  perspective: 1200px;
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 350px;
  position: relative;
}

.feature-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
  transform-style: preserve-3d;
}

.feature-card:hover .feature-card__inner,
.feature-card:focus-within .feature-card__inner {
  transform: rotateY(180deg);

}

.feature-card__front,
.feature-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(6, 109, 204, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2.2rem 2rem 2rem 2rem;
  transition: box-shadow 0.2s;
  border: 1.5px solid var(--color-primary, #066dcc);
}

.feature-card__front {
  z-index: 2;
}

.feature-card__back {
  transform: rotateY(180deg);
  z-index: 3;
  justify-content: center;
  align-items: flex-start;
}

.feature-card__badge {
  background: rgba(6, 109, 204, 0.10);
  color: var(--color-primary, #066dcc);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif-accent, 'EB Garamond', serif);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.feature-card__heading {
  font-family: var(--font-serif-accent, 'EB Garamond', serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark, #222);
  line-height: 1.22;
}

.feature-card__desc {
  color: var(--color-text, #444);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.feature-card__back .feature-card__heading {
  margin-bottom: 1rem;
  /* Adds vertical space between heading and paragraph */
}




@media (max-width: 1200px) {
  .feature-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}






@media (max-width: 1000px) {
  .feature-cards__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-card {
    min-height: 320px;
  }

  .feature-card__inner {
    min-height: 300px;
  }

  .feature-card__front,
  .feature-card__back {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-cards__title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .feature-cards__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .feature-cards__grid {
    gap: 1.5rem;
  }

  .feature-card {
    min-height: 280px;
  }

  .feature-card__inner {
    min-height: 250px;
  }

  .feature-card__front,
  .feature-card__back {
    padding: 1.5rem;
  }

  .feature-card__heading {
    font-size: 1.1rem;
  }

  .feature-card__badge {
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .feature-cards {
    margin: 3rem 0 2rem 0;
  }

  .feature-cards__title {
    font-size: 1.75rem;
  }

  .feature-cards__grid {
    gap: 1rem;
  }

  .feature-card {
    min-height: 260px;
  }

  .feature-card__inner {
    min-height: 230px;
  }

  .feature-card__front,
  .feature-card__back {
    padding: 1.25rem;
  }

  .feature-card__heading {
    font-size: 1rem;
  }

  .feature-card__desc {
    font-size: 0.9rem;
  }
}

/* Construction Estimating Projects Section */
.client-projects {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-white) 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

.projects-title {
  font-family: var(--font-serif-accent);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.title-main {
  color: var(--color-text);
  opacity: 0;
  animation: slideInFromTop 0.8s ease-out 0.2s forwards;
}

.title-accent {
  color: var(--color-text-muted);
  display: block;
  margin-top: 0.125rem;
  opacity: 0;
  animation: slideInFromTop 0.8s ease-out 0.4s forwards;
}

.title-highlight {
  color: var(--color-primary);
  font-size: 1.3em;
  opacity: 0;
  animation: slideInFromTop 0.8s ease-out 0.6s forwards;
}

.projects-description {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideInFromTop 0.8s ease-out 0.8s forwards;
}

.cta-container {
  margin-top: 2rem;
}

.explore-btn {
  position: relative;
  /* background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); */
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.explore-btn:hover .btn-shine {
  left: 100%;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.explore-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Decorative Elements */
.header-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.decoration-circle--1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.decoration-circle--2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

.decoration-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.3;
  animation: expandLine 2s ease-out 1.5s forwards;
}

.decoration-line--1 {
  width: 100px;
  height: 2px;
  top: 30%;
  left: 5%;
  transform: rotate(-15deg);
  transform-origin: left center;
}

.decoration-line--2 {
  width: 80px;
  height: 2px;
  bottom: 20%;
  right: 10%;
  transform: rotate(15deg);
  transform-origin: right center;
}

/* Projects Gallery */
.projects-gallery {
  margin: 4rem 0;
  position: relative;
}

.gallery-container {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.gallery-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Project Cards */
.project-card {
  flex: 0 0 400px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(12, 65, 96, 0.9), rgba(115, 143, 167, 0.8));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.project-card:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-card:hover .overlay-content {
  transform: translateY(0);
}

.project-name {
  font-family: var(--font-serif-accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-type {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.project-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.stat {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.card-content {
  padding: 1.5rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-card:hover .tag {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Gallery Controls */
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.control-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-primary);
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.control-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Achievement Badges */
.achievement-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 160px;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

.badge--experience .badge-icon {
  animation-delay: 0s;
}

.badge--clients .badge-icon {
  animation-delay: 0.5s;
}

.badge--accuracy .badge-icon {
  animation-delay: 1s;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.badge-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .projects-title {
    font-size: 2.5rem;
  }

  .project-card {
    flex: 0 0 350px;
  }

  .achievement-badges {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .client-projects {
    padding: 4rem 0;
  }

  .projects-title {
    font-size: 2rem;
  }

  .projects-description {
    font-size: 1rem;
  }

  .gallery-track {
    gap: 1.5rem;
  }

  .project-card {
    flex: 0 0 300px;
  }

  .card-image {
    height: 220px;
  }

  .gallery-controls {
    gap: 1.5rem;
  }

  .achievement-badges {
    gap: 1.5rem;
    justify-content: center;
  }

  .badge {
    min-width: 140px;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .projects-title {
    font-size: 1.75rem;
  }

  .gallery-track {
    gap: 1rem;
  }

  .project-card {
    flex: 0 0 280px;
  }

  .card-image {
    height: 200px;
  }

  .overlay-content {
    padding: 1.5rem;
  }

  .project-name {
    font-size: 1.25rem;
  }

  .achievement-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .badge {
    min-width: 200px;
  }
}

/* Testimonials Section - Dark Theme Design */
.testimonials {
  background: #1a1a1a;
  padding: 4rem 0;
  color: #ffffff;
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Layout */
.testimonials-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-label {
  color: #9fb6c6;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.header-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 400px;
}

.section-description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.quote-btn {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.quote-btn:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Removed vertical separator line for 3-column layout */

/* Testimonial Cards */
.testimonial-card {
  background: #2a2a2a;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #444444;
  transition: all 0.3s ease;
}

/* Testimonial text blocks without borders (as shown in image) */
.testimonial-card--quote {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.testimonial-card--quote .testimonial-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Profile Cards */
.testimonial-card--profile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #555555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  border: 1px solid #666666;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.client-name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.client-title {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.testimonial-divider {
  border: none;
  height: 1px;
  background: #444444;
  margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }


  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonials .container {
    padding: 0 1rem;
  }

  .testimonials-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }
}


/* --- Contact Discuss Section --- */
.contact-discuss-section {
  background: #f8f9fa;
  padding: 6rem 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.contact-discuss-section:hover {
  transform: translateY(-2px);
}

.contact-discuss-section:hover .contact-discuss__container {
  box-shadow: 0 20px 60px rgba(17, 68, 91, 0.25);
}

.contact-discuss__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  border-radius: 24px;
  margin: 0 2rem;
  background: var(--color-primary, #11445b);
  box-shadow: 0 12px 40px rgba(17, 68, 91, 0.15);
  transition: all 0.3s ease;
}

.contact-discuss__content {
  max-width: 600px;
  z-index: 2;
}

.contact-discuss__title {
  font-family: var(--font-serif-accent);
  font-size: 2.5rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: 0.2px;
  animation: fadeInLeftDiscuss 1s cubic-bezier(.4, 0, .2, 1);
}

@keyframes fadeInLeftDiscuss {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-discuss__desc {
  color: #e4f2fa;
  font-size: 1.18rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  animation: fadeInLeftDiscuss 1.2s cubic-bezier(.4, 0, .2, 1) 0.2s backwards;
}

.contact-discuss__btn {
  font-size: 1.08rem;
  padding: 0.9em 2.5em;
  border-radius: 2em;
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(12, 65, 96, 0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  border: none;
  outline: none;
  animation: fadeInLeftDiscuss 1.3s cubic-bezier(.4, 0, .2, 1) 0.4s backwards;
}

.contact-discuss__btn:hover,
.contact-discuss__btn:focus {
  background: var(--color-accent, #f7c873);
  color: var(--color-dark, #0a2233);
  box-shadow: 0 8px 32px rgba(12, 65, 96, 0.16);
  transform: translateY(-2px) scale(1.04);
}

/* Decorative Elements */
.contact-discuss__decor {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 45%;
  min-width: 320px;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
}

.contact-discuss__circle {
  display: block;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-bottom: 2.5rem;
  margin-right: 2.5rem;
  animation: discussCircleFloat 4s ease-in-out infinite alternate;
}

@keyframes discussCircleFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-18px);
  }
}

.contact-discuss__wave {
  width: 160px;
  height: 48px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.13);
  border-radius: 0 0 80px 80px;
  margin-right: 2.5rem;
  opacity: 0.7;
  animation: discussWaveMove 5s ease-in-out infinite alternate;
}

@keyframes discussWaveMove {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(1.08);
  }
}

.contact-discuss__arrow {
  display: none;
  /* Hide if not needed, or style as a floating arrow */
}

/* Discuss Section Floating Card */
.contact-discuss__card {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(12, 65, 96, 0.13);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 320px;
  margin: 0 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  gap: 1.1rem;
  position: relative;
  z-index: 3;
  animation: discussCardIn 1.2s cubic-bezier(.4, 0, .2, 1) 0.5s backwards;
}

.contact-discuss__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(12, 65, 96, 0.2);
}

@keyframes discussCardIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.discuss-card__icon {
  font-size: 2.2rem;
  color: var(--color-accent, #f7c873);
  margin-bottom: 0.5rem;
  animation: discussIconPop 0.8s cubic-bezier(.4, 0, .2, 1) 0.7s backwards;
}

@keyframes discussIconPop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.discuss-card__quote {
  font-size: 1.08rem;
  font-style: italic;
  color: var(--color-dark, #0a2233);
  line-height: 1.5;
}

.discuss-card__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.97rem;
  color: var(--color-secondary, #3e6b8b);
  font-weight: 500;
}

.discuss-card__avatar {
  font-size: 1.3rem;
  margin-right: 0.3rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .contact-discuss-section {
    padding: 4rem 0;
    min-height: 50vh;
  }

  .contact-discuss__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    padding: 3rem 2rem;
    margin: 0 1rem;
    border-radius: 20px;
  }

  .contact-discuss__content {
    max-width: 100%;
  }

  .contact-discuss__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact-discuss__desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .contact-discuss__btn {
    font-size: 1rem;
    padding: 0.8em 2em;
    width: 100%;
    max-width: 300px;
  }

  .contact-discuss__card {
    margin: 1.5rem 0 0 0;
    max-width: 100%;
    padding: 1.5rem;
    order: -1;
  }

  .contact-discuss__decor {
    display: none;
  }
}

@media (max-width: 600px) {
  .contact-discuss-section {
    padding: 3rem 0;
    min-height: 40vh;
  }

  .contact-discuss__container {
    padding: 2.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 16px;
  }

  .contact-discuss__title {
    font-size: 1.75rem;
  }

  .contact-discuss__desc {
    font-size: 1rem;
  }
}



/* --- How to Begin Timeline --- */
.how-to-begin__timeline {
  position: relative;
  min-width: 180px;
  padding: 1.5rem 0 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.timeline-vertical {
  position: relative;
  display: flex;
  flex-direction: column;

  min-height: 380px;
  margin-left: 32px;
}



.timeline-progress {
  border: solid 8px var(--color-primary);
  position: absolute;
  left: -11%;
  width: 33%;
  height: calc(85%);
  border-radius: calc(74%);
  border-left: none;
  border-top: none;
  border-bottom: none;
}

@media (max-width: 1024px) and (min-width: 899px) {
  .timeline-progress {
    width:49%;
  }
}
@media (max-width: 900px)  and (min-width: 769px){
  .timeline-progress {
    width:43%;
  }
}
@media (max-width: 768px){
  .timeline-progress {
    width:36%;
  }
}

@keyframes timelineGrow {
  from {
    height: 0;
  }

  to {
    height: calc(100% - 32px);
  }
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 18px;
  opacity: 0;
  transform: translateX(-30px) scale(0.97);
  animation: timelineStepIn 0.7s cubic-bezier(.4, 0, .2, 1) forwards;
}

.timeline-step[data-step="1"] {
  animation-delay: 0.1s;
}

.timeline-step[data-step="2"] {
  animation-delay: 0.3s;
  margin-left: 11%
}

.timeline-step[data-step="3"] {
  animation-delay: 0.5s;
  margin-left: 12%
}

.timeline-step[data-step="4"] {
  animation-delay: 0.7s;
}

@keyframes timelineStepIn {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.timeline-dot {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(17, 68, 91, 0.13), 0 1.5px 0.5px rgba(17, 68, 91, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-white);
  font-weight: 700;
  position: relative;
  z-index: 2;
  /* margin-bottom: 0.3rem; */
  transition: background 0.2s, box-shadow 0.2s;
}

.timeline-dot span {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-serif-accent, 'EB Garamond', serif);
  letter-spacing: 1px;
}

.timeline-step:hover .timeline-dot,
.timeline-step:focus-within .timeline-dot {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(17, 68, 91, 0.18);
}

.timeline-label {
  margin-left: 60px;
  margin-top: -43px;
  font-size: 1.13rem;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--color-white);
  padding: 0.4em 1.1em;
  border-radius: 1.2em;
  box-shadow: 0 2px 8px rgba(17, 68, 91, 0.07);
  min-width: 120px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
  animation: timelineLabelIn 0.7s cubic-bezier(.4, 0, .2, 1) forwards;
}


.timeline-step[data-step="1"] .timeline-label {
  animation-delay: 0.18s;
  border: 1px solid var(--color-border);
}

.timeline-step[data-step="2"] .timeline-label {
  animation-delay: 0.38s;
  border: 1px solid var(--color-border);
}

.timeline-step[data-step="3"] .timeline-label {
  animation-delay: 0.58s;
  border: 1px solid var(--color-border);
}

.timeline-step[data-step="4"] .timeline-label {
  animation-delay: 0.78s;
  border: 1px solid var(--color-border);
}

@keyframes timelineLabelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-step:hover .timeline-label,
.timeline-step:focus-within .timeline-label {
  background: var(--color-primary);
  color: var(--color-white);
}

/* --- Floating Emoji Animations --- */
.timeline-float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.75;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 2px 8px rgba(17, 68, 91, 0.09));
  animation: floatEmoji 3.5s ease-in-out infinite alternate;
}

.timeline-float--1 {
  left: -40px;
  top: 10px;
  animation-delay: 0.2s;
}

.timeline-float--2 {
  left: 10px;
  top: 120px;
  animation-delay: 0.7s;
}

.timeline-float--3 {
  left: -30px;
  top: 220px;
  animation-delay: 1.2s;
}

.timeline-float--4 {
  left: 20px;
  top: 320px;
  animation-delay: 1.7s;
}

@keyframes floatEmoji {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-18px) scale(1.08);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .how-to-begin__timeline {
    min-width: 120px;
    padding: 1rem 0 1rem 0.2rem;
  }

  .timeline-label {
    min-width: 80px;
    font-size: 1rem;
    margin-left: 48px;
    padding: 0.3em 0.7em;
  }

  .timeline-dot {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .timeline-vertical {
    margin-left: 18px;
    min-height: 260px;
  }

  .timeline-float {
    font-size: 1.3rem;
  }
}


.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .topbar__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .topbar__item {
    font-size: 1rem;
  }

  .topbar__item+.topbar__item {
    margin-top: 0.5rem;
  }

  .topbar__item:not(:has(i))+.topbar__item {
    margin-top: 0.25rem;
  }
}

/* === How to Begin: Active State Sync Overrides === */
.timeline-step.is-active .timeline-dot {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(17, 68, 91, 0.22);
}

.timeline-step.is-active .timeline-label {
  background: var(--color-primary);
  color: var(--color-white);
}

.timeline-step.is-complete .timeline-dot {
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 0.95;
}

/* Pulse ring when a timeline step becomes active */
.timeline-step.is-active .timeline-dot {
  position: relative;
}

.timeline-step.is-active .timeline-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--color-primary) 45%, transparent);
  animation: ringPulse 700ms ease-out;
}

@keyframes ringPulse {
  from {
    opacity: 0.7;
    transform: scale(0.8);
  }

  to {
    opacity: 0;
    transform: scale(1.25);
  }
}

.step-item.is-active .step-number {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}

.step-item.is-active .step-title {
  color: var(--color-primary);
}

.step-item.is-active .step-description {
  color: var(--color-text);
}



/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  color: var(--color-white);
}

.testimonials__header {
  margin-bottom: 3rem;
}

.testimonials__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1rem;
}

.testimonials__title {
  font-family: var(--font-serif-accent);
  font-size: 2.25rem;
  font-weight: 700;
}

.testimonials__cta {
  max-width: 400px;
  text-align: right;
  font-size: 0.95rem;
  color: #ccc;
}

/* Scroll wrapper */
.testimonials__wrapper {
  position: relative;
  height: 500px;
  /* visible window */
  overflow: hidden;
}

.testimonials__track {
  animation: scrollUpDown 10s linear infinite alternate;
}

.testimonials__grid {
  columns: 3;
  column-gap: 1.5rem;
  column-fill: balance;
}

/* Card */
.testimonial {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.testimonial__avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.testimonial__name {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.testimonial__name span {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

/* Testimonial Size Variations */
.testimonial--small {
  padding: 1rem;
}

.testimonial--small .testimonial__avatar {
  width: 35px;
  height: 35px;
}

.testimonial--small .testimonial__text {
  font-size: 0.85rem;
}

.testimonial--small .testimonial__name {
  font-size: 0.9rem;
}

.testimonial--medium {
  padding: 1.25rem;
}

.testimonial--large {
  padding: 1.75rem;
  border-width: 2px;
}

.testimonial--large .testimonial__avatar {
  width: 55px;
  height: 55px;
}

.testimonial--large .testimonial__text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial--large .testimonial__name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials__grid {
    columns: 1;
    column-gap: 0;
  }
  
  .testimonial {
    margin-bottom: 1rem;
    border-radius: 2rem;
    padding: 1.5rem;
  }
  
  /* Reset size variations on mobile for consistency */
  .testimonial--small,
  .testimonial--medium,
  .testimonial--large {
    padding: 1.5rem;
    border-width: 1px;
  }
  
  .testimonial--small .testimonial__avatar,
  .testimonial--medium .testimonial__avatar,
  .testimonial--large .testimonial__avatar {
    width: 45px;
    height: 45px;
  }
  
  .testimonial--small .testimonial__text,
  .testimonial--medium .testimonial__text,
  .testimonial--large .testimonial__text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .testimonial--small .testimonial__name,
  .testimonial--medium .testimonial__name,
  .testimonial--large .testimonial__name {
    font-size: 1rem;
  }
}

/* Scrolling keyframes */
@keyframes scrollUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }


}


.get-quote-button {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.get-quote-button:hover {
  background: #fff;
  color: #000;

}



