 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

 


    /* main card container */
    .achievement-section {
      max-width: 1300px;
      width: 100%;
      background: #ffffff;
      border-radius: 2rem;
      box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .achievement-section:hover {
      transform: translateY(-6px);
      box-shadow: 0 35px 50px -18px rgba(0, 0, 0, 0.3);
    }

    /* two column flex layout: left content + right image */
    .split-layout {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
    }

    /* LEFT CONTENT (points + awards) */
    .left-content {
      flex: 1.2;
      padding: 2.8rem 2.5rem;
      background: #fff;
      transition: all 0.2s;
    }

    /* RIGHT IMAGE area */
    .right-image {
      flex: 0.9;
      background: linear-gradient(135deg, #f8fafd, #f1f5f9);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 2rem 2rem 1rem;
      position: relative;
      overflow: hidden;
    }

    .image-wrapper {
      position: relative;
      width: 100%;
      max-width: 650px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.2);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      animation: floatSoft 3s infinite alternate ease-in-out;
    }

    .image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
      object-fit: cover;
    }

    .image-wrapper:hover img {
      transform: scale(1.04);
    }

    /* floating gentle animation for image */
    @keyframes floatSoft {
      0% {
        transform: translateY(0px);
      }
      100% {
        transform: translateY(-8px);
      }
    }

    /* Section heading with underline animation */
    .section-tag {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      background: linear-gradient(120deg, #b8860b, #daa520);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      border-left: 3px solid #daa520;
      padding-left: 12px;
    }

    h2 {
      font-size: 2.1rem;
      font-weight: 800;
      line-height: 1.2;
      color: #1a2c3e;
      margin-bottom: 1.5rem;
    }

    .highlight {
      color: #c17b2e;
      position: relative;
      display: inline-block;
    }

    .highlight::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      width: 100%;
      height: 8px;
      background: rgba(193, 123, 46, 0.25);
      border-radius: 8px;
      z-index: -1;
    }

    /* bullet list with modern icons and animations */
    .milestone-list {
      list-style: none;
      margin: 2rem 0 2rem 0;
    }

    .milestone-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding: 0.4rem 0;
      opacity: 0;
      transform: translateX(-20px);
      animation: slideFadeIn 0.5s forwards;
      border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    }

    .milestone-list li:nth-child(1) { animation-delay: 0.1s; }
    .milestone-list li:nth-child(2) { animation-delay: 0.25s; }
    .milestone-list li:nth-child(3) { animation-delay: 0.4s; }
    .milestone-list li:nth-child(4) { animation-delay: 0.55s; }
    .milestone-list li:nth-child(5) { animation-delay: 0.7s; }

    @keyframes slideFadeIn {
      0% {
        opacity: 0;
        transform: translateX(-24px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .list-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #f9e3c0, #f5d6aa);
      border-radius: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b45f1b;
      font-size: 1.1rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
      transition: all 0.2s ease;
    }

    .milestone-list li:hover .list-icon {
      background: #e2b87a;
      color: white;
      transform: scale(1.05);
    }

    .list-text {
      flex: 1;
    }

    .list-text strong {
      font-weight: 800;
      color: #1f3b4c;
      display: inline-block;
    }

    .badge-country {
      font-size: 0.75rem;
      font-weight: 600;
      background: #eef2ff;
      padding: 0.2rem 0.7rem;
      border-radius: 40px;
      margin-left: 0.5rem;
      color: #2c5282;
      display: inline-block;
      vertical-align: middle;
    }

    .award-name {
      font-weight: 700;
      color: #a4661a;
    }

    /* read more button with hover & pulse */
    .readmore-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(95deg, #1f3e48 0%, #1f3e48 40%, #2b5a68 100%);
      color: white;
      padding: 0.9rem 2.2rem;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
      text-decoration: none;
      letter-spacing: 0.3px;
      margin-top: 0.8rem;
    }

    .readmore-btn i {
      transition: transform 0.3s ease;
      font-size: 1rem;
    }

    .readmore-btn:hover {
      background: linear-gradient(95deg, #14323b, #1f4d5a);
      transform: translateY(-3px);
      box-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
      gap: 16px;
    }

    .readmore-btn:hover i {
      transform: translateX(6px);
    }

    /* micro pulse animation for button attention */
    .readmore-btn {
      animation: subtlePulse 2s infinite;
    }

    @keyframes subtlePulse {
      0% {
        box-shadow: 0 5px 15px rgba(31, 62, 72, 0.3);
      }
      50% {
        box-shadow: 0 8px 22px rgba(31, 62, 72, 0.5);
      }
      100% {
        box-shadow: 0 5px 15px rgba(31, 62, 72, 0.3);
      }
    }

    /* small decorative elements */
    .globe-icon {
      font-size: 0.9rem;
      margin-right: 5px;
    }

    /* Responsive design */
    @media (max-width: 900px) {
      .split-layout {
        flex-direction: column-reverse;
      }
      .right-image {
        padding: 2rem;
      }
      .left-content {
        padding: 2rem 1.8rem;
      }
      h2 {
        font-size: 1.8rem;
      }
      .milestone-list li {
        gap: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 1rem;
      }
      .list-text {
        font-size: 0.9rem;
      }
      .badge-country {
        display: inline-block;
        margin-left: 0;
        margin-top: 5px;
      }
      .milestone-list li {
        flex-wrap: wrap;
      }
      .list-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
      }
    }

    /* extra sparkle effect for right side */
    .right-image::before {
      content: "🏆";
      font-size: 100px;
      opacity: 0.03;
      position: absolute;
      bottom: 10px;
      right: 10px;
      pointer-events: none;
      transform: rotate(-10deg);
    }

    .right-image::after {
      content: "⭐";
      font-size: 70px;
      opacity: 0.04;
      position: absolute;
      top: 20px;
      left: 20px;
      pointer-events: none;
    }
    
    
    
      .readmore-wrapper {
  display: flex;
  justify-content: center;
}