  /* Header */
  .learn-header {
    text-align: center;
    margin-top: 80px;
  }
  .learn-header h2 {
    font-weight: 700;
  }
  .learn-header h2 span { color: #3EAAC4; }
  .learn-header p {
    color: #666;
    font-size: 0.95rem;
    max-width: 750px;
    margin: 0 auto 40px;
  }
  .learn-header img {
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
  }

  /* Timeline Section */
  .timeline-section {
    text-align: center;
    margin-top: 100px;
  }
  .timeline-section h3 {
    font-weight: 700;
    font-size: 1.6rem;
  }
  .timeline-section h3 span { color: #3EAAC4; }
  .timeline-section p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 50px;
  }

  /* Timeline Wrapper */
  .timeline-wrapper {
    position: relative;
    padding: 80px 0;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .timeline-wrapper::-webkit-scrollbar { display: none; }

  /* Central Line */
  .timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #ccc;
    top: 0;
    bottom: 0;
  }

  /* Timeline Item */
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
  }

  /* Dots */
  .timeline-dot {
    position: absolute;
    top: 40px;
    width: 45px;
    height: 45px;
    background: #eee;
    border-radius: 50%;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  /* Left & Right Layout */
  .timeline-item.left {
    left: 0;
    text-align: right;
  }
  .timeline-item.left .timeline-dot {
    right: -22.5px;
  }
  .timeline-item.right {
    left: 50%;
    text-align: left;
  }
  .timeline-item.right .timeline-dot {
    left: -22.5px;
  }

  /* Card Design */
  .timeline-content {
  position: relative;
  display: inline-block;
  background: #f2f9fa;
  border: 1px solid #3EAAC4;
  border-radius: 10px;
  padding: 25px 30px 30px;
  text-align: left;
  width: 80%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  color: #222;
}

.timeline-content h5 {
  font-weight: 700;
  color: #3EAAC4;
  margin-bottom: 15px;
}

.timeline-year {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #3EAAC4;
  color: #fff;
  border-radius: 3px;
  font-size: 0.85rem;
  padding: 4px 10px;
  font-weight: 600;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.6;
}

.timeline-content ul {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
}

.timeline-content ul li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
  position: relative;
}

.timeline-content ul li::before {
  content: "✦";
  color: #3EAAC4;
  margin-right: 8px;
}


  /* Responsive */
  @media (max-width: 768px) {
    .timeline-line {
      left: 30px;
      transform: none;
    }
    .timeline-item {
      width: 100%;
      padding-left: 70px;
      text-align: left !important;
    }
    .timeline-dot {
      left: 30px;
      transform: translateX(-50%);
    }
    .timeline-content {
      width: calc(100% - 90px);
    }
  }

  .text-primary-custom {
  color: #3EAAC4 !important;
}

/* Skill Cards */
.skill-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Tool Icons */
.tool-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tool-icon:hover {
  transform: scale(1.15);
}

.text-primary-custom {
  color: #3EAAC4 !important;
}

/* Achievement Cards */
.achievement-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* Check Icon */
.check-icon {
  background-color: #3EAAC4;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* General layout */
.blog-showcase .row {
  align-items: stretch;
}

/* Ensure right-side cards have equal height */
.blog-card {
  height: 100%;
}

/* Adjust inner padding for consistent spacing */
.blog-light p {
  line-height: 1.4;
}

/* Corner Icon alignment fix */
.corner-icon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #3EAAC4;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  border: 2px solid white; /* creates the curved corner cut */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.corner-icon:hover {
  background-color: #2f91a8;
  transform: scale(1.05);
  transition: all 0.2s ease;
}


/* Overlay Gradient */
.overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  border-radius: 0 0 16px 16px;
}

/* Blog Image uniformity */
.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Buttons */
.btn-primary-custom {
  background-color: #3EAAC4;
  border: none;
  color: white;
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 8px 18px;
  transition: 0.3s ease;
}

.btn-outline-primary-custom {
  border: 1px solid #3EAAC4;
  color: #3EAAC4;
  border-radius: 10px;
  font-size: 0.9rem;
  padding: 8px 18px;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #2f91a8;
}

.btn-outline-primary-custom:hover {
  background-color: #3EAAC4;
  color: #fff;
}

