:root {
  --c1: #00b3b3;
  --c2: #ffa200;
  --c3: #6c63ff;
  --text: #222;
  --shadow: 0 3px 18px 0 rgba(20, 80, 170, 0.08);
  --step-bg: #fff;
  --curve-bg: linear-gradient(120deg, #eaf8fd 60%, #f6fafd 100%);
}


.navbar {
  font-family: "Dosis", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 999;
  background: #1c2a39;
  transition: background-color 0.4s ease, padding 0.3s ease;
  box-sizing: border-box;
}



.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ebf5fb;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-links li a:hover {
  color: rgba(229, 229, 229, 0.969);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  transition: transform 0.3s ease;
}


@media (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 8px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.97);
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    padding: 11px 0px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.13);
    line-height: 0;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 7px 4px;
  }
  .nav-links {
    gap: 7px;
  }
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

body {
  background: #f4fdff;
  margin: 0;
  color: var(--text);
  background-image: url("process-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 80px;
}

.title {
  text-align: center;
  margin: 2.5rem 0 2rem 0;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.modern-timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem 1rem 2.5rem 1rem;
}

.curve-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;

  border-radius: 10px;
  pointer-events: none;
  min-height: 1000px;
}


.timeline-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  gap: 2.5rem;
  width: 100%;
}

.step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  background: transparent;
  position: relative;
  min-height: 120px;
}

.circle {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border: 4px solid var(--c1);
  background: #fff;
  border-radius: 50%;
  margin-right: 24px;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 2;

  align-self: flex-start;
}
.step1 .circle,
.step2 .circle {
  border-color: var(--c1);
  color: var(--c1);
}
.step3 .circle,
.step4 .circle {
  border-color: var(--c2);
  color: var(--c2);
}
.step5 .circle {
  border-color: var(--c3);
  color: var(--c3);
}


.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 80px;
  width: 2px;
  height: calc(100% + 32px);
  border-left: 2px dashed #dddddd;
  z-index: 1;
}

.step:last-child::after {
  display: none;
}

.step-content {
  background: var(--step-bg);
  border-radius: 5px;
  box-shadow: 14px 11px 9px 0px rgba(20, 80, 170, 0.08);
  padding: 1.1rem 1.15rem 1rem 1.15rem;
  width: calc(100% - 82px);  
  max-width: 90%;
  text-align: left;
  position: relative;
  border: 1.5px solid #e5f1fa;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  align-self: flex-start;
}

.step-num {
  font-size: 1.18rem;
  font-weight: 700;
  margin-right: 0.7em;
  letter-spacing: 0.03em;
  color: inherit;
  display: inline-block;
}

.step1 .step-num,
.step1 h3,
.step2 .step-num,
.step2 h3 {
  color: var(--c1);
}
.step3 .step-num,
.step3 h3,
.step4 .step-num,
.step4 h3 {
  color: var(--c2);
}
.step5 .step-num,
.step5 h3 {
  color: var(--c3);
}

.step-content h3 {
  font-size: 1.09rem;
  font-weight: 700;
  margin: 0.15rem 0 0.5rem 0;
  letter-spacing: 0.01em;
}

.step-content ul {
  margin: 0 0 0.4rem 1.1rem;
  padding: 0;
}

.step-content li {
  margin-bottom: 0.38rem;
  font-size: 1rem;
  line-height: 1.6;
}

.step-content p {
  font-size: 0.98rem;
  margin-left: 1.1rem;
  margin-bottom: 0.2rem;
}

.whatsapp-float {
  position: absolute;
  right: -2.2rem;
  top: 1.1rem;
  z-index: 2;
  display: inline-block;
  background: none;
  transition: transform 0.2s;
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.step .whatsapp-float:hover {
  transform: scale(1.15) rotate(-10deg);
}

@media (max-width: 700px) {
  .modern-timeline {
    max-width: 98vw;
    padding: 1.2rem 2vw;
  }
  .curve-bg {
    min-height: 1700px;
  }
  .step-content {
    max-width: 97vw;
    padding: 1rem 0.7rem 0.7rem 0.7rem;
    width: calc(100% - 68px); /* 46px circle + 22px margin at mobile */
  }
  .circle {
    width: 46px;
    height: 46px;
    font-size: 1.23rem;
    margin-right: 22px;
    margin-top: 0.4rem;
  }
  .step:not(:last-child)::after {
    left: 18px;
    top: 38px;
    height: calc(100% - 46px + 25px);
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.22rem;
  }
  .step-content {
    padding: 0.85rem 0.6rem 0.6rem 0.7rem;
    width: calc(100% - 58px); /* 36px circle + 22px margin at xs */
  }
  .circle {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
    margin-right: 22px;
    margin-top: 0.2rem;
  }
  .step {
    min-height: 0;
  }
  .step:not(:last-child)::after {
    left: 11px;
    top: 27px;
    height: calc(100% - 36px + 15px);
  }
}



.footer {
  width: 100%;
  background: linear-gradient(90deg, #181e26 0%, #28374c 100%);
  color: #f4f6fb;
  padding-top: 3vw;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
  position: relative;
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  padding: 0 2.5vw;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 180px;
  flex: 1;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 1.1em;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 7px;
}
.footer-col h4::after {
  content: "";
  display: block;
  width: 32px;
  height: 2.5px;
  background: #00b4d8;
  border-radius: 2px;
  margin-top: 3px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  display: flex;
  align-items: flex-start;
}
.footer-col ul li i {
  margin-right: 10px;
  font-size: clamp(1rem, 1.8vw, 1.1em);
  color: #00b4d8;
  margin-top: 2px;
}
.footer-col ul li a {
  color: #e3e8f3;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}
.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: #00b4d8;
  text-decoration: underline;
  outline: none;
}
.footer-divider {
  border: none;
  height: 1px;
  background: #333;
  margin: 0;
  width: 88%;
}
.footer-bottom {
  text-align: center;
  padding: 1em 0 0.6em 0;
  font-size: clamp(0.8rem, 1.2vw, 0.98rem);
  color: #bbb;
  background: #151515;
  letter-spacing: 0.01em;
}


@media (max-width: 1200px) {
  .footer-container {
    max-width: 970px;
    padding-left: 3vw;
    padding-right: 3vw;
    gap: 2vw;
  }
}
@media (max-width: 900px) {
  .footer-container {
    max-width: 700px;
    padding-left: 4vw;
    padding-right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 2vw;
  }
  .footer-col {
    margin-bottom: 1rem;
    width: 100%;
    min-width: 120px;
  }
}
@media (max-width: 700px) {
  .footer-container {
    max-width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .footer-col {
    margin-bottom: 1rem;
  }
  .footer-divider {
    width: 94%;
  }
}
@media (max-width: 600px) {
  .footer {
    padding-top: 20px;
  }
  .footer-container {
    padding: 0 4.5vw;
  }
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.7em;
  }
  .footer-col ul li,
  .footer-col ul li a {
    font-size: 0.85rem;
  }
  .footer-bottom {
    padding: 0.9em 0 0.5em 0;
    font-size: 0.7rem;
  }
}
