* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

body {
  background: #f7f7f7;
}

/* NAVBAR */

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 60px;
  background:white;
  position:relative;
}

/* LOGO */
.logo{
  height: 40px;
  width: auto;
  object-fit: contain;}

/* LINKS */
.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-size:16px;
  transition:0.2s;
}

.nav-links a:hover{
  color:#6c4df6;
}

.nav-links .active{
  color:#6c4df6;
}

/* DOWNLOAD BUTTON */
.download-btn{
  background:linear-gradient(90deg,#6c4df6,#8b6fff);
  color:white;
  border:none;
  padding:12px 26px;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}


.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: none;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 45px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: none;
  overflow: hidden;
  min-width: 140px;
}

.lang-menu div {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-menu div:hover {
  background: #f5f5f5;
}

.lang-menu.show {
  display: block;
}

@media (max-width: 900px){

  .navbar{
    padding:15px 25px;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-right{
    display:none;
  }

  .hamburger{
    display:block;
  }

}


.download-btn {
  text-decoration: none;
  display: inline-block;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 80px;

  /* 👇 your image */
  background: url("../images/banner-desktop.png") no-repeat right center;
  background-size: contain;

  background-color: #e8e2ff; /* left side color */

}

/* CONTENT */
.hero-content {
  max-width: 500px;
  z-index: 2;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
}


/* TEXT */
.hero p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #444;
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(90deg, #6c4df6, #8a6bff);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

/* APPLY */
.apply a {
  color: #6c4df6;
  font-weight: bold;
  text-decoration: none;
}


.hero h1 {
  font-size: 64px;
  line-height: 1.4;
}

/* WORD CONTAINER */
.highlight {
  position: relative;
  display: inline-block;
}

/* PNG CIRCLE */
.circle-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;   /* adjust to fit your circle */
  transform: translate(-50%, -50%);
  pointer-events: none;
}




/* PROFILES */

.profiles {
  padding: 80px 20px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;

  max-width: 1400px;
  margin: 30px auto;
}
.cards {
  justify-items: center;
}

/*.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}*/

.card {
  background: #eee8ff;
  padding: 20px;
  border-radius: 15px;
  width: 200px;
}

.tags span {
  display: inline-block;
  background: white;
  padding: 5px;
  margin: 5px;
  border-radius: 10px;
}

.profiles-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
}

.nanny-card {
  width: 100%;
  max-width: 320px;

  border-radius: 20px;
  overflow: hidden;
  background: #f7f5fb;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-bottom: 20px;
  }

  .nanny-card {
    flex: 0 0 90%;
    scroll-snap-align: center;
  }

.profiles .btn-primary {
  display: block;
  margin: 40px auto 0;
}



/* HEADER */
.card-header {
  background: #c9bfe6;
  padding: 20px;
}

.card-header h2 {
  margin: 0;
  font-size: 24px;
}

.meta {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.divider {
  opacity: 0.5;
}

/* BODY */
.card-body {
  padding: 20px;
}

.card-body h3 {
  margin: 20px 0 10px;
}

/* TAGS */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  background: #f3f0fb;
  border: 1px solid #d7cffa;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 13px;
}

/* FOOTER */
.card-footer {
  background: #c9bfe6;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.card-footer:hover {
  opacity: 0.9;
}

.card-header,
.card-footer {
  background: #cfc6ea;
}

.tags span {
  background: #f8f6ff;
}

/* TESTIMONIAL */
.testimonials {
  display: flex;
  padding: 80px;
  background: #87e1c9;
  position: relative;
  overflow: hidden;
}

/* LEFT SIDE */
.left {
  width: 40%;
}

.left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.controls{
  display:flex;
  gap:20px;
  margin-top:40px;
}

.controls button {
  width:60px;
  height:60px;
  border-radius:50%;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.controls img{
  width:60px;
}

/* CAROUSEL */
.carousel {
  width: 60%;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* CARD */
.card {
  min-width: 350px;
  background: #6bd1b8;
  padding: 30px;
  border-radius: 20px;
/*  opacity: 0.6;*/
  transform: scale(0.9);
  transition: all 0.4s ease;
}

/* ACTIVE CARD */
.card.active {
/*  opacity: 1;*/
  transform: scale(1.05);
/*  background: #79cbb7;*/
}

/* BADGE */
.badge {
  display: inline-block;
  background: black;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* TEXT */
.card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
}

/* ITEM */
.faq-item {
  border: 1px solid #ccc;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
}

/* ICON */
.icon {
  font-size: 24px;
  color: #999;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active {
  background: #f7f7f7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px;
}

.faq-item.active .icon {
  content: "−";
}

.faq-item {
  border: 1px solid #dcdcdc;
  background: #fafafa;
}

.faq-item.active {
  background: #ffffff;
}

/* CONTACT */
.contact-section {
  padding: 100px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #f5f5f5;

  border-top: 1px solid #ddd; /* 👈 this line */
}
.contact-section h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

/* CONTACT LIST */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  color: #333;
}

/* ICON */
.icon {
  font-size: 28px;
  opacity: 0.7;
}

/* FOOTER */
.footer {
  background: #cfc6ea;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;

}

/* LEFT */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo {
  width: 120px;
}

/* TEXT */
.footer-left p {
  font-size: 14px;
  color: #333;
}

/* RIGHT LINKS */
.footer-right {
  display: flex;
  gap: 30px;
}

.footer-right a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.2s;
}

.footer-right a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-right {
    gap: 20px;
  }
}

