 :root {
     --primary-color: #6c63ff;
     --accent-color: #d3bf0b;
     --color-bg: #8da1ee;
     --text-dark: #333333;
     --text-light: #666666;
     --color-bg2: #424890;
 }


 /* :root {
  --color-primary: #6c63ff;
  --color-success: #00bf8e;
  --color-warning: #f7c94b;
  --color-danger: #f75842;
  --color-danger-variant: rgba(247, 88, 66, 0.4);
  --color-white: #fff;
  --color-light: rgba(255, 255, 255, 0.7);
  --color-black: #000;
  --color-bg: #1f2641;
  --color-bg1: #2e3267;
  --color-bg2: #424890;
  

  --container-width-lg: 80%;
  --container-width-md: 90%;
  --container-width-sm: 94%;

  --transition: all 400ms ease;

} */

 * {
     margin: 0;
     padding: 0;
     border: 0;
     outline: 0;
     text-decoration: none;
     list-style: none;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background-color: var(--color-bg);
 }

 .achievements-section {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 20px;
 }

 .section-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-header h2 {
     font-size: 2.5rem;
     color: var(--text-dark);
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .section-header .divider {
     width: 80px;
     height: 4px;
     background-color: var(--accent-color);
     margin: 0 auto 20px;
     border-radius: 2px;
 }

 /* --- NEW: CERTIFICATE SHOWCASE STYLES --- */
 .certificate-showcase {
     display: flex;
     flex-wrap: wrap;
     /* Allows stacking on mobile */
     align-items: center;
     justify-content: center;
     background-color: white;
     padding: 40px;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
     margin-bottom: 60px;
     /* Space between cert and cards */
     gap: 40px;
 }

 /* The Frame around the image */
 .cert-frame {
     flex: 1 1 400px;
     /* Width logic */
     position: relative;
     padding: 10px;
     border: 1px solid #ddd;
     background: #fff;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
     transform: rotate(-2deg);
     /* Slight artistic tilt */
     transition: transform 0.3s ease;
 }

 .cert-frame:hover {
     transform: rotate(0deg) scale(1.02);
     z-index: 2;
 }

 .cert-frame img {
     width: 100%;
     height: auto;
     display: block;
     border: 1px solid #eee;
 }

 /* The text next to the certificate */
 .cert-info {
     flex: 1 1 400px;
 }
  .cert-info h2 {
     color: var(--accent-color);
     font-size: 1.8rem;
     margin-bottom: 20px;
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }

 .cert-info h3 {
     color: var(--primary-color);
     font-size: 1.8rem;
     margin-bottom: 20px;
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }

  .cert-info p {
     color: var(--text-dark);
    font-weight: 600;
     margin-bottom: 15px;
 }
   .cert-info p strong {
     color: var(--accent-color);
    font-weight: 600;
  
 }



 .cert-info ul {
     list-style: none;
     margin-top: 20px;
 }

 .cert-info li {
     margin-bottom: 10px;
     display: flex;
        align-items: center ;
     color: var(--text-dark);
 }

 .cert-info li::before {
     content: "✔";
     color: var(--accent-color);
     margin-right: 10px;
     font-weight: bold;
 }

 /* --- PREVIOUS: AWARD CARDS STYLES --- */
 .awards-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .award-card {
     background-color: #fde7e7;
     border-radius: 12px;
     padding: 40px 25px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-align: center;
     border-top: 5px solid rgb(230, 230, 245) ;
 }

 .award-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .award-icon {
     font-size: 3rem;
     margin-bottom: 20px;
     background-color: #fff8e1;
     width: 80px;
     height: 80px;
     line-height: 80px;
     border-radius: 50%;
     margin: 0 auto 20px auto;
     color: var(--accent-color);
 }

 .award-year {
     background-color: var(--primary-color);
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: bold;
     display: inline-block;
     margin-bottom: 15px;
 }

 .award-card h3 {
     color: var(--text-dark);
     font-size: 1.4rem;
     margin-bottom: 15px;
 }

 .award-card p {
     color: var(--text-light);
     line-height: 1.6;
     font-size: 0.95rem;
 }

 /* Mobile Adjustments */
 @media (max-width: 768px) {
     .certificate-showcase {
         flex-direction: column;
         text-align: center;
     }

     .cert-info li {
         justify-content: center;
     }

     .cert-frame {
         width: 100%;
         transform: rotate(0deg);
         /* Remove tilt on mobile */
     }
 }