.private-residence-features-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.private-residence-features-area .col-xl-3.col-md-6 {
  display: flex;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 3px solid #d3d3d3;

  /* Vertical line */
}
.with-wrap-color2{
   background: #02142C !important;
}
.para{
    color:rgba(255, 255, 255, 0.7);
}

.text-white{
    color:white !important;
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.6s forwards ease-out;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(7) {
  animation-delay: 0.7s;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: #fec810;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: -11px;
  top: 0;
  transition: 0.3s;
  box-shadow: 0 0 0 4px rgba(157, 44, 30, 0.3);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  background: #fec810;
}

.timeline-content {
  padding: 15px 20px;
  border: solid 1px rgba(255, 255, 255, 0.3) ;
  box-shadow: rgba(255, 255, 255, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 8px;
  margin-left: 20px;
   box-shadow: inset 0 0 12px rgba(255,255,255,0.05);

  transition: 0.3s;
}

.timeline-content h3 {
  margin-bottom: 5px;
  font-weight: 600;
  color: #fec810;
}

.timeline-content:hover {
  transform: translateX(5px);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    padding-left: 25px;
  }
}

body {
  background-color: #000C1D;
}

.strong {
  color: #fec810;
}

.icons {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: dotted 2px rgba(255, 255, 255, 0.7);
}

.icons img {
  width: 40px;
}

.underline {
  text-decoration: underline;
}