@media (max-width: 900px) {

   .hero {
    height: auto;
    padding: 100px 24px 650px;

    background-image:
      url("../images/banner-mobile.png");

    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
    padding-bottom: 450px;
  }


  .hero-content {
    max-width: 100%;
    margin: auto;
  }

  .hero h1 {
    font-size: 42px;
    max-width: 420px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-primary {
    margin: 20px auto;
  }

}

@media (max-width: 900px){

  .nav-links{
    position: absolute;
    top: 70px;          /* below navbar */
    left: 0;
    width: 100%;
    background: white;

    flex-direction: column;
    align-items: center;
    gap: 25px;

    padding: 30px 0;

    display: none;
    z-index: 1000;      /* important */
  }

  .nav-links.active{
    display: flex;
  }

}

.navbar{
  position: relative;
  z-index: 2000;
}




.how-steps{
  padding:120px 80px;
  text-align:center;
  background:#fff;
}

.steps-title{
  font-size:44px;
  margin-bottom:100px;
}

/* wrapper */

.steps-wrapper{
  display:flex;
  justify-content:space-between;
  gap:60px;
  position:relative;
  
}

/* dashed timeline */

.steps-wrapper::before{
  /*content:"";
  position:absolute;

  top:70px;
  left:10%;
  width:80%;

  border-top:3px dashed #7c4dff;*/
  background: url("../images/curved-line.png") no-repeat right center;
  background-size: contain;
  /*background-image: <svg class="steps-curve" viewBox="0 0 1200 200" preserveAspectRatio="none">
      <path 
        d="M50 120 Q300 20 550 120 T1050 120"
        class="curve-path"
      />
    </svg>*/
}

.steps-curve{
  position:absolute;
  top:70px;
  left:0;
  width:100%;
  height:200px;
  z-index:0;
}

.curve-path{
  fill:none;
  stroke:#7c4dff;
  stroke-width:4;
  stroke-dasharray:10 10;
}

.step{
  position:relative;
  z-index:2;
}

.steps-wrapper{
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:60px;
}

@media (max-width:900px){

.steps-curve{
  display:none;
}

.steps-wrapper{
  flex-direction:column;
  align-items:center;
  gap:80px;
}

}

/* step */

.step{
  max-width:320px;
  position:relative;
}

/* icon */

.step-icon{
  width:140px;
  height:140px;

/*  background:white;*/
/*  border-radius:50%;*/

  display:flex;
  align-items:center;
  justify-content:center;

  margin:auto;



  z-index:2;
  position:relative;
}

.step-icon img{
  width:120px;
}

/* title */

.step h3{
  margin-top:30px;
  font-size:22px;
}

/* text */

.step p{
  margin-top:10px;
  height:100px;
  color:#555;
  line-height:1.6;
}

/* big number */

.step-number{
  display:block;

  font-size:90px;
  font-weight:800;

  color:#e5e5e5;

  margin-top:40px;
}


@media (max-width:900px){

  .how-steps{
    padding:80px 25px;
  }

  .steps-title{
    font-size:32px;
    margin-bottom:60px;
  }

  .steps-wrapper{
    flex-direction:column;
    align-items:center;
    gap:80px;
  }

  .steps-wrapper::before{
    display:none;
  }

  .step-number{
    font-size:60px;
  }

}

.download-btn {
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  text-decoration: none;
  display: inline-block;
}