:root {
  --color-light: #EDE7F6;
  --color-dark: #5B3A70;
  --color-dark-2: #432957;
  --color-text: #2f2338;
  --color-muted: #6f6178;
  --color-white: #ffffff;
  --color-bg: #F8F5FC;
  --shadow-soft: 0 22px 70px rgba(91, 58, 112, .18);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; }

.custom-navbar {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(91, 58, 112, .10);
}

.navbar-brand {
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -.04em;
}

.nav-link {
  color: var(--color-text);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--color-dark);
}

.btn-primary-custom {
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
  color: var(--color-white);
  border-radius: 999px;
  font-weight: 700;
  padding: .78rem 1.35rem;
  box-shadow: 0 14px 28px rgba(91, 58, 112, .23);
  transition: all .25s ease;
}

.btn-primary-custom:hover {
  background: var(--color-dark-2);
  border-color: var(--color-dark-2);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 1px solid rgba(91, 58, 112, .35);
  color: var(--color-dark);
  border-radius: 999px;
  font-weight: 700;
  padding: .78rem 1.35rem;
  transition: all .25s ease;
}

.btn-outline-custom:hover {
  background: var(--color-light);
  color: var(--color-dark-2);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  background:
    radial-gradient(circle at 15% 20%, rgba(91, 58, 112, .16), transparent 28%),
    linear-gradient(135deg, #fbf9ff 0%, var(--color-light) 100%);
  overflow: hidden;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--color-dark);
  background: rgba(91, 58, 112, .10);
  border: 1px solid rgba(91, 58, 112, .16);
  padding: .42rem .85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: var(--color-text);
  letter-spacing: -.055em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 850;
}

h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

p {
  color: var(--color-muted);
  line-height: 1.75;
}

.hero-text {
  font-size: 1.18rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 2rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-stats div {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(91, 58, 112, .10);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.hero-stats strong {
  display: block;
  color: var(--color-dark);
  font-size: 1.25rem;
}

.hero-stats span {
  color: var(--color-muted);
  font-size: .88rem;
}

.hero-image-card {
  border-radius: 38px;
  padding: 1rem;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(91, 58, 112, .12);
  box-shadow: var(--shadow-soft);
}

.hero-image-card img {
  border-radius: 28px;
  width: 100%;
}

.floating-card {
  animation: float 5s ease-in-out infinite;
}

.section-padding {
  padding: 96px 0;
}

.bg-light-custom {
  background: var(--color-light);
}

.rounded-image {
  border-radius: var(--radius-lg);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.signature-box {
  margin-top: 1.5rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border-left: 5px solid var(--color-dark);
  box-shadow: 0 16px 38px rgba(91, 58, 112, .10);
}

.signature-box strong {
  display: block;
  margin-bottom: .4rem;
}

.signature-box span {
  color: var(--color-muted);
}

.section-title {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(91, 58, 112, .10);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: 0 18px 55px rgba(91, 58, 112, .08);
  transition: all .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(91, 58, 112, .15);
}

.service-card img {
  height: 120px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.timeline {
  position: relative;
  padding-left: 1rem;
}
.link-light{
  color: var(--color-light);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(91, 58, 112, .22);
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: .3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-dark);
  box-shadow: 0 0 0 7px rgba(91, 58, 112, .12);
}

.timeline-item span {
  color: var(--color-dark);
  font-weight: 900;
}

.cta-section {
  padding: 40px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-2));
  color: var(--color-white);
  border-radius: 34px;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-soft);
}

.cta-box h2,
.cta-box p {
  color: var(--color-white);
}

.section-tag.light {
  background: rgba(255, 255, 255, .16);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, .22);
}

.contact-list {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  border: 1px solid rgba(91, 58, 112, .14);
}

.contact-list p {
  margin-bottom: .5rem;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(91, 58, 112, .14);
  box-shadow: var(--shadow-soft);
}

.form-control {
  border-radius: 15px;
  border-color: rgba(91, 58, 112, .22);
  padding: .9rem 1rem;
}

.form-control:focus {
  border-color: var(--color-dark);
  box-shadow: 0 0 0 .25rem rgba(91, 58, 112, .15);
}

.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 1.5rem 0;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .28s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}