/* Milestones Section */
.milestones-section {
    background-color: rgba(0, 43, 91, 0.3);
    padding: 80px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    color: #dff6ff;
  }
  
  .milestones-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .milestones-section h2 {
    font-size: 2.4rem;
    text-align: center;
    color: #00d4ff;
    margin-bottom: 2.5rem;
  }
  
  /* Milestone Grid Layout */
  .milestone-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* Each Milestone Box */
  .milestone-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  /* Base Circular Image Style */
  .milestone-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center; /* default */
    margin-bottom: 20px;
    box-shadow:
      0 0 12px rgba(0, 217, 255, 0.3),
      0 0 24px rgba(0, 217, 255, 0.2);
    transition: transform 0.3s ease, object-position 0.3s ease;
  }
  .milestone-photo:hover {
    transform: scale(1.05);
  }
  
  /* Individual image adjustments */
  .milestone-photo.summit-img {
    object-position: 50% 70%;
  }
  .milestone-photo.showcase-img {
    object-position: 50% 60%;
  }
  .milestone-photo.bbb-img {
    object-position: 50% 100%;
  }
  
  /* Milestone Title */
  .milestone-item h3 {
    font-size: 1.4rem;
    color: #00d4ff;
    margin-bottom: 10px;
  }
  
  /* Milestone Description */
  .milestone-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbe9ff;
  }
  
  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .milestones-section {
      padding: 50px 15px;
      margin-bottom: 30px;
    }
    .milestones-section h2 {
      font-size: 2rem;
    }
    .milestone-grid {
      flex-direction: column;
      align-items: center;
    }
    .milestone-item {
      max-width: 600px;
    }
    .milestone-photo {
      width: 160px;
      height: 160px;
    }
    .milestone-photo.summit-img {
      object-position: 50% 70%;
    }
    .milestone-photo.showcase-img {
      object-position: 50% 60%;
    }
    .milestone-photo.bbb-img {
      object-position: 50% 20%;
    }
    .milestone-item h3 {
      font-size: 1.2rem;
    }
    .milestone-item p {
      font-size: 0.95rem;
    }
  }
  