body {
  background-color: rgb(6, 10, 3);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;

}

@media (max-width: 991px) {

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

/* Navbar base */
.navbar {
  transition: background-color 0.3s ease;
}

/* Default links: white */
.navbar .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}

/* Active link styling */
.navbar .nav-link.active {
  font-weight: 600;
  text-decoration: underline;
}

/* Scrolled state */
.navbar.scrolled {
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Links turn black when scrolled */
.navbar.scrolled .nav-link {
  color: black !important;
}

/* Logo */
.my-logo {
  max-width: 120px;
  height: auto;
}

@media (min-width: 992px) {
  .my-logo {
    margin-left: -40px;
  }
}

/* Button gradient */
.first-btn {
  background: linear-gradient(135deg,
      rgb(106, 148, 77),
      rgb(162, 201, 120),
      rgb(72, 104, 50));
  color: white;
  /* default text color */
}

/* Button text turns black when scrolled */
.navbar.scrolled .first-btn {
  color: black;
}

/* 2-part */

/* Section spacing */
.secound {
  margin-top: 210px;
}

/* Button styles */
.first-btnn {
  border: 1px solid white;
}

/* Icon color */
.video-icon {
  color: rgb(162, 201, 120);
}

/* Image styles */
.girl-img {
  height: 340px;
  width: 90%;
  border: 1px solid white;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid white;
  box-shadow: 10px 20px 40px rgb(162, 201, 120);

}

/* Responsive adjustments */

/* Mobile (<768px): smaller than full width */
@media (max-width: 767px) {
  .secound {
    margin-top: 130px;
    text-align: center;
  }

  .girl-img {
    width: 85%;
    /* less than 100% */
    height: 255px;
  }

  .first-btnn {
    font-size: 12px;
    /* slightly larger for readability */
  }
}

/* Tablet (768px–991px): full width */
@media (min-width: 768px) and (max-width: 991px) {
  .girl-img {
    width: 100%;
    height: auto;
    /* let height adjust naturally */
  }

}

/* 3-part */

.img-backgroun {
  margin-top: 170px;
  height: 400px;
  background-image: url(photos/like2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.img-backgroun::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* cover full width */
  height: 100%;
  /* cover full height */
  background-color: rgba(10, 15, 13, 0.6);
  z-index: 1;
  /* sits behind text */
}

.img-backgroun .content {
  position: relative;
  z-index: 2;
  /* ensures text is above overlay */
  color: #fff;
  /* full color text */
}

@media (max-width: 767px) {
  .img-backgroun {
    height: 890px;

  }
}






/* Desktop/Tablet: horizontal timeline */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1;
  background: linear-gradient(135deg,
      rgb(106, 148, 77),
      rgb(162, 201, 120),
      rgb(72, 104, 50));
  color: white;
  /* default text color */




}

.timeline-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.timeline-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,
      rgb(106, 148, 77),
      rgb(162, 201, 120),
      rgb(72, 104, 50));
  color: white;
  /* default text color */

  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.timeline-item h3 {
  margin-top: 40px;
  font-size: 1.25rem;
}

.timeline-item p {
  margin-top: 5px;
  color: #555;
}

/* Mobile: vertical timeline with circles on the line (right side) */
@media (max-width: 767px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline::before {
    width: 4px;
    height: 100%;
    left: auto;
    right: 20px;
    /* line on the right */
    top: 0;
  }

  .timeline-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
    position: relative;
  }

  .timeline-circle {
    position: absolute;
    right: 0;
    /* circle sits directly on the line */
    top: 0;
  }

  .timeline-item-content {
    margin-right: 60px;
    /* space so text doesn’t overlap circle/line */
  }

  .timeline-item h3 {
    margin-top: 0;
  }
}


/* 4-part */

.progress {
  height: 18px;
  /* slimmer height */
  margin-bottom: 25px;
}

.progress-bar {
  background: linear-gradient(135deg,
      rgb(106, 148, 77),
      rgb(162, 201, 120),
      rgb(72, 104, 50));
  color: white;
  /* default text color */

}

.progress-header {
  display: flex;
  justify-content: space-between;
  /* left label, right number */
  margin-bottom: 5px;
  color: white;
  font-weight: bold;
}

/* 5-part */

.img-box {
  margin-bottom: 20px;
}

.img-box img {

  width: 60%;
  height: 90px;
  border-radius: 8px;
  background: linear-gradient(135deg,
      rgb(106, 148, 77),
      rgb(162, 201, 120),
      rgb(72, 104, 50));
  color: white;
  /* default text color */
  padding: 10px;

}