.timer{
     font-family: Arial, sans-serif;
      background: #eaf3f8;
      margin: 0;
      padding: 50px;
}

.timeline {
      position: relative;
      max-width: 900px;
      margin: auto;
    }

    /* Vertical line */
    .timeline::after {
      content: '';
      position: absolute;
      width: 2px;
      background-color: #004aad;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -1px;
    }

    /* Timeline container */
    .timeline-container {
      padding: 20px 30px;
      position: relative;
      width: 50%;
    }

    /* Left side */
    .timeline-container.left {
      left: 0;
      text-align: right;
    }

    /* Right side */
    .timeline-container.right {
      left: 50%;
    }

    /* Content box */
    .home-content {
      background: #fdfdfd;
      padding: 20px;
      border-radius: 8px;
      position: relative;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* Circle icon in center */
    .timeline-container::before {
      content: "🚦";
      position: absolute;
      top: 20px;
      right: -17px;
      background: #fff;
      border: 2px solid #004aad;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #004aad;
      z-index: 1;
    }

    .timeline-container.right::before {
      left: -17px;
      right: auto;
    }

    .date {
      color: #2196f3;
      font-weight: bold;
      font-size: 14px;
    }

    .title {
      font-size: 18px;
      font-weight: bold;
      margin: 5px 0;
      color: #002b45;
    }

    .desc {
      font-size: 14px;
      color: #333;
      line-height: 1.5;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .timeline::after {
        left: 20px;
      }

      .timeline-container {
        width: 100%;
        padding-left: 50px;
        padding-right: 25px;
      }

      .timeline-container.left, .timeline-container.right {
        left: 0;
        text-align: left;
      }

      .timeline-container::before {
        left: 0px;
        right: auto;
      }
    }


    /* ##########################################################HOME PAGE HERoe */
    .hero-area2 {
  position: relative;
  width: 100%;
  min-height: 75vh; /* fullscreen */
  max-height: 75vh; /* fullscreen */
  display: flex;
  align-items: center;
}

.hero-bg {
  position: relative;
  width: 100%;
  min-height: 75vh;
  max-height: 75vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-caption {
  max-width: 600px;
  color: #fff;
}

.hero-title {
  font-size: 3.0rem;
  /* font-weight: bold; */
  color: #ff6600; /* orange */
}

.hero-subtitle {
  /* font-size: 1.5rem; */
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #000; /* black text */
}

.hero-text {
  font-size: 2.0rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff; /* white paragraph */
}
/*
.btn-main {
  background: #ff6600;
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 20px;
  transition: 0.3s;
  font-weight: bold;
  border: none;
} */

.btn-main:hover {
  background: #e65500;
}
.text-left{
    text-align: left;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.check-list li::before {
  content: "✔"; /* The checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #e65500; /* Green check color */
  font-weight: bold;
}
.logo-one{
    width: 25%;
}

